Home
last modified time | relevance | path

Searched refs:e1 (Results 1 – 79 of 79) sorted by relevance

/linux-4.1.27/arch/alpha/lib/
Dcsum_ipv6_magic.S23 zapnot $20,15,$20 # .. e1 : zero extend incoming csum
25 ldq_u $21,7($16) # .. e1 : handle misalignment
28 ldq_u $1,8($16) # .. e1 :
30 ldq_u $22,15($16) # .. e1 :
33 ldq_u $2,0($17) # .. e1 :
35 ldq_u $23,7($17) # .. e1 :
38 ldq_u $3,8($17) # .. e1 :
40 ldq_u $24,15($17) # .. e1 :
43 or $0,$21,$0 # .. e1 : 1st src word complete
45 addq $20,$0,$20 # .. e1 : begin summing the words
[all …]
Dclear_user.S47 beq $4, 1f # .. e1 :
50 subq $0, 8, $0 # .. e1 :
52 addq $6, 8, $6 # .. e1 :
53 bne $4, 0b # e1 :
57 beq $1, $tail # .. e1 :
60 subq $0, 8, $0 # .. e1 :
62 subq $0, 8, $0 # .. e1 :
64 subq $0, 8, $0 # .. e1 :
66 subq $0, 8, $0 # .. e1 :
68 addq $6, 32, $6 # .. e1 :
[all …]
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 : $1 = quadword starting at $16
[all …]
Dstxncpy.S54 lda t2, -1 # e1 : build a mask against false zero
57 ornot t1, t2, t2 # .. e1 :
59 cmpbge zero, t2, t8 # .. e1 : bits set iff null found
61 beq a2, $a_eoc # .. e1 :
62 bne t8, $a_eos # .. e1 :
69 addq a0, 8, a0 # .. e1 :
71 addq a1, 8, a1 # .. e1 :
73 cmpbge zero, t0, t8 # .. e1 (stall)
74 beq a2, $a_eoc # e1 :
75 beq t8, $a_loop # e1 :
[all …]
Dstxcpy.S46 lda t2, -1 # e1 : build a mask against false zero
49 ornot t1, t2, t2 # .. e1 :
51 cmpbge zero, t2, t8 # .. e1 : bits set iff null found
53 bne t8, $a_eos # .. e1 :
61 addq a0, 8, a0 # .. e1 :
63 addq a1, 8, a1 # .. e1 :
65 beq t8, $a_loop # .. e1 (zdb)
73 and t8, t6, t12 # e1 (stall)
78 bne t6, 1f # .. e1 (zdb)
83 subq t12, 1, t6 # .. e1 :
[all …]
Dstrrchr.S22 mov zero, t6 # .. e1 : t6 is last match aligned addr
24 mov zero, t8 # .. e1 : t8 is last match byte compare mask
26 ldq_u t0, 0(a0) # .. e1 : load first quadword
28 andnot a0, 7, v0 # .. e1 : align source addr
30 lda t4, -1 # .. e1 : build garbage mask
32 cmpbge zero, t0, t1 # .. e1 : bits set iff byte == zero
34 or t5, a1, a1 # .. e1 : character replication complete
36 cmpbge zero, t4, t4 # .. e1 : bits set iff byte is garbage
38 andnot t1, t4, t1 # .. e1 : clear garbage from null test
40 bne t1, $eos # .. e1 : did we already hit the terminator?
[all …]
Dstrchr.S22 ldq_u t0, 0(a0) # .. e1 : load first quadword
24 andnot a0, 7, v0 # .. e1 : align our loop pointer
26 lda t4, -1 # .. e1 : build garbage mask
28 cmpbge zero, t0, t2 # .. e1 : bits set iff byte == zero
30 or t5, a1, a1 # .. e1 :
32 cmpbge zero, t4, t4 # .. e1 : bits set iff byte is garbage
34 xor t0, a1, t1 # .. e1 : make bytes == c zero
36 or t2, t3, t0 # e1 : bits set iff char match or zero match
38 bne t0, $found # .. e1 (zdb)
41 addq v0, 8, v0 # .. e1 :
[all …]
Dev6-stxcpy.S313 andnot t0, t2, t0 # .. e1 : zero place for source to reside (stall)
315 or t0, t1, t1 # e1 : and put it there
317 ret (t9) # e1 :
Dev6-stxncpy.S126 zap t1, t8, t1 # .. e1 : clear dst bytes <= null
127 or t0, t1, t0 # e1 : (stall)
174 br stxncpy_aligned # .. e1 :
/linux-4.1.27/scripts/kconfig/
Dexpr.c14 static int expr_eq(struct expr *e1, struct expr *e2);
36 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2) in expr_alloc_two() argument
40 e->left.expr = e1; in expr_alloc_two()
54 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2) in expr_alloc_and() argument
56 if (!e1) in expr_alloc_and()
58 return e2 ? expr_alloc_two(E_AND, e1, e2) : e1; in expr_alloc_and()
61 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2) in expr_alloc_or() argument
63 if (!e1) in expr_alloc_or()
65 return e2 ? expr_alloc_two(E_OR, e1, e2) : e1; in expr_alloc_or()
133 #define e1 (*ep1) macro
[all …]
Dexpr.h202 struct expr *expr_alloc_two(enum expr_type type, struct expr *e1, struct expr *e2);
204 struct expr *expr_alloc_and(struct expr *e1, struct expr *e2);
205 struct expr *expr_alloc_or(struct expr *e1, struct expr *e2);
216 struct expr *expr_simplify_unmet_dep(struct expr *e1, struct expr *e2);
/linux-4.1.27/arch/mips/bcm47xx/
Dboard.c219 const struct bcm47xx_board_type_list1 *e1; in bcm47xx_board_get_nvram() local
224 for (e1 = bcm47xx_board_list_model_name; e1->value1; e1++) { in bcm47xx_board_get_nvram()
225 if (!strcmp(buf1, e1->value1)) in bcm47xx_board_get_nvram()
226 return &e1->board; in bcm47xx_board_get_nvram()
231 for (e1 = bcm47xx_board_list_hardware_version; e1->value1; e1++) { in bcm47xx_board_get_nvram()
232 if (strstarts(buf1, e1->value1)) in bcm47xx_board_get_nvram()
233 return &e1->board; in bcm47xx_board_get_nvram()
247 for (e1 = bcm47xx_board_list_productid; e1->value1; e1++) { in bcm47xx_board_get_nvram()
248 if (!strcmp(buf1, e1->value1)) in bcm47xx_board_get_nvram()
249 return &e1->board; in bcm47xx_board_get_nvram()
[all …]
/linux-4.1.27/arch/x86/purgatory/
Dsha256.c34 #define e1(x) (ror32(x, 6) ^ ror32(x, 11) ^ ror32(x, 25)) macro
67 t1 = h + e1(e) + Ch(e, f, g) + 0x428a2f98 + W[0]; in sha256_transform()
69 t1 = g + e1(d) + Ch(d, e, f) + 0x71374491 + W[1]; in sha256_transform()
71 t1 = f + e1(c) + Ch(c, d, e) + 0xb5c0fbcf + W[2]; in sha256_transform()
73 t1 = e + e1(b) + Ch(b, c, d) + 0xe9b5dba5 + W[3]; in sha256_transform()
75 t1 = d + e1(a) + Ch(a, b, c) + 0x3956c25b + W[4]; in sha256_transform()
77 t1 = c + e1(h) + Ch(h, a, b) + 0x59f111f1 + W[5]; in sha256_transform()
79 t1 = b + e1(g) + Ch(g, h, a) + 0x923f82a4 + W[6]; in sha256_transform()
81 t1 = a + e1(f) + Ch(f, g, h) + 0xab1c5ed5 + W[7]; in sha256_transform()
84 t1 = h + e1(e) + Ch(e, f, g) + 0xd807aa98 + W[8]; in sha256_transform()
[all …]
/linux-4.1.27/crypto/
Dsha256_generic.c41 #define e1(x) (ror32(x, 6) ^ ror32(x,11) ^ ror32(x,25)) macro
74 t1 = h + e1(e) + Ch(e,f,g) + 0x428a2f98 + W[ 0]; in sha256_transform()
76 t1 = g + e1(d) + Ch(d,e,f) + 0x71374491 + W[ 1]; in sha256_transform()
78 t1 = f + e1(c) + Ch(c,d,e) + 0xb5c0fbcf + W[ 2]; in sha256_transform()
80 t1 = e + e1(b) + Ch(b,c,d) + 0xe9b5dba5 + W[ 3]; in sha256_transform()
82 t1 = d + e1(a) + Ch(a,b,c) + 0x3956c25b + W[ 4]; in sha256_transform()
84 t1 = c + e1(h) + Ch(h,a,b) + 0x59f111f1 + W[ 5]; in sha256_transform()
86 t1 = b + e1(g) + Ch(g,h,a) + 0x923f82a4 + W[ 6]; in sha256_transform()
88 t1 = a + e1(f) + Ch(f,g,h) + 0xab1c5ed5 + W[ 7]; in sha256_transform()
91 t1 = h + e1(e) + Ch(e,f,g) + 0xd807aa98 + W[ 8]; in sha256_transform()
[all …]
Dsha512_generic.c67 #define e1(x) (ror64(x,14) ^ ror64(x,18) ^ ror64(x,41)) macro
109 t1 = h + e1(e) + Ch(e,f,g) + sha512_K[i ] + W[(i & 15)]; in sha512_transform()
111 t1 = g + e1(d) + Ch(d,e,f) + sha512_K[i+1] + W[(i & 15) + 1]; in sha512_transform()
113 t1 = f + e1(c) + Ch(c,d,e) + sha512_K[i+2] + W[(i & 15) + 2]; in sha512_transform()
115 t1 = e + e1(b) + Ch(b,c,d) + sha512_K[i+3] + W[(i & 15) + 3]; in sha512_transform()
117 t1 = d + e1(a) + Ch(a,b,c) + sha512_K[i+4] + W[(i & 15) + 4]; in sha512_transform()
119 t1 = c + e1(h) + Ch(h,a,b) + sha512_K[i+5] + W[(i & 15) + 5]; in sha512_transform()
121 t1 = b + e1(g) + Ch(g,h,a) + sha512_K[i+6] + W[(i & 15) + 6]; in sha512_transform()
123 t1 = a + e1(f) + Ch(f,g,h) + sha512_K[i+7] + W[(i & 15) + 7]; in sha512_transform()
Dgf128mul.c110 (i & 0x80 ? xx(e1, 00) : 0) ^ (i & 0x40 ? xx(70, 80) : 0) ^ \
/linux-4.1.27/arch/mips/include/asm/txx9/
Dtx3927.h56 #define endian_def_s2(e1, e2) \ argument
57 volatile unsigned short e1, e2
58 #define endian_def_sb2(e1, e2, e3) \ argument
59 volatile unsigned short e1;volatile unsigned char e2, e3
60 #define endian_def_b2s(e1, e2, e3) \ argument
61 volatile unsigned char e1, e2;volatile unsigned short e3
62 #define endian_def_b4(e1, e2, e3, e4) \ argument
63 volatile unsigned char e1, e2, e3, e4
65 #define endian_def_s2(e1, e2) \ argument
66 volatile unsigned short e2, e1
[all …]
/linux-4.1.27/drivers/mtd/ubi/
Dwl.c158 struct ubi_wl_entry *e1; in wl_tree_add() local
161 e1 = rb_entry(parent, struct ubi_wl_entry, u.rb); in wl_tree_add()
163 if (e->ec < e1->ec) in wl_tree_add()
165 else if (e->ec > e1->ec) in wl_tree_add()
168 ubi_assert(e->pnum != e1->pnum); in wl_tree_add()
169 if (e->pnum < e1->pnum) in wl_tree_add()
255 struct ubi_wl_entry *e1; in in_wl_tree() local
257 e1 = rb_entry(p, struct ubi_wl_entry, u.rb); in in_wl_tree()
259 if (e->pnum == e1->pnum) { in in_wl_tree()
260 ubi_assert(e == e1); in in_wl_tree()
[all …]
/linux-4.1.27/scripts/coccinelle/tests/
Dodd_ptr_err.cocci18 expression e,e1;
24 if (IS_ERR(e=e1)) { ... PTR_ERR(e) ... }
29 - e1
36 expression e,e1;
43 if (IS_ERR(e=e1)) { ... PTR_ERR(e) ... }
47 * PTR_ERR@p2(e1)
/linux-4.1.27/arch/mn10300/lib/
Ddo_csum.S67 mov (a0+),e1
71 addc e1,d1
75 mov (a0+),e1
79 addc e1,d1
95 mov (a0+),e1
99 addc e1,d1
Dmemcpy.S53 mov (a1+),e1
61 mov e1,(a0+)
81 mov (a1+),e1
85 mov e1,(a0+)
Dmemmove.S103 mov (a1),e1
105 mov e1,(a0)
/linux-4.1.27/drivers/staging/lustre/lustre/ldlm/
Dinterval_tree.c72 static inline int extent_compare(struct interval_node_extent *e1, in extent_compare() argument
77 if (e1->start == e2->start) { in extent_compare()
78 if (e1->end < e2->end) in extent_compare()
80 else if (e1->end > e2->end) in extent_compare()
85 if (e1->start < e2->start) in extent_compare()
93 static inline int extent_equal(struct interval_node_extent *e1, in extent_equal() argument
96 return (e1->start == e2->start) && (e1->end == e2->end); in extent_equal()
99 static inline int extent_overlapped(struct interval_node_extent *e1, in extent_overlapped() argument
102 return (e1->start <= e2->end) && (e2->start <= e1->end); in extent_overlapped()
/linux-4.1.27/Documentation/video4linux/
DCARDLIST.tm60006 6 -> ADSTech Dual TV (tm6000) [06e1:f332]
8 8 -> ADSTech Mini Dual TV (tm6000) [06e1:b339]
DCARDLIST.au08286 5 -> Hauppauge Woodbury (au0828) [05e1:0480,2040:8200]
Dsi470x.txt42 - 06e1:a155: ADS/Tech FM Radio Receiver (formerly Instant FM Music) (RDX-155-EF)
Dgspca.txt201 stk014 05e1:0893 Syntek DV4000
215 spca506 06e1:a190 ADS Instant VCD
/linux-4.1.27/arch/ia64/kernel/
Dmodule.c857 struct unw_table_entry tmp, *e1, *e2, *core, *init; in register_unwind_table() local
861 for (e1 = start; e1 < end; ++e1) in register_unwind_table()
862 if (in_init(mod, e1->start_offset)) in register_unwind_table()
871 for (e1 = start; e1 < end; ++e1) { in register_unwind_table()
872 for (e2 = e1 + 1; e2 < end; ++e2) { in register_unwind_table()
873 if (e2->start_offset < e1->start_offset) { in register_unwind_table()
874 tmp = *e1; in register_unwind_table()
875 *e1 = *e2; in register_unwind_table()
/linux-4.1.27/arch/s390/kernel/
Dtime.c496 .e0 = 0, .e1 = 0, ._pad0 = 4, .dp = 0, in etr_reset()
686 a1->esw.eacr.e1 != a2->esw.eacr.e1) in etr_aib_follows()
866 if (eacr.e1) in etr_handle_events()
875 eacr.e1 = 0; in etr_handle_events()
913 if (!eacr.e0 && !eacr.e1) in etr_handle_update()
983 dp_changed = etr_eacr.e0 > eacr.e0 || etr_eacr.e1 > eacr.e1 || in etr_update_eacr()
1054 eacr.e1 = 0; in etr_work_fn()
1057 eacr.e1 = 1; in etr_work_fn()
1063 eacr.e1 = 1; in etr_work_fn()
1075 eacr.e1 = 0; in etr_work_fn()
[all …]
/linux-4.1.27/security/selinux/ss/
Debitmap.c27 int ebitmap_cmp(struct ebitmap *e1, struct ebitmap *e2) in ebitmap_cmp() argument
31 if (e1->highbit != e2->highbit) in ebitmap_cmp()
34 n1 = e1->node; in ebitmap_cmp()
198 int ebitmap_contains(struct ebitmap *e1, struct ebitmap *e2, u32 last_e2bit) in ebitmap_contains() argument
203 if (e1->highbit < e2->highbit) in ebitmap_contains()
206 n1 = e1->node; in ebitmap_contains()
Debitmap.h124 int ebitmap_cmp(struct ebitmap *e1, struct ebitmap *e2);
126 int ebitmap_contains(struct ebitmap *e1, struct ebitmap *e2, u32 last_e2bit);
/linux-4.1.27/scripts/coccinelle/misc/
Dcstptr.cocci16 expression e,e1;
22 ... when != e = e1
/linux-4.1.27/drivers/input/
Dff-core.c52 static inline int check_effects_compatible(struct ff_effect *e1, in check_effects_compatible() argument
55 return e1->type == e2->type && in check_effects_compatible()
56 (e1->type != FF_PERIODIC || in check_effects_compatible()
57 e1->u.periodic.waveform == e2->u.periodic.waveform); in check_effects_compatible()
/linux-4.1.27/drivers/gpu/drm/msm/mdp/
Dmdp_format.c74 #define FMT(name, a, r, g, b, e0, e1, e2, e3, alpha, tight, c, cnt, fp, cs) { \ argument
80 .unpack = { e0, e1, e2, e3 }, \
/linux-4.1.27/arch/mn10300/include/asm/
Delf.h78 _ur->e1 = 0; _ur->e0 = 0; _ur->e7 = 0; _ur->e6 = 0; \
111 pr_reg[8] = regs->e1; \
Dgdb-stub.h82 u32 e0, e1, e2, e3, e4, e5, e6, e7; member
/linux-4.1.27/net/netfilter/ipset/
Dip_set_hash_mac.c45 hash_mac4_data_equal(const struct hash_mac4_elem *e1, in hash_mac4_data_equal() argument
49 return ether_addr_equal(e1->ether, e2->ether); in hash_mac4_data_equal()
Dip_set_hash_ip.c52 hash_ip4_data_equal(const struct hash_ip4_elem *e1, in hash_ip4_data_equal() argument
56 return e1->ip == e2->ip; in hash_ip4_data_equal()
/linux-4.1.27/arch/mn10300/include/uapi/asm/
Dsigcontext.h30 unsigned long e1; member
Dptrace.h56 unsigned long e1; member
/linux-4.1.27/tools/perf/util/
Devsel.h226 static inline bool perf_evsel__match2(struct perf_evsel *e1, in perf_evsel__match2() argument
229 return (e1->attr.type == e2->attr.type) && in perf_evsel__match2()
230 (e1->attr.config == e2->attr.config); in perf_evsel__match2()
/linux-4.1.27/drivers/net/ethernet/chelsio/cxgb/
Dsge.c1169 struct cmdQ_e *e1 = *e; in write_large_page_tx_descs() local
1174 write_tx_desc(e1, *desc_mapping, SGE_TX_DESC_MAX_PLEN, in write_large_page_tx_descs()
1181 e1++; in write_large_page_tx_descs()
1186 e1 = q->entries; in write_large_page_tx_descs()
1190 *e = e1; in write_large_page_tx_descs()
1205 struct cmdQ_e *e, *e1; in write_tx_descs() local
1210 e = e1 = &q->entries[pidx]; in write_tx_descs()
1234 e1++; in write_tx_descs()
1239 e1 = q->entries; in write_tx_descs()
1242 pidx = write_large_page_tx_descs(pidx, &e1, &ce, &gen, in write_tx_descs()
[all …]
/linux-4.1.27/arch/powerpc/crypto/
Daes-tab-4k.S54 .long R(75, b7, b7, c2), R(e1, fd, fd, 1c)
104 .long R(be, 5f, 5f, e1), R(35, 97, 97, a2)
150 .long R(d9, e1, e1, 38), R(eb, f8, f8, 13)
178 .long R(45, ea, 0e, 98), R(5d, fe, c0, e1)
187 .long R(be, e1, 4f, b6), R(f0, 88, ad, 17)
206 .long R(05, 8a, e1, 32), R(a4, f6, eb, 75)
284 .long R(e1, 1c, e5, ed), R(7a, 47, b1, 3c)
/linux-4.1.27/drivers/media/usb/stkwebcam/
DKconfig7 with USB id 174f:a311 and 05e1:0501. Other Syntek cameras
/linux-4.1.27/Documentation/hid/
Dhid-sensor.txt162 /sys/devices/pci0000:00/INT33C2:00/i2c-0/i2c-INT33D1:00/0018:8086:09FA.0001/HID-SENSOR-2000e1.6.aut…
202 /sys/bus/platform/devices/HID-SENSOR-2000e1.6.auto/feature-0-200316$ grep -r . *
218 /dev$ tree | grep HID-SENSOR-2000e1.6.auto
219 ??????? ????????? 10:53 -> ../HID-SENSOR-2000e1.6.auto
220 ????????? HID-SENSOR-2000e1.6.auto
/linux-4.1.27/drivers/staging/lustre/lnet/lnet/
Drouter.c422 struct list_head *e1; in lnet_check_routes() local
432 list_for_each(e1, rn_list) { in lnet_check_routes()
433 rnet = list_entry(e1, lnet_remotenet_t, lrn_list); in lnet_check_routes()
478 struct list_head *e1; in lnet_del_route() local
497 list_for_each(e1, rn_list) { in lnet_del_route()
498 rnet = list_entry(e1, lnet_remotenet_t, lrn_list); in lnet_del_route()
557 struct list_head *e1; in lnet_get_route() local
569 list_for_each(e1, rn_list) { in lnet_get_route()
570 rnet = list_entry(e1, lnet_remotenet_t, lrn_list); in lnet_get_route()
/linux-4.1.27/arch/arc/kernel/
Dunwind.c224 const struct eh_frame_hdr_table_entry *e1 = p1; in cmp_eh_frame_hdr_table_entries() local
227 return (e1->start > e2->start) - (e1->start < e2->start); in cmp_eh_frame_hdr_table_entries()
232 struct eh_frame_hdr_table_entry *e1 = p1; in swap_eh_frame_hdr_table_entries() local
236 v = e1->start; in swap_eh_frame_hdr_table_entries()
237 e1->start = e2->start; in swap_eh_frame_hdr_table_entries()
239 v = e1->fde; in swap_eh_frame_hdr_table_entries()
240 e1->fde = e2->fde; in swap_eh_frame_hdr_table_entries()
/linux-4.1.27/drivers/usb/atm/
Dueagle-atm.c143 struct cmv_dsc_e1 e1; member
518 #define e1_bSwapPageNo u.e1.s1.swapinfo.bSwapPageNo
519 #define e1_bOvl u.e1.s1.swapinfo.bOvl
555 union intr_data_e1 e1; member
1192 sc->cmv_dsc.e1.function = function | 0x2; in uea_cmv_e1()
1193 sc->cmv_dsc.e1.idx++; in uea_cmv_e1()
1194 sc->cmv_dsc.e1.address = address; in uea_cmv_e1()
1195 sc->cmv_dsc.e1.offset = offset; in uea_cmv_e1()
1200 cmv.wIndex = cpu_to_le16(sc->cmv_dsc.e1.idx); in uea_cmv_e1()
1895 sc->cmv_dsc.e1.function = E1_MAKEFUNCTION(E1_ADSLDIRECTIVE, in uea_start_reset()
[all …]
/linux-4.1.27/arch/x86/crypto/sha-mb/
Dsha1_x8_avx2.S76 # r4 = {e7 e6 e5 e4 e3 e2 e1 e0}
83 # r1 = {h1 g1 f1 e1 d1 c1 b1 a1}
105 vshufps $0x44, \r5, \r4, \r2 # r2 = {f5 f4 e5 e4 f1 f0 e1 e0}
109 vshufps $0xDD, \t1, \r2, \r7 # r7 = {h5 g5 f5 e5 h1 g1 f1 e1}
/linux-4.1.27/drivers/firewire/
Dcore-cdev.c1362 struct iso_resource_event *e1, *e2; in init_iso_resource() local
1371 e1 = kmalloc(sizeof(*e1), GFP_KERNEL); in init_iso_resource()
1373 if (r == NULL || e1 == NULL || e2 == NULL) { in init_iso_resource()
1384 r->e_alloc = e1; in init_iso_resource()
1387 e1->iso_resource.closure = request->closure; in init_iso_resource()
1388 e1->iso_resource.type = FW_CDEV_EVENT_ISO_RESOURCE_ALLOCATED; in init_iso_resource()
1407 kfree(e1); in init_iso_resource()
/linux-4.1.27/arch/s390/include/asm/
Detr.h11 unsigned int e1 : 1; /* port 1 stepping control */ member
/linux-4.1.27/drivers/media/radio/si470x/
DKconfig8 - 06e1:a155: ADS/Tech FM Radio Receiver (formerly Instant FM Music)
/linux-4.1.27/arch/mn10300/kernel/
Dkgdb.c52 gdb_regs[GDB_FR_E1] = regs->e1; in pt_regs_to_gdb_regs()
104 regs->e1 = gdb_regs[GDB_FR_E1]; in gdb_regs_to_pt_regs()
Dsignal.c51 COPY(e0); COPY(e1); COPY(e2); COPY(e3); in restore_sigcontext()
166 COPY(e0); COPY(e1); COPY(e2); COPY(e3); in setup_sigcontext()
Dhead.S192 mov 0xed00e1ed,e1
229 mov 0xfd00e1ed,e1
Dasm-offsets.c41 OFFSET(REG_E1, pt_regs, e1); in foo()
Dgdb-stub.c1399 ptr = mem2hex(&regs->e1, ptr, 4, 0); in gdbstub()
1449 ptr = hex2mem(ptr, &regs->e1, 4, 0); in gdbstub()
1722 regs->e0, regs->e1, regs->e2, regs->e3); in debugger_intercept()
Dtraps.c312 regs->e0, regs->e1, regs->e2, regs->e3); in show_registers_only()
/linux-4.1.27/Documentation/x86/
Dexception-tables.txt196 > c017e7a5 <do_con_write+e1> movb (%ebx),%dl
242 and linked in vmlinux : > c017e7a5 <do_con_write+e1> movb (%ebx),%dl
264 > c017e7a5 <do_con_write+e1> movb (%ebx),%dl
/linux-4.1.27/Documentation/w1/slaves/
Dw1_ds242346 00 e1 61 5d 19 00 00 00 00 df 0b 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff …
/linux-4.1.27/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_init.h564 u32 e1; /* 57710 */ member
694 return bnx2x_blocks_parity_data[idx].reg_mask.e1; in bnx2x_parity_reg_mask()
Dbnx2x.h1226 struct mac_configuration_cmd e1; member
/linux-4.1.27/drivers/tty/
Dcyclades.c4123 unsigned int i, e1; in cy_cleanup_module() local
4129 e1 = tty_unregister_driver(cy_serial_driver); in cy_cleanup_module()
4130 if (e1) in cy_cleanup_module()
4132 "driver(%d)\n", e1); in cy_cleanup_module()
4152 for (e1 = card->first_line; e1 < card->first_line + in cy_cleanup_module()
4153 card->nports; e1++) in cy_cleanup_module()
4154 tty_unregister_device(cy_serial_driver, e1); in cy_cleanup_module()
/linux-4.1.27/Documentation/networking/
Dgeneric-hdlc.txt52 * v35 | rs232 | x21 | t1 | e1 - sets physical interface for a given port
/linux-4.1.27/drivers/zorro/
Dzorro.ids117 06e1 Great Valley Products
131 07e1 Great Valley Products
/linux-4.1.27/Documentation/dvb/
Dci.txt159 EN50221 CA MSG=[ 9f 80 32 19 03 01 2d d1 f0 08 01 09 06 06 04 05 50 ff f1 02 e0 c9 00 00 04 e1 2d 0…
/linux-4.1.27/firmware/
DMakefile34 fw-shipped-$(CONFIG_BNX2X) += bnx2x/bnx2x-e1-6.2.9.0.fw \
DWHENCE634 File: bnx2x/bnx2x-e1-6.2.9.0.fw
/linux-4.1.27/drivers/tty/vt/
Dcp437.uni185 0xa0 U+00e1
/linux-4.1.27/Documentation/DocBook/media/
Ddvbstb.png.b6499 gQPVWpWS/v8JsBCixoWXV/e1+dsYFhZshBA4deoU+vTpgytXrkBXVxfbtm3DtGnT1MYt674//zGv
/linux-4.1.27/drivers/gpu/drm/i915/
Di915_drv.h1443 static inline bool skl_ddb_entry_equal(const struct skl_ddb_entry *e1, in skl_ddb_entry_equal() argument
1446 if (e1->start == e2->start && e1->end == e2->end) in skl_ddb_entry_equal()
/linux-4.1.27/Documentation/wimax/
DREADME.i2400m114 i2400m_usb 5-4:1.0: WiMAX interface wmx0 (00:1d:e1:01:94:2c) ready
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-tape.1995-2002170 * Ver 1.16e1 Oct 13 99 Patches by Arnold Niessen,
/linux-4.1.27/arch/m68k/fpsp040/
Dutil.S356 beql unf_e1_exc |branch to e1 underflow
/linux-4.1.27/arch/x86/lib/
Dx86-opcode-map.txt280 e1: LOOPE/LOOPZ Jb (f64)
570 e1: psraw Pq,Qq | vpsraw Vx,Hx,Wx (66),(v1)
/linux-4.1.27/kernel/events/
Dcore.c3540 static bool exclusive_event_match(struct perf_event *e1, struct perf_event *e2) in exclusive_event_match() argument
3542 if ((e1->pmu->capabilities & PERF_PMU_CAP_EXCLUSIVE) && in exclusive_event_match()
3543 (e1->cpu == e2->cpu || in exclusive_event_match()
3544 e1->cpu == -1 || in exclusive_event_match()
/linux-4.1.27/fs/btrfs/
Dsend.c1177 static int __clone_root_cmp_sort(const void *e1, const void *e2) in __clone_root_cmp_sort() argument
1179 struct clone_root *cr1 = (struct clone_root *)e1; in __clone_root_cmp_sort()
/linux-4.1.27/Documentation/RCU/
DRTFP.txt1098 http://www.rdrop.com/users/paulmck/RCU/RCUdissertation.2004.07.14e1.pdf
/linux-4.1.27/Documentation/s390/
DDebugging390.txt663 40051a: 0d e1 basr %r14,%r1