/linux-4.4.14/arch/alpha/lib/ |
D | csum_ipv6_magic.S | 22 ldq_u $0,0($16) # e0 : load src & dst addr words 24 extqh $18,1,$4 # e0 : byte swap len & proto while we wait 27 extbl $18,1,$5 # e0 : 29 extbl $18,2,$6 # e0 : 32 extbl $18,3,$18 # e0 : 34 sra $4,32,$4 # e0 : 37 extql $0,$16,$0 # e0 : 39 extqh $21,$16,$21 # e0 : 42 sll $5,16,$5 # e0 : 44 extql $1,$16,$1 # e0 : [all …]
|
D | stxcpy.S | 47 mskqh t2, a1, t2 # e0 : detection in the src word 48 mskqh t1, a1, t3 # e0 : 50 mskql t0, a1, t0 # e0 : assemble the first output word 52 or t0, t3, t1 # e0 : 60 stq_u t1, 0(a0) # e0 : 62 ldq_u t1, 0(a1) # e0 : 64 cmpbge zero, t1, t8 # e0 (stall) 72 negq t8, t6 # e0 : find low bit set 77 and t12, 0x80, t6 # e0 : 82 ldq_u t0, 0(a0) # e0 : [all …]
|
D | stxncpy.S | 55 mskqh t2, a1, t2 # e0 : detection in the src word 56 mskqh t1, a1, t3 # e0 : 58 mskql t0, a1, t0 # e0 : assemble the first output word 60 or t0, t3, t0 # e0 : 68 stq_u t0, 0(a0) # e0 : 70 ldq_u t0, 0(a1) # e0 : 72 subq a2, 1, a2 # e0 : 85 negq t8, t12 # e0 : find low bit set 90 and t12, 0x80, t6 # e0 : 95 ldq_u t1, 0(a0) # e0 : [all …]
|
D | memchr.S | 49 zap $18, 0x80, $5 #-e0 : 53 insbl $17, 1, $2 # .. e0 : $2 = 000000000000ch00 54 and $17, 0xff, $17 #-e0 : $17 = 00000000000000ch 56 or $2, $17, $17 # e0 : $17 = 000000000000chch 58 sll $17, 16, $2 #-e0 : $2 = 00000000chch0000 62 sll $17, 32, $2 #-e0 : $2 = chchchch00000000 64 extql $1, $16, $7 # e0 : 68 extqh $6, $16, $6 # .. e0 : 69 mov $16, $0 # e0 : 77 negq $18, $6 #-e0 : [all …]
|
D | clear_user.S | 46 and $1, 3, $4 # e0 : 49 0: EX( stq_u $31, 0($6) ) # e0 : zero one word 51 subq $4, 1, $4 # e0 : 56 1: bic $1, 3, $1 # e0 : 59 2: EX( stq_u $31, 0($6) ) # e0 : zero four words 61 EX( stq_u $31, 8($6) ) # e0 : 63 EX( stq_u $31, 16($6) ) # e0 : 65 EX( stq_u $31, 24($6) ) # e0 : 67 subq $1, 4, $1 # e0 : 75 1: EX( ldq_u $5, 0($6) ) # e0 : [all …]
|
D | strrchr.S | 21 zapnot a1, 1, a1 # e0 : zero extend our test character 23 sll a1, 8, t5 # e0 : replicate our test character 25 or t5, a1, a1 # e0 : 27 sll a1, 16, t5 # e0 : 29 or t5, a1, a1 # e0 : 31 sll a1, 32, t5 # e0 : 33 mskqh t4, a0, t4 # e0 : 35 xor t0, a1, t2 # e0 : make bytes == c zero 37 cmpbge zero, t2, t3 # e0 : bits set iff byte == c 39 andnot t3, t4, t3 # e0 : clear garbage from char test [all …]
|
D | strchr.S | 21 zapnot a1, 1, a1 # e0 : zero extend the search character 23 sll a1, 8, t5 # e0 : replicate the search character 25 or t5, a1, a1 # e0 : 27 sll a1, 16, t5 # e0 : 29 mskqh t4, a0, t4 # e0 : 31 sll a1, 32, t5 # e0 : 33 or t5, a1, a1 # e0 : 35 cmpbge zero, t1, t3 # e0 : bits set iff byte == c 37 andnot t0, t4, t0 # e0 : clear garbage bits 40 $loop: ldq t0, 8(v0) # e0 : [all …]
|
D | ev6-stxcpy.S | 316 stq_u t1, 0(a0) # .. e0 : (stall)
|
/linux-4.4.14/crypto/ |
D | sha256_generic.c | 40 #define e0(x) (ror32(x, 2) ^ ror32(x,13) ^ ror32(x,22)) macro 75 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2; in sha256_transform() 77 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha256_transform() 79 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha256_transform() 81 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha256_transform() 83 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha256_transform() 85 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; in sha256_transform() 87 t2 = e0(c) + Maj(c,d,e); f+=t1; b=t1+t2; in sha256_transform() 89 t2 = e0(b) + Maj(b,c,d); e+=t1; a=t1+t2; in sha256_transform() 92 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2; in sha256_transform() [all …]
|
D | sha512_generic.c | 66 #define e0(x) (ror64(x,28) ^ ror64(x,34) ^ ror64(x,39)) macro 110 t2 = e0(a) + Maj(a,b,c); d+=t1; h=t1+t2; in sha512_transform() 112 t2 = e0(h) + Maj(h,a,b); c+=t1; g=t1+t2; in sha512_transform() 114 t2 = e0(g) + Maj(g,h,a); b+=t1; f=t1+t2; in sha512_transform() 116 t2 = e0(f) + Maj(f,g,h); a+=t1; e=t1+t2; in sha512_transform() 118 t2 = e0(e) + Maj(e,f,g); h+=t1; d=t1+t2; in sha512_transform() 120 t2 = e0(d) + Maj(d,e,f); g+=t1; c=t1+t2; in sha512_transform() 122 t2 = e0(c) + Maj(c,d,e); f+=t1; b=t1+t2; in sha512_transform() 124 t2 = e0(b) + Maj(b,c,d); e+=t1; a=t1+t2; in sha512_transform()
|
D | gf128mul.c | 104 (i & 0x20 ? xx(10, e0) : 0) ^ (i & 0x10 ? xx(08, 70) : 0) ^ \
|
/linux-4.4.14/arch/x86/purgatory/ |
D | sha256.c | 33 #define e0(x) (ror32(x, 2) ^ ror32(x, 13) ^ ror32(x, 22)) macro 68 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha256_transform() 70 t2 = e0(h) + Maj(h, a, b); c += t1; g = t1 + t2; in sha256_transform() 72 t2 = e0(g) + Maj(g, h, a); b += t1; f = t1 + t2; in sha256_transform() 74 t2 = e0(f) + Maj(f, g, h); a += t1; e = t1 + t2; in sha256_transform() 76 t2 = e0(e) + Maj(e, f, g); h += t1; d = t1 + t2; in sha256_transform() 78 t2 = e0(d) + Maj(d, e, f); g += t1; c = t1 + t2; in sha256_transform() 80 t2 = e0(c) + Maj(c, d, e); f += t1; b = t1 + t2; in sha256_transform() 82 t2 = e0(b) + Maj(b, c, d); e += t1; a = t1 + t2; in sha256_transform() 85 t2 = e0(a) + Maj(a, b, c); d += t1; h = t1 + t2; in sha256_transform() [all …]
|
/linux-4.4.14/arch/mn10300/lib/ |
D | do_csum.S | 66 mov (a0+),e0 70 addc e0,d1 74 mov (a0+),e0 78 addc e0,d1 94 mov (a0+),e0 98 addc e0,d1
|
D | memcpy.S | 52 mov (a1+),e0 60 mov e0,(a0+) 80 mov (a1+),e0 84 mov e0,(a0+)
|
D | memmove.S | 100 mov (a1),e0 102 mov e0,(a0)
|
/linux-4.4.14/arch/s390/kernel/ |
D | time.c | 493 .e0 = 0, .e1 = 0, ._pad0 = 4, .dp = 0, in etr_reset() 689 if (a1->esw.eacr.e0 != a2->esw.eacr.e0 || in etr_aib_follows() 860 if (eacr.e0) in etr_handle_events() 869 eacr.e0 = 0; in etr_handle_events() 920 if (!eacr.e0 && !eacr.e1) in etr_handle_update() 990 dp_changed = etr_eacr.e0 > eacr.e0 || etr_eacr.e1 > eacr.e1 || in etr_update_eacr() 1057 eacr.e0 = 1; in etr_work_fn() 1069 eacr.e0 = 0; in etr_work_fn() 1077 eacr.e0 = 1; in etr_work_fn() 1090 eacr.e0 = 0; in etr_work_fn() [all …]
|
/linux-4.4.14/arch/mn10300/include/asm/ |
D | elf.h | 78 _ur->e1 = 0; _ur->e0 = 0; _ur->e7 = 0; _ur->e6 = 0; \ 112 pr_reg[9] = regs->e0; \
|
D | gdb-stub.h | 82 u32 e0, e1, e2, e3, e4, e5, e6, e7; member
|
/linux-4.4.14/drivers/gpu/drm/msm/mdp/ |
D | mdp_format.c | 74 #define FMT(name, a, r, g, b, e0, e1, e2, e3, alpha, tight, c, cnt, fp, cs, yuv) { \ argument 80 .unpack = { e0, e1, e2, e3 }, \
|
/linux-4.4.14/arch/mn10300/include/uapi/asm/ |
D | sigcontext.h | 29 unsigned long e0; member
|
D | ptrace.h | 57 unsigned long e0; member
|
/linux-4.4.14/arch/powerpc/crypto/ |
D | aes-tab-4k.S | 118 .long R(db, e0, e0, 3b), R(64, 32, 32, 56) 129 .long R(9c, 4e, 4e, d2), R(49, a9, a9, e0) 142 .long R(e0, 70, 70, 90), R(7c, 3e, 3e, 42) 184 .long R(49, e0, 69, 29), R(8e, c9, c8, 44) 191 .long R(b1, 64, 77, e0), R(bb, 6b, ae, 84) 230 .long R(3c, 22, e0, 43), R(12, 1b, 17, 1d) 270 .long R(e0, 90, d0, b0), R(33, a7, d8, 15)
|
/linux-4.4.14/arch/h8300/lib/ |
D | mulsi3.S | 23 mov.w e0,r3 ; ( 2 states) a * d
|
D | libgcc.h | 44 #define A0E e0
|
/linux-4.4.14/Documentation/w1/slaves/ |
D | w1_ds2423 | 39 00 02 00 00 00 00 00 00 00 e0 1f 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff … 45 00 02 00 00 22 00 00 00 00 e0 1f 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff ff 00 00 ff …
|
/linux-4.4.14/arch/x86/crypto/sha-mb/ |
D | sha1_x8_avx2.S | 76 # r4 = {e7 e6 e5 e4 e3 e2 e1 e0} 82 # r0 = {h0 g0 f0 e0 d0 c0 b0 a0} 105 vshufps $0x44, \r5, \r4, \r2 # r2 = {f5 f4 e5 e4 f1 f0 e1 e0} 112 vshufps $0x88, \t1, \r2, \t1 # t1 = {h4 g4 f4 e4 h0 g0 f0 e0}
|
/linux-4.4.14/arch/s390/include/asm/ |
D | etr.h | 10 unsigned int e0 : 1; /* port 0 stepping control */ member
|
/linux-4.4.14/arch/mn10300/kernel/ |
D | head.S | 191 mov 0xed00e0ed,e0 228 mov 0xfd00e0ed,e0
|
D | kgdb.c | 51 gdb_regs[GDB_FR_E0] = regs->e0; in pt_regs_to_gdb_regs() 103 regs->e0 = gdb_regs[GDB_FR_E0]; in gdb_regs_to_pt_regs()
|
D | signal.c | 51 COPY(e0); COPY(e1); COPY(e2); COPY(e3); in restore_sigcontext() 166 COPY(e0); COPY(e1); COPY(e2); COPY(e3); in setup_sigcontext()
|
D | asm-offsets.c | 40 OFFSET(REG_E0, pt_regs, e0); in foo()
|
D | gdb-stub.c | 1398 ptr = mem2hex(®s->e0, ptr, 4, 0); /* 15 */ in gdbstub() 1448 ptr = hex2mem(ptr, ®s->e0, 4, 0); /* 15 */ in gdbstub() 1722 regs->e0, regs->e1, regs->e2, regs->e3); in debugger_intercept()
|
D | traps.c | 312 regs->e0, regs->e1, regs->e2, regs->e3); in show_registers_only()
|
/linux-4.4.14/arch/powerpc/boot/dts/fsl/ |
D | qoriq-rmu-0.dtsi | 63 port-write-unit@4e0 {
|
D | pq3-rmu-0.dtsi | 63 port-write-unit@4e0 {
|
D | p4080si-post.dtsi | 439 mux7: mux7@e0 {
|
/linux-4.4.14/Documentation/aoe/ |
D | aoe.txt | 63 ... so that "e0.2" is the third blade from the left (slot 2) in the 65 partition on that disk would be "e0.2p1".
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | bcm63138.dtsi | 118 pmb1: reset-controller@4800e0 {
|
/linux-4.4.14/arch/arm64/boot/dts/cavium/ |
D | thunder-88xx.dtsi | 394 uaa0: serial@87e0,24000000 { 402 uaa1: serial@87e0,25000000 {
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | pq2fads.dts | 197 local-mac-address = [00 e0 0c 00 79 01];
|
D | mpc8641_hpcn.dts | 381 port-write-unit@4e0 {
|
/linux-4.4.14/Documentation/devicetree/bindings/powerpc/fsl/ |
D | srio-rmu.txt | 158 port-write-unit@4e0 {
|
/linux-4.4.14/Documentation/dvb/ |
D | ci.txt | 159 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.4.14/drivers/tty/vt/ |
D | cp437.uni | 158 0x85 U+00e0
|
/linux-4.4.14/Documentation/networking/ |
D | filter.txt | 482 [ 3389.935850] JIT code: 00000020: e8 1d 94 ff e0 3d 00 08 00 00 75 16 be 17 00 00 483 [ 3389.935851] JIT code: 00000030: 00 e8 28 94 ff e0 83 f8 01 75 07 b8 ff ff 00 00 536 e8 1d 94 ff e0 544 e8 28 94 ff e0
|
D | openvswitch.txt | 85 in_port(1), eth(src=e0:91:f5:21:d0:b2, dst=00:02:e3:0f:80:a4),
|
D | arcnet-hardware.txt | 1062 010 2e0-2ef 1067 111 3e0-3ef
|
/linux-4.4.14/Documentation/usb/ |
D | proc_usb_info.txt | 320 C:* #Ifs= 1 Cfg#= 1 Atr=e0 MxPwr=100mA
|
D | gadget-testing.txt | 197 00000000 05 01 09 06 a1 01 05 07 19 e0 29 e7 15 00 25 01 |..........)...%.|
|
/linux-4.4.14/tools/perf/util/intel-pt-decoder/ |
D | x86-opcode-map.txt | 279 e0: LOOPNE/LOOPNZ Jb (f64) 573 e0: pavgb Pq,Qq | vpavgb Vx,Hx,Wx (66),(v1)
|
/linux-4.4.14/arch/x86/lib/ |
D | x86-opcode-map.txt | 279 e0: LOOPNE/LOOPNZ Jb (f64) 573 e0: pavgb Pq,Qq | vpavgb Vx,Hx,Wx (66),(v1)
|
/linux-4.4.14/arch/m68k/ifpsp060/ |
D | itest.sa | 924 dc.l $000015e0,$52aeff78,$60040000,$00024cfb 988 dc.l $000011e0,$52aeff78,$4cfb3fff,$01700000
|
D | pfpsp.sa | 127 dc.l $000007e0,$201f3d7b,$0222ff6e,$f22ed0c0
|
D | fplsp.sa | 1247 dc.l $f0518db8,$a9709fb9,$52dd3fff,$000099e0
|
/linux-4.4.14/Documentation/s390/ |
D | Debugging390.txt | 636 4003a8: 58 e0 d0 00 l %r14,0(%r13) # load relative address of test from 711 800005e0: eb bf f0 f8 00 04 lmg %r11,%r15,248(%r15)
|
/linux-4.4.14/drivers/staging/rdma/hfi1/ |
D | chip.c | 192 e0, e0val, \ argument 209 ((u64)(e0val) << DCC_CFG_SC_VL_TABLE_##range##_ENTRY##e0##_SHIFT) | \
|