Home
last modified time | relevance | path

Searched refs:e2 (Results 1 – 25 of 44) sorted by relevance

12

/openbmc/qemu/scripts/coccinelle/
H A Dround.cocci4 expression e2;
7 - ((e1) + e2 - 1) / (e2)
8 + DIV_ROUND_UP(e1,e2)
10 - ((e1) + (e2 - 1)) / (e2)
11 + DIV_ROUND_UP(e1,e2)
16 expression e2;
18 -(DIV_ROUND_UP(e1,e2))
19 +DIV_ROUND_UP(e1,e2)
/openbmc/qemu/target/i386/tcg/
H A Dseg_helper.c178 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()
183 if (e2 & DESC_G_MASK) { 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()
195 uint32_t e2) 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()
199 sc->flags = e2; in load_seg_cache_raw_dt()
257 uint32_t e1, e2; in tss_load_seg() local
[all …]
/openbmc/u-boot/scripts/kconfig/
H A Dexpr.c14 static int expr_eq(struct expr *e1, struct expr *e2);
33 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument
38 e->right.expr = e2; in expr_alloc_two()
51 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument
54 return e2; in expr_alloc_and()
55 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and()
58 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() argument
61 return e2; in expr_alloc_or()
62 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or()
139 #define e2 (*ep2) macro
[all …]
H A Dexpr.h294 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
296 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
297 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
/openbmc/qemu/bsd-user/i386/
H A Dtarget_arch_cpu.c38 unsigned int e1, e2; in bsd_i386_write_dt() local
41 e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000); in bsd_i386_write_dt()
42 e2 |= flags; in bsd_i386_write_dt()
45 p[1] = tswap32(e2); in bsd_i386_write_dt()
52 uint32_t *p, e1, e2; in set_gate() local
54 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8); in set_gate()
57 p[1] = tswap32(e2); in set_gate()
/openbmc/qemu/bsd-user/x86_64/
H A Dtarget_arch_cpu.c38 unsigned int e1, e2; in bsd_x86_64_write_dt() local
41 e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000); in bsd_x86_64_write_dt()
42 e2 |= flags; in bsd_x86_64_write_dt()
45 p[1] = tswap32(e2); in bsd_x86_64_write_dt()
51 uint32_t *p, e1, e2; in set_gate64() local
53 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8); in set_gate64()
56 p[1] = tswap32(e2); in set_gate64()
/openbmc/phosphor-logging/test/openpower-pels/
H A Dstream_test.cpp64 uint16_t e2; in TEST() local
69 stream >> e3 >> e2 >> e4 >> e1; in TEST()
72 EXPECT_EQ(v2, e2); in TEST()
98 uint64_t e2; in TEST() local
100 stream >> e2; in TEST()
102 EXPECT_EQ(v2, e2); in TEST()
/openbmc/u-boot/drivers/mtd/ubi/
H A Dwl.c678 struct ubi_wl_entry *e1, *e2; local
720 e2 = get_peb_for_wl(ubi);
721 if (!e2)
726 dbg_wl("anchor-move PEB %d to PEB %d", e1->pnum, e2->pnum);
737 e2 = get_peb_for_wl(ubi);
738 if (!e2)
741 if (!(e2->ec - e1->ec >= UBI_WL_THRESHOLD)) {
743 e1->ec, e2->ec);
746 wl_tree_add(e2, &ubi->free);
753 e1->pnum, e1->ec, e2->pnum, e2->ec);
[all …]
/openbmc/qemu/linux-user/i386/
H A Dcpu_loop.c39 unsigned int e1, e2; in write_dt() local
42 e2 = ((addr >> 16) & 0xff) | (addr & 0xff000000) | (limit & 0x000f0000); in write_dt()
43 e2 |= flags; in write_dt()
46 p[1] = tswap32(e2); in write_dt()
54 uint32_t *p, e1, e2; in set_gate64() local
56 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8); in set_gate64()
59 p[1] = tswap32(e2); in set_gate64()
74 uint32_t *p, e1, e2; in set_gate() local
76 e2 = (addr & 0xffff0000) | 0x8000 | (dpl << 13) | (type << 8); in set_gate()
79 p[1] = tswap32(e2); in set_gate()
/openbmc/qemu/target/i386/tcg/user/
H A Dseg_helper.c51 uint32_t e2; in do_interrupt_user() local
60 e2 = cpu_ldl_kernel(env, ptr + 4); in do_interrupt_user()
62 dpl = (e2 >> DESC_DPL_SHIFT) & 3; in do_interrupt_user()
/openbmc/qemu/include/hw/xen/interface/
H A Dxen.h981 #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)
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-connectivity/wvdial/wvdial/
H A Dmusl-support.patch14 static int filesort(const dirent **e1, const dirent **e2)
21 - dirent const * const *e2 = (dirent const * const *)_e2;
/openbmc/u-boot/tools/buildman/
H A Dkconfiglib.py1470 def _eval_min(self, e1, e2): argument
1474 e2_eval = self._eval_expr(e2)
1477 def _eval_max(self, e1, e2): argument
1481 e2_eval = self._eval_expr(e2)
3246 def _make_and(e1, e2): argument
3252 return e2
3253 if e2 is None or e2 == "y":
3259 if isinstance(e2, tuple) and e2[0] == AND:
3260 return (AND, e1[1] + e2[1])
3261 return (AND, e1[1] + [e2])
[all …]
/openbmc/u-boot/board/varisys/common/
H A Dsys_eeprom.c219 struct eeprom e2; in prog_eeprom() local
222 eeprom_addr_len, (void *)&e2, sizeof(e2)); in prog_eeprom()
223 if (!ret && memcmp(&e, &e2, sizeof(e))) in prog_eeprom()
/openbmc/qemu/target/i386/
H A Dhelper.c571 uint32_t e1, e2; in cpu_x86_get_descr_debug() local
582 || cpu_memory_rw_debug(cs, ptr+4, (uint8_t *)&e2, sizeof(e2), 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()
587 if (e2 & DESC_G_MASK) in cpu_x86_get_descr_debug()
589 *flags = e2; in cpu_x86_get_descr_debug()
/openbmc/u-boot/board/freescale/common/
H A Dsys_eeprom.c233 struct eeprom e2; in prog_eeprom() local
236 CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (void *)&e2, sizeof(e2)); in prog_eeprom()
237 if (!ret && memcmp(&e, &e2, sizeof(e))) in prog_eeprom()
/openbmc/openbmc/meta-openembedded/meta-perl/recipes-perl/liburi/liburi-perl/
H A D0001-Skip-TODO-test-cases-that-fail.patch67 -is(URI->new("http://xn--99zt52a.example.org/%e2%80%ae")->as_iri, "http://\x{7D0D}\x{8C46}.example.…
71 …#is(URI->new("http://xn--99zt52a.example.org/%e2%80%ae")->as_iri, "http://\x{7D0D}\x{8C46}.example…
/openbmc/u-boot/drivers/ddr/marvell/a38x/
H A Dddr3_training_ip_engine.c13 #define VALIDATE_TRAINING_LIMIT(e1, e2) \ argument
14 ((((e2) - (e1) + 1) > 33) && ((e1) < 67))
1108 u8 e1, e2; in ddr3_tip_ip_training_wrapper() local
1190 e2 = GET_TAP_RESULT(result[HWS_HIGH2LOW][0], EDGE_1); in ddr3_tip_ip_training_wrapper()
1195 result[HWS_HIGH2LOW][0], e2)); in ddr3_tip_ip_training_wrapper()
1204 } else if ((e2 - e1) > 32) { /* oper_write */ in ddr3_tip_ip_training_wrapper()
1218 if (e1 <= 31 && e2 <= 31) { in ddr3_tip_ip_training_wrapper()
1223 h2l_adll_value[sybphy_id][bit_id] = e2; in ddr3_tip_ip_training_wrapper()
1230 if (e1 >= 32 && e2 >= 32) { in ddr3_tip_ip_training_wrapper()
1235 h2l_adll_value[sybphy_id][bit_id] = e2; in ddr3_tip_ip_training_wrapper()
[all …]
H A Dddr3_training_centralization.c9 #define VALIDATE_WIN_LENGTH(e1, e2, maxsize) \ argument
10 (((e2) + 1 > (e1) + (u8)MIN_WINDOW_SIZE) && \
11 ((e2) + 1 < (e1) + (u8)maxsize))
12 #define IS_WINDOW_OUT_BOUNDARY(e1, e2, maxsize) \ argument
13 (((e1) == 0 && (e2) != 0) || \
14 ((e1) != (maxsize - 1) && (e2) == (maxsize - 1)))
/openbmc/openbmc/poky/meta/recipes-devtools/python/python3-unittest-automake-output/
H A D0001-Update-__version__-to-match-the-tag-version.patch19 index e8758de..00265e2 100644
/openbmc/qemu/target/arm/tcg/
H A Dvec_helper.c245 uint16_t e2 = do_sqrdmlah_h(src1 >> 16, src2 >> 16, src3 >> 16, in HELPER() local
247 return deposit32(e1, 16, 16, e2); in HELPER()
270 uint16_t e2 = do_sqrdmlah_h(src1 >> 16, src2 >> 16, src3 >> 16, in HELPER() local
272 return deposit32(e1, 16, 16, e2); in HELPER()
940 float16 e2 = n[H2(i + 1)]; local
950 d[H2(i + 1)] = float16_add(e2, e3, fpst);
969 float32 e2 = n[H4(i + 1)]; in HELPER() local
979 d[H4(i + 1)] = float32_add(e2, e3, fpst); in HELPER()
998 float64 e2 = n[i + 1]; in HELPER() local
1008 d[i + 1] = float64_add(e2, e3, fpst); in HELPER()
[all …]
H A Dvec_internal.h267 float32 bfdotadd(float32 sum, uint32_t e1, uint32_t e2, float_status *fpst);
282 float32 bfdotadd_ebf(float32 sum, uint32_t e1, uint32_t e2,
/openbmc/qemu/tests/qemu-iotests/tests/
H A Dmigrate-bitmaps-postcopy-test63 def event_dist(e1, e2): argument
64 return event_seconds(e2) - event_seconds(e1)
/openbmc/qemu/target/s390x/tcg/
H A Dinsn-data.h.inc35 F(0xb30a, AEBR, RRE, Z, e1, e2, new, e1, aeb, f32, IF_BFP)
173 F(0xb309, CEBR, RRE, Z, e1, e2, 0, 0, ceb, 0, IF_BFP)
179 F(0xb308, KEBR, RRE, Z, e1, e2, 0, 0, keb, 0, IF_BFP)
305 F(0xb398, CFEBR, RRF_e, Z, 0, e2, new, r1_32, cfeb, 0, IF_BFP)
308 F(0xb3a8, CGEBR, RRF_e, Z, 0, e2, r1, 0, cgeb, 0, IF_BFP)
319 F(0xb39c, CLFEBR, RRF_e, FPE, 0, e2, new, r1_32, clfeb, 0, IF_BFP)
322 F(0xb3ac, CLGEBR, RRF_e, FPE, 0, e2, r1, 0, clgeb, 0, IF_BFP)
349 F(0xb30d, DEBR, RRE, Z, e1, e2, new, e1, deb, 0, IF_BFP)
427 F(0x3800, LER, RR_a, Z, 0, e2, 0, cond_e1e2, mov2, 0, IF_AFP1 | IF_AFP2)
467 F(0xb302, LTEBR, RRE, Z, 0, e2, 0, cond_e1e2, mov2, f32, IF_BFP)
[all …]
/openbmc/openbmc/meta-arm/meta-arm/recipes-security/optee/optee-os/
H A D0003-link.mk-generate-version.o-in-link-out-dir.patch47 index 1fff0a379..6511586e2 100644

12