/openbmc/linux/arch/alpha/lib/ |
H A D | csum_ipv6_magic.S | 25 zapnot $20,15,$20 # .. e1 : zero extend incoming csum 27 ldq_u $21,7($16) # .. e1 : handle misalignment 30 ldq_u $1,8($16) # .. e1 : 32 ldq_u $22,15($16) # .. e1 : 35 ldq_u $2,0($17) # .. e1 : 37 ldq_u $23,7($17) # .. e1 : 40 ldq_u $3,8($17) # .. e1 : 42 ldq_u $24,15($17) # .. e1 : 45 or $0,$21,$0 # .. e1 : 1st src word complete 47 addq $20,$0,$20 # .. e1 : begin summing the words [all …]
|
H A D | stxncpy.S | 55 lda t2, -1 # e1 : build a mask against false zero 58 ornot t1, t2, t2 # .. e1 : 60 cmpbge zero, t2, t8 # .. e1 : bits set iff null found 62 beq a2, $a_eoc # .. e1 : 63 bne t8, $a_eos # .. e1 : 70 addq a0, 8, a0 # .. e1 : 72 addq a1, 8, a1 # .. e1 : 74 cmpbge zero, t0, t8 # .. e1 (stall) 75 beq a2, $a_eoc # e1 : 76 beq t8, $a_loop # e1 : [all …]
|
H A D | clear_user.S | 34 beq $4, 1f # .. e1 : 37 subq $0, 8, $0 # .. e1 : 39 addq $16, 8, $16 # .. e1 : 40 bne $4, 0b # e1 : 44 beq $1, $tail # .. e1 : 47 subq $0, 8, $0 # .. e1 : 49 subq $0, 8, $0 # .. e1 : 51 subq $0, 8, $0 # .. e1 : 53 subq $0, 8, $0 # .. e1 : 55 addq $16, 32, $16 # .. e1 : [all …]
|
H A D | memchr.S | 51 beq $18, $not_found # .. e1 : 52 ldq_u $1, 0($16) # e1 : load first quadword 55 cmpult $18, 9, $4 # .. e1 : 57 lda $3, -1($31) # .. e1 : 59 addq $16, $5, $5 # .. e1 : 60 or $2, $17, $17 # e1 : $17 = 00000000chchchch 63 or $2, $17, $17 # e1 : $17 = chchchchchchchch 65 beq $4, $first_quad # .. e1 : 67 ldq_u $6, -1($5) #-e1 : eight or less bytes to search 70 or $7, $6, $1 # .. e1 : $1 = quadword starting at $16 [all …]
|
H A D | stxcpy.S | 47 lda t2, -1 # e1 : build a mask against false zero 50 ornot t1, t2, t2 # .. e1 : 52 cmpbge zero, t2, t8 # .. e1 : bits set iff null found 54 bne t8, $a_eos # .. e1 : 62 addq a0, 8, a0 # .. e1 : 64 addq a1, 8, a1 # .. e1 : 66 beq t8, $a_loop # .. e1 (zdb) 74 and t8, t6, t12 # e1 (stall) 79 bne t6, 1f # .. e1 (zdb) 84 subq t12, 1, t6 # .. e1 : [all …]
|
H A D | strrchr.S | 23 mov zero, t6 # .. e1 : t6 is last match aligned addr 25 mov zero, t8 # .. e1 : t8 is last match byte compare mask 27 ldq_u t0, 0(a0) # .. e1 : load first quadword 29 andnot a0, 7, v0 # .. e1 : align source addr 31 lda t4, -1 # .. e1 : build garbage mask 33 cmpbge zero, t0, t1 # .. e1 : bits set iff byte == zero 35 or t5, a1, a1 # .. e1 : character replication complete 37 cmpbge zero, t4, t4 # .. e1 : bits set iff byte is garbage 39 andnot t1, t4, t1 # .. e1 : clear garbage from null test 41 bne t1, $eos # .. e1 : did we already hit the terminator? [all …]
|
H A D | strchr.S | 23 ldq_u t0, 0(a0) # .. e1 : load first quadword 25 andnot a0, 7, v0 # .. e1 : align our loop pointer 27 lda t4, -1 # .. e1 : build garbage mask 29 cmpbge zero, t0, t2 # .. e1 : bits set iff byte == zero 31 or t5, a1, a1 # .. e1 : 33 cmpbge zero, t4, t4 # .. e1 : bits set iff byte is garbage 35 xor t0, a1, t1 # .. e1 : make bytes == c zero 37 or t2, t3, t0 # e1 : bits set iff char match or zero match 39 bne t0, $found # .. e1 (zdb) 42 addq v0, 8, v0 # .. e1 : [all …]
|
/openbmc/linux/scripts/kconfig/ |
H A D | expr.c | 34 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument 38 e->left.expr = e1; in expr_alloc_two() 52 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument 54 if (!e1) in expr_alloc_and() 56 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and() 59 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() argument 61 if (!e1) in expr_alloc_or() 63 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or() 139 #define e1 (*ep1) macro 154 if (e1->type == type) { in __expr_eliminate_eq() [all …]
|
/openbmc/u-boot/scripts/kconfig/ |
H A D | expr.c | 14 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 37 e->left.expr = e1; in expr_alloc_two() 51 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument 53 if (!e1) 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 60 if (!e1) in expr_alloc_or() 62 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or() 138 #define e1 (*ep1) macro [all …]
|
/openbmc/linux/arch/mips/bcm47xx/ |
H A D | board.c | 241 const struct bcm47xx_board_type_list1 *e1; in bcm47xx_board_get_nvram() local 246 for (e1 = bcm47xx_board_list_model_name; e1->value1; e1++) { in bcm47xx_board_get_nvram() 247 if (!strcmp(buf1, e1->value1)) in bcm47xx_board_get_nvram() 248 return &e1->board; in bcm47xx_board_get_nvram() 253 for (e1 = bcm47xx_board_list_hardware_version; e1->value1; e1++) { in bcm47xx_board_get_nvram() 254 if (strstarts(buf1, e1->value1)) in bcm47xx_board_get_nvram() 255 return &e1->board; in bcm47xx_board_get_nvram() 269 for (e1 = bcm47xx_board_list_productid; e1->value1; e1++) { in bcm47xx_board_get_nvram() 270 if (!strcmp(buf1, e1->value1)) in bcm47xx_board_get_nvram() 271 return &e1->board; in bcm47xx_board_get_nvram() [all …]
|
/openbmc/linux/tools/testing/selftests/kvm/x86_64/ |
H A D | cpuid_test.c | 75 const struct kvm_cpuid_entry2 *e1, *e2; in compare_cpuids() local 82 e1 = &cpuid1->entries[i]; in compare_cpuids() 85 TEST_ASSERT(e1->function == e2->function && in compare_cpuids() 86 e1->index == e2->index && e1->flags == e2->flags, in compare_cpuids() 88 i, e1->function, e1->index, e1->flags, in compare_cpuids() 91 if (is_cpuid_mangled(e1)) in compare_cpuids() 94 TEST_ASSERT(e1->eax == e2->eax && e1->ebx == e2->ebx && in compare_cpuids() 95 e1->ecx == e2->ecx && e1->edx == e2->edx, in compare_cpuids() 97 e1->function, e1->index, in compare_cpuids() 98 e1->eax, e1->ebx, e1->ecx, e1->edx, in compare_cpuids()
|
/openbmc/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)
|
/openbmc/linux/tools/perf/tests/ |
H A D | pmu-events.c | 285 static int compare_pmu_events(const struct pmu_event *e1, const struct pmu_event *e2) in compare_pmu_events() argument 287 if (!is_same(e1->name, e2->name)) { in compare_pmu_events() 289 e1->name, e1->name, e2->name); in compare_pmu_events() 293 if (!is_same(e1->compat, e2->compat)) { in compare_pmu_events() 295 e1->name, e1->compat, e2->compat); in compare_pmu_events() 299 if (!is_same(e1->event, e2->event)) { in compare_pmu_events() 301 e1->name, e1->event, e2->event); in compare_pmu_events() 305 if (!is_same(e1->desc, e2->desc)) { in compare_pmu_events() 307 e1->name, e1->desc, e2->desc); in compare_pmu_events() 311 if (!is_same(e1->topic, e2->topic)) { in compare_pmu_events() [all …]
|
/openbmc/u-boot/drivers/mtd/ubi/ |
H A D | wl.c | 150 struct ubi_wl_entry *e1; in wl_tree_add() local 153 e1 = rb_entry(parent, struct ubi_wl_entry, u.rb); in wl_tree_add() 155 if (e->ec < e1->ec) in wl_tree_add() 157 else if (e->ec > e1->ec) in wl_tree_add() 160 ubi_assert(e->pnum != e1->pnum); in wl_tree_add() 161 if (e->pnum < e1->pnum) in wl_tree_add() 247 struct ubi_wl_entry *e1; in in_wl_tree() local 249 e1 = rb_entry(p, struct ubi_wl_entry, u.rb); in in_wl_tree() 251 if (e->pnum == e1->pnum) { in in_wl_tree() 252 ubi_assert(e == e1); in in_wl_tree() [all …]
|
/openbmc/linux/drivers/mtd/ubi/ |
H A D | wl.c | 145 struct ubi_wl_entry *e1; in wl_tree_add() local 148 e1 = rb_entry(parent, struct ubi_wl_entry, u.rb); in wl_tree_add() 150 if (e->ec < e1->ec) in wl_tree_add() 152 else if (e->ec > e1->ec) in wl_tree_add() 155 ubi_assert(e->pnum != e1->pnum); in wl_tree_add() 156 if (e->pnum < e1->pnum) in wl_tree_add() 242 struct ubi_wl_entry *e1; in in_wl_tree() local 244 e1 = rb_entry(p, struct ubi_wl_entry, u.rb); in in_wl_tree() 246 if (e->pnum == e1->pnum) { in in_wl_tree() 247 ubi_assert(e == e1); in in_wl_tree() [all …]
|
/openbmc/linux/scripts/coccinelle/iterators/ |
H A D | for_each_child.cocci | 18 expression e1,e2; 30 for_each_node_by_name(n,e1) S 32 for_each_node_by_type(n,e1) S 34 for_each_compatible_node(n,e1,e2) S 36 for_each_matching_node(n,e1) S 38 for_each_matching_node_and_match(n,e1,e2) S 40 for_each_child_of_node(e1,n) S 42 for_each_available_child_of_node(e1,n) S 44 for_each_node_with_property(n,e1) S 83 expression e,e1; [all …]
|
H A D | device_node_continue.cocci | 20 expression e1,e2; 33 for_each_node_by_name(n,e1) S 35 for_each_node_by_type(n,e1) S 37 for_each_compatible_node(n,e1,e2) S 39 for_each_matching_node(n,e1) S 41 for_each_matching_node_and_match(n,e1,e2) S 43 for_each_child_of_node(e1,n) S 45 for_each_available_child_of_node(e1,n) S 47 for_each_node_with_property(n,e1) S
|
/openbmc/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()
|
/openbmc/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()
|
/openbmc/qemu/target/i386/tcg/ |
H A D | seg_helper.c | 161 static inline unsigned int get_seg_limit(uint32_t e1, uint32_t e2) in get_seg_limit() argument 165 limit = (e1 & 0xffff) | (e2 & 0x000f0000); in get_seg_limit() 172 static inline uint32_t get_seg_base(uint32_t e1, uint32_t e2) in get_seg_base() argument 174 return (e1 >> 16) | ((e2 & 0xff) << 16) | (e2 & 0xff000000); in get_seg_base() 177 static inline void load_seg_cache_raw_dt(SegmentCache *sc, uint32_t e1, in load_seg_cache_raw_dt() argument 180 sc->base = get_seg_base(e1, e2); in load_seg_cache_raw_dt() 181 sc->limit = get_seg_limit(e1, e2); in load_seg_cache_raw_dt() 240 uint32_t e1, e2; in tss_load_seg() local 244 if (load_segment_ra(env, &e1, &e2, selector, retaddr) != 0) { in tss_load_seg() 283 get_seg_base(e1, e2), in tss_load_seg() [all …]
|
/openbmc/linux/scripts/coccinelle/tests/ |
H A D | doubletest.cocci | 31 expression r.E,e1,e2,fn; 39 <+... \(fn(...)\|e1 op e2\|e1++\|e1--\|++e1\|--e1\) ...+>
|
/openbmc/linux/scripts/coccinelle/free/ |
H A D | put_device.cocci | 14 expression x,e,e1; 25 when != e1 = (T)id 26 when != e1 = (T)(&id->dev) 27 when != e1 = get_device(&id->dev) 28 when != e1 = (T1)platform_get_drvdata(id)
|
/openbmc/linux/crypto/ |
H A D | sha512_generic.c | 84 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41)) macro 126 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[(i & 15)]; in sha512_transform() 128 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1]; in sha512_transform() 130 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[(i & 15) + 2]; in sha512_transform() 132 t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[(i & 15) + 3]; in sha512_transform() 134 t1 = d + e1(a) + Ch(a,b,c) + sha512_K[i+4] + W[(i & 15) + 4]; in sha512_transform() 136 t1 = c + e1(h) + Ch(h,a,b) + sha512_K[i+5] + W[(i & 15) + 5]; in sha512_transform() 138 t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[(i & 15) + 6]; in sha512_transform() 140 t1 = a + e1(f) + Ch(f,g,h) + sha512_K[i+7] + W[(i & 15) + 7]; in sha512_transform()
|
/openbmc/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 …]
|
/openbmc/phosphor-logging/test/openpower-pels/ |
H A D | stream_test.cpp | 75 uint8_t e1; in TEST() local 81 stream >> e3 >> e2 >> e4 >> e1; in TEST() 83 EXPECT_EQ(v1, e1); in TEST() 99 uint32_t e1; in TEST() local 100 stream >> e1; in TEST() 102 EXPECT_EQ(v1, e1); in TEST()
|