Home
last modified time | relevance | path

Searched +full:6 +full:e (Results 1 – 25 of 1497) sorted by relevance

12345678910>>...60

/kernel/linux/linux-5.10/arch/alpha/lib/
Dev6-memchr.S26 * E - either cluster
50 and $17, 0xff, $17 # E : L L U U : 00000000000000ch
53 cmpult $18, 9, $4 # E : small (< 1 quad) string?
54 or $2, $17, $17 # E : 000000000000chch
55 lda $3, -1($31) # E : U L L U
58 addq $16, $5, $5 # E : Max search address
59 or $2, $17, $17 # E : 00000000chchchch
62 or $2, $17, $17 # E : chchchchchchchch
65 ldq_u $6, -1($5) # L : L U U L : eight or less bytes to search Latency=3
67 extqh $6, $16, $6 # U : 2 cycle stall for $6
[all …]
Dev6-memset.S15 * E - either cluster
53 and $17,255,$1 # E : 00000000000000ch
55 bis $16,$16,$0 # E : return value
58 addq $18,$16,$6 # E : max address to write to
59 bis $1,$2,$17 # E : 000000000000chch
63 or $3,$4,$3 # E : 00000000chch0000
65 xor $16,$6,$1 # E : will complete write be within one quadword?
66 inswl $17,6,$2 # U : chch000000000000
68 or $17,$3,$17 # E : 00000000chchchch
69 or $2,$5,$2 # E : chchchch00000000
[all …]
Dev6-csum_ipv6_magic.S17 * E - either cluster
36 * (we can't hide the 3-cycle latency of the unpkbw in the 6-instruction sequence)
69 and $16,7,$6 # E : src misalignment
74 extql $0,$6,$0 # U :
75 extqh $1,$6,$22 # U :
79 cmoveq $6,$31,$22 # E : src aligned?
82 addl $19,$7,$19 # E : U L U L : <sign bits>bbaabb00
84 or $0,$22,$0 # E : 1st src word complete
85 extql $1,$6,$1 # U :
86 or $18,$4,$18 # E : 000000CCDDAABBCC
[all …]
/kernel/linux/linux-4.19/arch/alpha/lib/
Dev6-memchr.S26 * E - either cluster
50 and $17, 0xff, $17 # E : L L U U : 00000000000000ch
53 cmpult $18, 9, $4 # E : small (< 1 quad) string?
54 or $2, $17, $17 # E : 000000000000chch
55 lda $3, -1($31) # E : U L L U
58 addq $16, $5, $5 # E : Max search address
59 or $2, $17, $17 # E : 00000000chchchch
62 or $2, $17, $17 # E : chchchchchchchch
65 ldq_u $6, -1($5) # L : L U U L : eight or less bytes to search Latency=3
67 extqh $6, $16, $6 # U : 2 cycle stall for $6
[all …]
Dev6-memset.S15 * E - either cluster
53 and $17,255,$1 # E : 00000000000000ch
55 bis $16,$16,$0 # E : return value
58 addq $18,$16,$6 # E : max address to write to
59 bis $1,$2,$17 # E : 000000000000chch
63 or $3,$4,$3 # E : 00000000chch0000
65 xor $16,$6,$1 # E : will complete write be within one quadword?
66 inswl $17,6,$2 # U : chch000000000000
68 or $17,$3,$17 # E : 00000000chchchch
69 or $2,$5,$2 # E : chchchch00000000
[all …]
Dev6-csum_ipv6_magic.S17 * E - either cluster
36 * (we can't hide the 3-cycle latency of the unpkbw in the 6-instruction sequence)
69 and $16,7,$6 # E : src misalignment
74 extql $0,$6,$0 # U :
75 extqh $1,$6,$22 # U :
79 cmoveq $6,$31,$22 # E : src aligned?
82 addl $19,$7,$19 # E : U L U L : <sign bits>bbaabb00
84 or $0,$22,$0 # E : 1st src word complete
85 extql $1,$6,$1 # U :
86 or $18,$4,$18 # E : 000000CCDDAABBCC
[all …]
/kernel/linux/linux-5.10/arch/x86/crypto/
Dsha256-avx-asm.S104 e = %edx define
145 f = e
146 e = d define
157 mov e, y0 # y0 = e
158 MY_ROR (25-11), y0 # y0 = e >> (25-11)
162 xor e, y0 # y0 = e ^ (e >> (25-11))
164 MY_ROR (11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6))
168 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6))
169 and e, y2 # y2 = (f^g)&e
174 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25)
[all …]
Dsha256-ssse3-asm.S97 e = %edx define
139 f = e
140 e = d define
151 mov e, y0 # y0 = e
152 ror $(25-11), y0 # y0 = e >> (25-11)
156 xor e, y0 # y0 = e ^ (e >> (25-11))
158 ror $(11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6))
163 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6))
164 and e, y2 # y2 = (f^g)&e
169 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25)
[all …]
Dsha256-avx2-asm.S97 e = %edx # clobbers NUM_BLKS define
147 f = e
148 e = d define
159 rorx $25, e, y0 # y0 = e >> 25 # S1A
160 rorx $11, e, y1 # y1 = e >> 11 # S1B
168 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1
170 vpaddd X0, XTMP0, XTMP0 # XTMP0 = W[-7] + W[-16]# y1 = (e >> 6)# S1
171 rorx $6, e, y1 # y1 = (e >> 6) # S1
173 and e, y2 # y2 = (f^g)&e # CH
174 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1
[all …]
/kernel/linux/linux-4.19/arch/x86/crypto/
Dsha256-avx-asm.S105 e = %edx define
146 f = e
147 e = d define
158 mov e, y0 # y0 = e
159 MY_ROR (25-11), y0 # y0 = e >> (25-11)
163 xor e, y0 # y0 = e ^ (e >> (25-11))
165 MY_ROR (11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6))
169 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6))
170 and e, y2 # y2 = (f^g)&e
175 MY_ROR 6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25)
[all …]
Dsha256-ssse3-asm.S97 e = %edx define
139 f = e
140 e = d define
151 mov e, y0 # y0 = e
152 ror $(25-11), y0 # y0 = e >> (25-11)
156 xor e, y0 # y0 = e ^ (e >> (25-11))
158 ror $(11-6), y0 # y0 = (e >> (11-6)) ^ (e >> (25-6))
163 xor e, y0 # y0 = e ^ (e >> (11-6)) ^ (e >> (25-6))
164 and e, y2 # y2 = (f^g)&e
169 ror $6, y0 # y0 = S1 = (e>>6) & (e>>11) ^ (e>>25)
[all …]
Dsha256-avx2-asm.S98 e = %edx # clobbers NUM_BLKS define
148 f = e
149 e = d define
160 rorx $25, e, y0 # y0 = e >> 25 # S1A
161 rorx $11, e, y1 # y1 = e >> 11 # S1B
169 xor y1, y0 # y0 = (e>>25) ^ (e>>11) # S1
171 vpaddd X0, XTMP0, XTMP0 # XTMP0 = W[-7] + W[-16]# y1 = (e >> 6)# S1
172 rorx $6, e, y1 # y1 = (e >> 6) # S1
174 and e, y2 # y2 = (f^g)&e # CH
175 xor y1, y0 # y0 = (e>>25) ^ (e>>11) ^ (e>>6) # S1
[all …]
/kernel/linux/linux-4.19/arch/powerpc/crypto/
Daes-tab-4k.S19 * instructions. E.g. evldw, evlwwsplat, ...
24 * This is a quite good tradeoff for low power devices (e.g. routers) without
40 .long R(ff, f2, f2, 0d), R(d6, 6b, 6b, bd)
41 .long R(de, 6f, 6f, b1), R(91, c5, c5, 54)
49 .long R(8e, 47, 47, c9), R(fb, f0, f0, 0b)
55 .long R(3d, 93, 93, ae), R(4c, 26, 26, 6a)
56 .long R(6c, 36, 36, 5a), R(7e, 3f, 3f, 41)
63 .long R(46, 23, 23, 65), R(9d, c3, c3, 5e)
66 .long R(0e, 07, 07, 09), R(24, 12, 12, 36)
68 .long R(cd, eb, eb, 26), R(4e, 27, 27, 69)
[all …]
/kernel/linux/linux-5.10/arch/powerpc/crypto/
Daes-tab-4k.S14 * instructions. E.g. evldw, evlwwsplat, ...
19 * This is a quite good tradeoff for low power devices (e.g. routers) without
35 .long R(ff, f2, f2, 0d), R(d6, 6b, 6b, bd)
36 .long R(de, 6f, 6f, b1), R(91, c5, c5, 54)
44 .long R(8e, 47, 47, c9), R(fb, f0, f0, 0b)
50 .long R(3d, 93, 93, ae), R(4c, 26, 26, 6a)
51 .long R(6c, 36, 36, 5a), R(7e, 3f, 3f, 41)
58 .long R(46, 23, 23, 65), R(9d, c3, c3, 5e)
61 .long R(0e, 07, 07, 09), R(24, 12, 12, 36)
63 .long R(cd, eb, eb, 26), R(4e, 27, 27, 69)
[all …]
/kernel/linux/linux-4.19/Documentation/ABI/stable/
Dsysfs-class-tpm97 PCR-00: 3A 3F 78 0F 11 A4 B4 99 69 FC AA 80 CD 6E 39 57 C3 3B 22 75
98 PCR-01: 3A 3F 78 0F 11 A4 B4 99 69 FC AA 80 CD 6E 39 57 C3 3B 22 75
99 PCR-02: 3A 3F 78 0F 11 A4 B4 99 69 FC AA 80 CD 6E 39 57 C3 3B 22 75
100 PCR-03: 3A 3F 78 0F 11 A4 B4 99 69 FC AA 80 CD 6E 39 57 C3 3B 22 75
101 PCR-04: 3A 3F 78 0F 11 A4 B4 99 69 FC AA 80 CD 6E 39 57 C3 3B 22 75
130 B4 76 41 82 C9 20 2C 10 18 40 BC 8B E5 44 4C 6C
132 1E E4 81 84 CE B2 F2 45 1C F0 85 99 61 02 4D EB
133 86 C4 F7 F3 29 60 52 93 6B B2 E5 AB 8B A9 09 E3
134 D7 0E 7D CA 41 BF 43 07 65 86 3C 8C 13 7A D0 8B
135 82 5E 96 0B F8 1F 5F 34 06 DA A2 52 C1 A9 D5 26
[all …]
/kernel/linux/linux-4.19/tools/testing/selftests/net/
Dfib_tests.sh49 set -e
56 $IP -6 address add 2001:db8:1::1/64 dev dummy0
57 set +e
72 addr=$($IP -6 -br addr show dev ${dev} | \
99 $IP -6 route get fibmatch 2001:db8:1::2 &> /dev/null
102 set -e
104 set +e
109 $IP -6 route get fibmatch 2001:db8:1::2 &> /dev/null
123 set -e
127 $IP -6 address add 2001:db8:2::1/64 dev dummy1
[all …]
/kernel/linux/linux-5.10/Documentation/ABI/stable/
Dsysfs-class-tpm97 PCR-00: 3A 3F 78 0F 11 A4 B4 99 69 FC AA 80 CD 6E 39 57 C3 3B 22 75
98 PCR-01: 3A 3F 78 0F 11 A4 B4 99 69 FC AA 80 CD 6E 39 57 C3 3B 22 75
99 PCR-02: 3A 3F 78 0F 11 A4 B4 99 69 FC AA 80 CD 6E 39 57 C3 3B 22 75
100 PCR-03: 3A 3F 78 0F 11 A4 B4 99 69 FC AA 80 CD 6E 39 57 C3 3B 22 75
101 PCR-04: 3A 3F 78 0F 11 A4 B4 99 69 FC AA 80 CD 6E 39 57 C3 3B 22 75
130 B4 76 41 82 C9 20 2C 10 18 40 BC 8B E5 44 4C 6C
132 1E E4 81 84 CE B2 F2 45 1C F0 85 99 61 02 4D EB
133 86 C4 F7 F3 29 60 52 93 6B B2 E5 AB 8B A9 09 E3
134 D7 0E 7D CA 41 BF 43 07 65 86 3C 8C 13 7A D0 8B
135 82 5E 96 0B F8 1F 5F 34 06 DA A2 52 C1 A9 D5 26
[all …]
/kernel/linux/linux-5.10/tools/perf/pmu-events/arch/x86/
Dmapfile.csv2 GenuineIntel-6-56,v5,broadwellde,core
3 GenuineIntel-6-3D,v17,broadwell,core
4 GenuineIntel-6-47,v17,broadwell,core
5 GenuineIntel-6-4F,v10,broadwellx,core
6 GenuineIntel-6-1C,v4,bonnell,core
7 GenuineIntel-6-26,v4,bonnell,core
8 GenuineIntel-6-27,v4,bonnell,core
9 GenuineIntel-6-36,v4,bonnell,core
10 GenuineIntel-6-35,v4,bonnell,core
11 GenuineIntel-6-5C,v8,goldmont,core
[all …]
/kernel/linux/linux-5.10/tools/testing/selftests/net/
Dfib_tests.sh53 set -e
63 $IP -6 address add 2001:db8:1::1/64 dev dummy0
64 set +e
80 addr=$($IP -6 -br addr show dev ${dev} | \
107 $IP -6 route get fibmatch 2001:db8:1::2 &> /dev/null
110 set -e
112 set +e
117 $IP -6 route get fibmatch 2001:db8:1::2 &> /dev/null
131 set -e
135 $IP -6 address add 2001:db8:2::1/64 dev dummy1
[all …]
/kernel/linux/linux-5.10/arch/m68k/fpsp040/
Dtbldo.S55 .long smovcr |$00-6 fmovecr all
64 .long serror |$01-6 fint ERROR
73 .long serror |$02-6 fsinh ERROR
82 .long serror |$03-6 fintrz ERROR
91 .long serror |$04-6 ERROR - illegal extension
100 .long serror |$05-6 ERROR - illegal extension
109 .long serror |$06-6 flognp1 ERROR
118 .long serror |$07-6 ERROR - illegal extension
127 .long serror |$08-6 fetoxm1 ERROR
136 .long serror |$09-6 ftanh ERROR
[all …]
/kernel/linux/linux-4.19/arch/m68k/fpsp040/
Dtbldo.S55 .long smovcr |$00-6 fmovecr all
64 .long serror |$01-6 fint ERROR
73 .long serror |$02-6 fsinh ERROR
82 .long serror |$03-6 fintrz ERROR
91 .long serror |$04-6 ERROR - illegal extension
100 .long serror |$05-6 ERROR - illegal extension
109 .long serror |$06-6 flognp1 ERROR
118 .long serror |$07-6 ERROR - illegal extension
127 .long serror |$08-6 fetoxm1 ERROR
136 .long serror |$09-6 ftanh ERROR
[all …]
/kernel/linux/linux-4.19/tools/perf/pmu-events/arch/x86/
Dmapfile.csv2 GenuineIntel-6-56,v5,broadwellde,core
3 GenuineIntel-6-3D,v17,broadwell,core
4 GenuineIntel-6-47,v17,broadwell,core
5 GenuineIntel-6-4F,v10,broadwellx,core
6 GenuineIntel-6-1C,v4,bonnell,core
7 GenuineIntel-6-26,v4,bonnell,core
8 GenuineIntel-6-27,v4,bonnell,core
9 GenuineIntel-6-36,v4,bonnell,core
10 GenuineIntel-6-35,v4,bonnell,core
11 GenuineIntel-6-5C,v8,goldmont,core
[all …]
/kernel/linux/linux-4.19/arch/arm64/crypto/
Dsha256-core.S_shipped71 .align 6
100 add x2,x1,x2,lsl#6 // end of input
101 ldp w26,w27,[x0,#6*4]
113 ror w16,w24,#6
119 orr w17,w17,w19 // Ch(e,f,g)
121 eor w16,w16,w6,ror#11 // Sigma1(e)
123 add w27,w27,w17 // h+=Ch(e,f,g)
125 add w27,w27,w16 // h+=Sigma1(e)
138 ror w16,w23,#6
144 orr w17,w17,w28 // Ch(e,f,g)
[all …]
/kernel/linux/linux-5.10/arch/arm64/crypto/
Dsha256-core.S_shipped71 .align 6
100 add x2,x1,x2,lsl#6 // end of input
101 ldp w26,w27,[x0,#6*4]
113 ror w16,w24,#6
119 orr w17,w17,w19 // Ch(e,f,g)
121 eor w16,w16,w6,ror#11 // Sigma1(e)
123 add w27,w27,w17 // h+=Ch(e,f,g)
125 add w27,w27,w16 // h+=Sigma1(e)
138 ror w16,w23,#6
144 orr w17,w17,w28 // Ch(e,f,g)
[all …]
/kernel/linux/linux-5.10/drivers/media/rc/
Dir-rc6-decoder.c13 * RC6-6A-20 (no toggle bit)
14 * RC6-6A-24 (no toggle bit)
15 * RC6-6A-32 (MCE version with toggle bit in body)
23 #define RC6_PREFIX_PULSE (6 * RC6_UNIT)
29 #define RC6_SUFFIX_SPACE (6 * RC6_UNIT)
33 #define RC6_6A_LCC_MASK 0xffff0000 /* RC6-6A-32 long customer code mask */
64 case 6: in rc6_mode()
254 dev_dbg(&dev->dev, "RC6(6A) unsupported length\n"); in ir_rc6_decode()
258 dev_dbg(&dev->dev, "RC6(6A) proto 0x%04x, scancode 0x%08x (toggle: %u)\n", in ir_rc6_decode()
313 struct ir_raw_event *e = events; in ir_rc6_encode() local
[all …]

12345678910>>...60