/qemu/scripts/coccinelle/ |
H A D | round.cocci | 3 expression e1; 7 - ((e1) + e2 - 1) / (e2) 8 + DIV_ROUND_UP(e1,e2) 10 - ((e1) + (e2 - 1)) / (e2) 11 + DIV_ROUND_UP(e1,e2) 15 expression e1; 18 -(DIV_ROUND_UP(e1,e2)) 19 +DIV_ROUND_UP(e1,e2)
|
/qemu/target/i386/tcg/ |
H A D | seg_helper.c | 178 static inline unsigned int get_seg_limit(uint32_t e1, uint32_t e2) in get_seg_limit() argument 182 limit = (e1 & 0xffff) | (e2 & 0x000f0000); in get_seg_limit() 189 static inline uint32_t get_seg_base(uint32_t e1, uint32_t e2) in get_seg_base() argument 191 return (e1 >> 16) | ((e2 & 0xff) << 16) | (e2 & 0xff000000); in get_seg_base() 194 static inline void load_seg_cache_raw_dt(SegmentCache *sc, uint32_t e1, in load_seg_cache_raw_dt() argument 197 sc->base = get_seg_base(e1, e2); in load_seg_cache_raw_dt() 198 sc->limit = get_seg_limit(e1, e2); in load_seg_cache_raw_dt() 257 uint32_t e1, e2; in tss_load_seg() local 261 if (load_segment_ra(env, &e1, &e2, selector, retaddr) != 0) { in tss_load_seg() 300 get_seg_base(e1, e2), in tss_load_seg() [all …]
|
/qemu/bsd-user/i386/ |
H A D | target_arch_cpu.c | 38 unsigned int e1, e2; in bsd_i386_write_dt() local 40 e1 = (addr << 16) | (limit & 0xffff); in bsd_i386_write_dt() 44 p[0] = tswap32(e1); in bsd_i386_write_dt() 52 uint32_t *p, e1, e2; in set_gate() local 53 e1 = (addr & 0xffff) | (sel << 16); in set_gate() 56 p[0] = tswap32(e1); in set_gate()
|
/qemu/bsd-user/x86_64/ |
H A D | target_arch_cpu.c | 38 unsigned int e1, e2; in bsd_x86_64_write_dt() local 40 e1 = (addr << 16) | (limit & 0xffff); in bsd_x86_64_write_dt() 44 p[0] = tswap32(e1); in bsd_x86_64_write_dt() 51 uint32_t *p, e1, e2; in set_gate64() local 52 e1 = (addr & 0xffff) | (sel << 16); in set_gate64() 55 p[0] = tswap32(e1); in set_gate64()
|
/qemu/target/s390x/tcg/ |
H A D | vec_string_helper.c | 83 uint64_t a0, a1, b0, b1, e0, e1, t0, t1, z0, z1; in vfae() local 93 e1 = 0; in vfae() 100 e1 |= zero_search(a1 ^ t0, mask); in vfae() 101 e1 |= zero_search(a1 ^ t1, mask); in vfae() 106 e1 = ~e1 & ~mask; in vfae() 108 first_equal = match_index(e0, e1); in vfae() 118 e1 = (e1 >> (bits - 1)) * get_single_element_mask(es); in vfae() 120 s390_vec_write_element64(v1, 1, e1); in vfae() 167 uint64_t a0, a1, b0, b1, e0, e1, z0, z1; in vfee() local 176 e1 = zero_search(a1 ^ b1, mask); in vfee() [all …]
|
H A D | vec_int_helper.c | 528 uint32_t sh, e0, e1 = 0; in HELPER() local 531 for (i = 15; i >= 0; --i, e1 = e0) { in HELPER() 535 s390_vec_write_element8(&tmp, i, rol32(e0 | (e1 << 24), sh)); in HELPER() 551 uint32_t sh, e0, e1 = 0; in HELPER() local 559 e1 = e0; in HELPER() 560 for (i = 1; i < 16; ++i, e1 = e0) { in HELPER() 563 s390_vec_write_element8(&tmp, i, (e0 | e1 << 8) >> sh); in HELPER() 579 uint32_t sh, e0, e1 = 0; in HELPER() local 581 for (int i = 0; i < 16; ++i, e1 = e0) { in HELPER() 585 s390_vec_write_element8(&tmp, i, (e0 | (e1 << 8)) >> sh); in HELPER()
|
H A D | insn-data.h.inc | 35 F(0xb30a, AEBR, RRE, Z, e1, e2, new, e1, aeb, f32, IF_BFP) 38 F(0xed0a, AEB, RXE, Z, e1, m2_32u, new, e1, aeb, f32, IF_BFP) 173 F(0xb309, CEBR, RRE, Z, e1, e2, 0, 0, ceb, 0, IF_BFP) 176 F(0xed09, CEB, RXE, Z, e1, m2_32u, 0, 0, ceb, 0, IF_BFP) 179 F(0xb308, KEBR, RRE, Z, e1, e2, 0, 0, keb, 0, IF_BFP) 182 F(0xed08, KEB, RXE, Z, e1, m2_32u, 0, 0, keb, 0, IF_BFP) 312 F(0xb394, CEFBR, RRF_e, Z, 0, r2_32s, new, e1, cegb, 0, IF_BFP) 315 F(0xb3a4, CEGBR, RRF_e, Z, 0, r2_o, new, e1, cegb, 0, IF_BFP) 326 F(0xb390, CELFBR, RRF_e, FPE, 0, r2_32u, new, e1, celgb, 0, IF_BFP) 329 F(0xb3a0, CELGBR, RRF_e, FPE, 0, r2_o, new, e1, celgb, 0, IF_BFP) [all …]
|
/qemu/linux-user/i386/ |
H A D | cpu_loop.c | 39 unsigned int e1, e2; in write_dt() local 41 e1 = (addr << 16) | (limit & 0xffff); in write_dt() 45 p[0] = tswap32(e1); in write_dt() 54 uint32_t *p, e1, e2; in set_gate64() local 55 e1 = (addr & 0xffff) | (sel << 16); in set_gate64() 58 p[0] = tswap32(e1); in set_gate64() 74 uint32_t *p, e1, e2; in set_gate() local 75 e1 = (addr & 0xffff) | (sel << 16); in set_gate() 78 p[0] = tswap32(e1); in set_gate()
|
/qemu/include/hw/xen/interface/ |
H A D | xen.h | 981 #define XEN_DEFINE_UUID_(a, b, c, d, e1, e2, e3, e4, e5, e6) \ argument 987 e1, e2, e3, e4, e5, e6}} 990 #define XEN_DEFINE_UUID(a, b, c, d, e1, e2, e3, e4, e5, e6) \ argument 991 ((xen_uuid_t)XEN_DEFINE_UUID_(a, b, c, d, e1, e2, e3, e4, e5, e6)) 993 #define XEN_DEFINE_UUID(a, b, c, d, e1, e2, e3, e4, e5, e6) \ argument 994 XEN_DEFINE_UUID_(a, b, c, d, e1, e2, e3, e4, e5, e6)
|
/qemu/target/arm/tcg/ |
H A D | vec_helper.c | 244 uint16_t e1 = do_sqrdmlah_h(src1, src2, src3, false, true, sat); in HELPER() local 247 return deposit32(e1, 16, 16, e2); in HELPER() 269 uint16_t e1 = do_sqrdmlah_h(src1, src2, src3, true, true, sat); in HELPER() local 272 return deposit32(e1, 16, 16, e2); in HELPER() 888 float16 e1 = m[H2(i + 1)]; local 895 e1 = float16_maybe_ah_chs(e1, fpcr_ah); 898 d[H2(i)] = float16_add(e0, e1, fpst); 917 float32 e1 = m[H4(i + 1)]; in HELPER() local 924 e1 = float32_maybe_ah_chs(e1, fpcr_ah); in HELPER() 927 d[H4(i)] = float32_add(e0, e1, fpst); in HELPER() [all …]
|
H A D | vec_internal.h | 239 float32 bfdotadd(float32 sum, uint32_t e1, uint32_t e2, float_status *fpst); 254 float32 bfdotadd_ebf(float32 sum, uint32_t e1, uint32_t e2,
|
H A D | sve_helper.c | 1273 uint32_t e1 = a[2 * i + H4(0)]; local 1277 d[i] = c + e1 + e2; 1289 Int128 e1 = int128_make64(a[i]); in HELPER() local 1292 Int128 r = int128_add(int128_add(e1, e2), c); in HELPER() 4831 float16 e1, e2, e3, r; in DO_ZPZ_FP() local 4833 e1 = *(uint16_t *)(vn + H1_2(i)) ^ neg1; in DO_ZPZ_FP() 4836 r = float16_muladd(e1, e2, e3, flags, status); in DO_ZPZ_FP() 4900 float32 e1, e2, e3, r; in do_fmla_zpzzz_s() local 4902 e1 = *(uint32_t *)(vn + H1_4(i)) ^ neg1; in do_fmla_zpzzz_s() 4905 r = float32_muladd(e1, e2, e3, flags, status); in do_fmla_zpzzz_s() [all …]
|
H A D | sme_helper.c | 994 static float32 f16_dotadd(float32 sum, uint32_t e1, uint32_t e2, in f16_dotadd() argument 1008 float64 e1r = float16_to_float64(e1 & 0xffff, true, s_f16); in f16_dotadd() 1009 float64 e1c = float16_to_float64(e1 >> 16, true, s_f16); in f16_dotadd()
|
H A D | mve_helper.c | 2953 TYPE r0, r1, e1, e2, e3, e4; \ 2975 e1 = m[H##ESIZE(e)]; \ 2981 e1 = TYPE##_chs(m[H##ESIZE(e + 1)]); \ 2987 e1 = TYPE##_chs(m[H##ESIZE(e)]); \ 2993 e1 = m[H##ESIZE(e + 1)]; \ 3001 r0 = FN(e2, e1, d[H##ESIZE(e)], fpst0); \
|
/qemu/target/i386/ |
H A D | helper.c | 571 uint32_t e1, e2; in cpu_x86_get_descr_debug() local 581 || cpu_memory_rw_debug(cs, ptr, (uint8_t *)&e1, sizeof(e1), 0) != 0 in cpu_x86_get_descr_debug() 585 *base = ((e1 >> 16) | ((e2 & 0xff) << 16) | (e2 & 0xff000000)); in cpu_x86_get_descr_debug() 586 *limit = (e1 & 0xffff) | (e2 & 0x000f0000); in cpu_x86_get_descr_debug()
|
/qemu/tests/qemu-iotests/tests/ |
H A D | migrate-bitmaps-postcopy-test | 63 def event_dist(e1, e2): argument 64 return event_seconds(e2) - event_seconds(e1)
|
/qemu/target/i386/kvm/ |
H A D | tdx.c | 550 struct kvm_cpuid_entry2 *e, *e1; in tdx_add_supported_cpuid_by_fixed1_bits() local 556 e1 = find_in_supported_entry(e->function, e->index); in tdx_add_supported_cpuid_by_fixed1_bits() 557 e1->eax |= e->eax; in tdx_add_supported_cpuid_by_fixed1_bits() 558 e1->ebx |= e->ebx; in tdx_add_supported_cpuid_by_fixed1_bits() 559 e1->ecx |= e->ecx; in tdx_add_supported_cpuid_by_fixed1_bits() 560 e1->edx |= e->edx; in tdx_add_supported_cpuid_by_fixed1_bits()
|
/qemu/hw/9pfs/ |
H A D | 9p.c | 776 const QpdEntry *e1 = obj, *e2 = userp; in qpd_cmp_func() local 777 return e1->dev == e2->dev; in qpd_cmp_func() 782 const QppEntry *e1 = obj, *e2 = userp; in qpp_cmp_func() local 783 return e1->dev == e2->dev && e1->ino_prefix == e2->ino_prefix; in qpp_cmp_func() 788 const QpfEntry *e1 = obj, *e2 = userp; in qpf_cmp_func() local 789 return e1->dev == e2->dev && e1->ino == e2->ino; in qpf_cmp_func()
|
/qemu/docs/interop/ |
H A D | prl-xml.rst | 188 ``BackupID = {704718e1-2314-44c8-9087-d78ed36b0f4e}``, which is used by
|
/qemu/target/xtensa/ |
H A D | xtensa-isa.c | 370 xtensa_lookup_entry *e1 = (xtensa_lookup_entry *)v1; in xtensa_isa_name_compare() local 373 return strcasecmp(e1->key, e2->key); in xtensa_isa_name_compare()
|
/qemu/tests/data/qobject/ |
H A D | qdict.txt | 1931 bnx2x-e1-4.8.53.0.fw.ihex: 455912
|