Searched refs:e1 (Results 1 - 25 of 55) sorted by relevance

123

/linux-master/arch/alpha/lib/
H A Dcsum_ipv6_magic.S25 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
[all...]
H A Dclear_user.S34 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 Dmemchr.S51 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
[all...]
H A Dstxcpy.S47 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 Dstrchr.S23 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...]
H A Dstxncpy.S55 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 Dstrrchr.S23 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
[all...]
/linux-master/arch/mips/bcm47xx/
H A Dboard.c241 const struct bcm47xx_board_type_list1 *e1; local
246 for (e1 = bcm47xx_board_list_model_name; e1->value1; e1++) {
247 if (!strcmp(buf1, e1->value1))
248 return &e1->board;
253 for (e1 = bcm47xx_board_list_hardware_version; e1->value1; e1++) {
254 if (strstarts(buf1, e1
[all...]
/linux-master/tools/testing/selftests/kvm/x86_64/
H A Dcpuid_test.c75 const struct kvm_cpuid_entry2 *e1, *e2; local
82 e1 = &cpuid1->entries[i];
85 TEST_ASSERT(e1->function == e2->function &&
86 e1->index == e2->index && e1->flags == e2->flags,
88 i, e1->function, e1->index, e1->flags,
91 if (is_cpuid_mangled(e1))
94 TEST_ASSERT(e1
[all...]
/linux-master/scripts/kconfig/
H A Dexpr.c34 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) argument
38 e->left.expr = e1;
52 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) argument
54 if (!e1)
56 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1;
59 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) argument
61 if (!e1)
63 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1;
139 #define e1 macro
243 #undef e1 macro
252 expr_eq(struct expr *e1, struct expr *e2) argument
431 expr_join_or(struct expr *e1, struct expr *e2) argument
495 expr_join_and(struct expr *e1, struct expr *e2) argument
598 #define e1 macro
649 #undef e1 macro
924 struct expr *e1, *e2; local
[all...]
H A Dexpr.h282 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
284 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
285 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
289 int expr_eq(struct expr *e1, struct expr *e2);
/linux-master/drivers/gpu/drm/i915/display/
H A Dintel_wm_types.h67 static inline bool skl_ddb_entry_equal(const struct skl_ddb_entry *e1, argument
70 if (e1->start == e2->start && e1->end == e2->end)
/linux-master/drivers/mtd/ubi/
H A Dwl.c145 struct ubi_wl_entry *e1; local
148 e1 = rb_entry(parent, struct ubi_wl_entry, u.rb);
150 if (e->ec < e1->ec)
152 else if (e->ec > e1->ec)
155 ubi_assert(e->pnum != e1->pnum);
156 if (e->pnum < e1->pnum)
248 struct ubi_wl_entry *e1; local
250 e1 = rb_entry(p, struct ubi_wl_entry, u.rb);
252 if (e->pnum == e1->pnum) {
253 ubi_assert(e == e1);
338 struct ubi_wl_entry *e1; local
664 struct ubi_wl_entry *e1, *e2; local
[all...]
/linux-master/tools/perf/tests/
H A Dpmu-events.c300 static int compare_pmu_events(const struct pmu_event *e1, const struct pmu_event *e2) argument
302 if (!is_same(e1->name, e2->name)) {
303 pr_debug2("testing event e1 %s: mismatched name string, %s vs %s\n",
304 e1->name, e1->name, e2->name);
308 if (!is_same(e1->compat, e2->compat)) {
309 pr_debug2("testing event e1 %s: mismatched compat string, %s vs %s\n",
310 e1->name, e1->compat, e2->compat);
314 if (!is_same(e1
[all...]
/linux-master/drivers/gpu/drm/xe/
H A Dxe_reg_sr.c69 static bool compatible_entries(const struct xe_reg_sr_entry *e1, argument
76 if (e1->clr_bits & e2->clr_bits || e1->set_bits & e2->set_bits ||
77 e1->clr_bits & e2->set_bits || e1->set_bits & e2->clr_bits)
80 if (e1->reg.raw != e2->reg.raw)
/linux-master/crypto/
H A Dsha512_generic.c84 #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)];
128 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1];
130 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[(i & 15) + 2];
132 t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[(i & 15) + 3];
134 t1 = d + e1(a) + Ch(a,b,c) + sha512_K[i+4] + W[(i & 15) + 4];
136 t1 = c + e1(h) + Ch(h,a,b) + sha512_K[i+5] + W[(i & 15) + 5];
138 t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[(i & 15) + 6];
140 t1 = a + e1(f) + Ch(f,g,h) + sha512_K[i+7] + W[(i & 15) + 7];
/linux-master/tools/testing/selftests/net/mptcp/
H A Dmptcp_inq.c563 int e1, e2, wstatus; local
569 e1 = socketpair(AF_UNIX, SOCK_DGRAM, 0, unixfds);
570 if (e1 < 0)
580 e1 = read(unixfds[0], &e1, 4);
581 assert(e1 == 4);
592 e1 = rcheck(wstatus, "server");
598 return e1 ? e1 : e2;
/linux-master/fs/nfs/flexfilelayout/
H A Dflexfilelayoutdev.c200 ff_ds_error_match(const struct nfs4_ff_layout_ds_err *e1, argument
205 if (e1->opnum != e2->opnum)
206 return e1->opnum < e2->opnum ? -1 : 1;
207 if (e1->status != e2->status)
208 return e1->status < e2->status ? -1 : 1;
209 ret = memcmp(e1->stateid.data, e2->stateid.data,
210 sizeof(e1->stateid.data));
213 ret = memcmp(&e1->deviceid, &e2->deviceid, sizeof(e1->deviceid));
216 if (pnfs_end_offset(e1
[all...]
/linux-master/security/selinux/ss/
H A Debitmap.h127 int ebitmap_cmp(const struct ebitmap *e1, const struct ebitmap *e2);
129 int ebitmap_and(struct ebitmap *dst, const struct ebitmap *e1,
131 int ebitmap_contains(const struct ebitmap *e1, const struct ebitmap *e2,
H A Debitmap.c28 int ebitmap_cmp(const struct ebitmap *e1, const struct ebitmap *e2) argument
32 if (e1->highbit != e2->highbit)
35 n1 = e1->node;
78 int ebitmap_and(struct ebitmap *dst, const struct ebitmap *e1, argument
86 ebitmap_for_each_positive_bit(e1, n, bit)
213 * Check to see if all the bits set in e2 are also set in e1. Optionally,
217 int ebitmap_contains(const struct ebitmap *e1, const struct ebitmap *e2, argument
223 if (e1->highbit < e2->highbit)
226 n1 = e1->node;
/linux-master/net/netfilter/ipset/
H A Dip_set_hash_ipmac.c51 hash_ipmac4_data_equal(const struct hash_ipmac4_elem *e1, argument
55 return e1->ip == e2->ip && ether_addr_equal(e1->ether, e2->ether);
158 hash_ipmac6_data_equal(const struct hash_ipmac6_elem *e1, argument
162 return ipv6_addr_equal(&e1->ip.in6, &e2->ip.in6) &&
163 ether_addr_equal(e1->ether, e2->ether);
H A Dip_set_hash_mac.c41 hash_mac4_data_equal(const struct hash_mac4_elem *e1, argument
45 return ether_addr_equal(e1->ether, e2->ether);
/linux-master/tools/testing/selftests/bpf/progs/
H A Dbtf_dump_test_case_syntax.c9 enum e1 { enum
256 enum e1 _1;
/linux-master/drivers/gpu/drm/msm/disp/dpu1/
H A Ddpu_formats.c34 #define INTERLEAVED_RGB_FMT(fmt, a, r, g, b, e0, e1, e2, e3, uc, alpha, \
40 .element = { (e0), (e1), (e2), (e3) }, \
53 #define INTERLEAVED_RGB_FMT_TILED(fmt, a, r, g, b, e0, e1, e2, e3, uc, \
59 .element = { (e0), (e1), (e2), (e3) }, \
73 #define INTERLEAVED_YUV_FMT(fmt, a, r, g, b, e0, e1, e2, e3, \
79 .element = { (e0), (e1), (e2), (e3)}, \
92 #define PSEUDO_YUV_FMT(fmt, a, r, g, b, e0, e1, chroma, flg, fm, np) \
97 .element = { (e0), (e1), 0, 0 }, \
110 #define PSEUDO_YUV_FMT_TILED(fmt, a, r, g, b, e0, e1, chroma, \
116 .element = { (e0), (e1),
[all...]
/linux-master/drivers/input/
H A Dff-core.c37 static inline int check_effects_compatible(struct ff_effect *e1, argument
40 return e1->type == e2->type &&
41 (e1->type != FF_PERIODIC ||
42 e1->u.periodic.waveform == e2->u.periodic.waveform);

Completed in 640 milliseconds

123