Home
last modified time | relevance | path

Searched refs:x12 (Results 1 – 25 of 130) sorted by relevance

123456

/f-stack/freebsd/crypto/openssl/aarch64/
H A Dpoly1305-armv8.S54 csel x12,x12,x7,eq
98 adds x12,x12,x10
171 adds x12,x12,x10
274 rev x12,x12
320 rev x12,x12
406 rev x12,x12
423 add x12,x3,x12,lsr#40
442 rev x12,x12
459 add x12,x3,x12,lsr#40
503 rev x12,x12
[all …]
H A Darmv8-mont.S62 adds x12,x16,x13
67 adds x12,x12,x6
79 adds x12,x16,x13
83 adds x12,x12,x6
134 adds x12,x12,x6
154 adds x12,x12,x6
302 mul x15,x12,x6
331 mul x16,x12,x7
935 sbcs x12,x25,x12
951 csel x12,x25,x12,lo
[all …]
H A Dsha512-armv8.S325 rev x12,x12 // 9
504 add x3,x3,x12
558 eor x12,x12,x27,ror#34
578 ror x12,x7,#1
585 eor x12,x12,x7,ror#8
593 eor x12,x12,x7,lsr#7 // sigma0(X[i+1])
623 eor x12,x12,x5,ror#61
628 eor x12,x12,x5,lsr#6 // sigma1(X[i+14])
784 add x12,x12,x5
788 add x12,x12,x2
[all …]
H A Dkeccak1600-armv8.S53 eor x28,x28,x12
82 eor x12,x12,x9
108 ror x2,x12,#64-43
115 ror x12,x13,#64-25
167 bic x26,x12,x11
168 bic x27,x13,x12
176 eor x12,x12,x26
228 ldp x12,x13,[x26,#16*6]
245 stp x12,x13,[x26,#16*6]
291 ldp x12,x13,[x26,#16*6]
[all …]
H A Dghashv8-armx.S151 mov x12,#16 //x12 is used as post-
163 csel x12,xzr,x12,eq //is it time to zero x12?
173 ld1 {v17.2d},[x2],x12 //load [rotated] I[1]
189 csel x12,xzr,x12,lo //is it time to zero x12?
196 ld1 {v16.2d},[x2],x12 //load [rotated] I[i+2]
199 csel x12,xzr,x12,eq //is it time to zero x12?
205 ld1 {v17.2d},[x2],x12 //load [rotated] I[i+3]
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_core/hsalsa20/ref2/
H A Dcore_hsalsa20_ref2.c23 x9, x10, x11, x12, x13, x14, x15; in crypto_core_hsalsa20() local
42 x12 = LOAD32_LE(k + 20); in crypto_core_hsalsa20()
51 x4 ^= ROTL32(x0 + x12, 7); in crypto_core_hsalsa20()
53 x12 ^= ROTL32(x8 + x4, 13); in crypto_core_hsalsa20()
54 x0 ^= ROTL32(x12 + x8, 18); in crypto_core_hsalsa20()
79 x12 ^= ROTL32(x15 + x14, 7); in crypto_core_hsalsa20()
80 x13 ^= ROTL32(x12 + x15, 9); in crypto_core_hsalsa20()
81 x14 ^= ROTL32(x13 + x12, 13); in crypto_core_hsalsa20()
/f-stack/freebsd/contrib/device-tree/Bindings/net/
H A Dmdio-mux-gpio.txt43 <3 0x12 0 0x4105>,
52 <3 0x12 0 0x4105>,
61 <3 0x12 0 0x4105>,
70 <3 0x12 0 0x4105>,
86 <3 0x12 0 0x4105>,
95 <3 0x12 0 0x4105>,
104 <3 0x12 0 0x4105>,
113 <3 0x12 0 0x4105>,
H A Dmdio-mux.txt53 <3 0x12 0 0x4105>,
62 <3 0x12 0 0x4105>,
71 <3 0x12 0 0x4105>,
80 <3 0x12 0 0x4105>,
96 <3 0x12 0 0x4105>,
105 <3 0x12 0 0x4105>,
114 <3 0x12 0 0x4105>,
123 <3 0x12 0 0x4105>,
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_core/salsa/ref/
H A Dcore_salsa_ref.c15 uint32_t x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, in crypto_core_salsa() local
36 j12 = x12 = LOAD32_LE(k + 20); in crypto_core_salsa()
46 x4 ^= ROTL32(x0 + x12, 7); in crypto_core_salsa()
48 x12 ^= ROTL32(x8 + x4, 13); in crypto_core_salsa()
49 x0 ^= ROTL32(x12 + x8, 18); in crypto_core_salsa()
74 x12 ^= ROTL32(x15 + x14, 7); in crypto_core_salsa()
75 x13 ^= ROTL32(x12 + x15, 9); in crypto_core_salsa()
76 x14 ^= ROTL32(x13 + x12, 13); in crypto_core_salsa()
91 STORE32_LE(out + 48, x12 + j12); in crypto_core_salsa()
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_core/hchacha20/
H A Dcore_hchacha20.c22 uint32_t x8, x9, x10, x11, x12, x13, x14, x15; in crypto_core_hchacha20() local
43 x12 = LOAD32_LE(in + 0); in crypto_core_hchacha20()
49 QUARTERROUND(x0, x4, x8, x12); in crypto_core_hchacha20()
54 QUARTERROUND(x1, x6, x11, x12); in crypto_core_hchacha20()
63 STORE32_LE(out + 16, x12); in crypto_core_hchacha20()
/f-stack/freebsd/arm64/arm64/
H A Dlocore.S534 mov x12, #L0_TABLE
571 mov x12, #L1_TABLE
575 orr x13, x12, x9, lsl #PAGE_SHIFT
601 orr x12, x7, #L1_BLOCK
602 orr x12, x12, #(ATTR_DEFAULT)
608 1: orr x13, x12, x9, lsl #L1_SHIFT
639 lsl x12, x7, #2
640 orr x12, x12, #L2_BLOCK
641 orr x12, x12, #(ATTR_DEFAULT)
642 orr x12, x12, #(ATTR_S1_UXN)
[all …]
H A Dswtch.S95 ldp x12, x13, [x4, #PCB_REGS + 12 * 8]
126 stp x12, x13, [x4, #PCB_REGS + 12 * 8]
192 ldp x12, x13, [x4, #PCB_REGS + 12 * 8]
222 ldp x12, x13, [sp, #TF_X + 12 * 8]
264 stp x12, x13, [x0, #PCB_REGS + 12 * 8]
H A Dexception.S51 stp x12, x13, [sp, #(TF_X + 12 * 8)]
60 mrs x12, esr_el1
117 ldp x12, x13, [sp, #(TF_X + 12 * 8)]
/f-stack/freebsd/contrib/device-tree/src/mips/cavium-octeon/
H A Docteon_3xxx.dts44 <3 0x12 0 0x4105>,
52 <3 0x12 0 0x4105>,
60 <3 0x12 0 0x4105>,
68 <3 0x12 0 0x4105>,
77 <3 0x12 0 0x4105>,
85 <3 0x12 0 0x4105>,
93 <3 0x12 0 0x4105>,
101 <3 0x12 0 0x4105>,
117 <3 0x12 0 0x4105>,
127 <3 0x12 0 0x4105>,
[all …]
H A Docteon_68xx.dts79 <3 0x12 0 0x4105>,
88 <3 0x12 0 0x4105>,
97 <3 0x12 0 0x4105>,
106 <3 0x12 0 0x4105>,
123 <3 0x12 0 0x4105>,
132 <3 0x12 0 0x4105>,
141 <3 0x12 0 0x4105>,
150 <3 0x12 0 0x4105>,
167 <3 0x12 0 0x4105>,
176 <3 0x12 0 0x4105>,
[all …]
/f-stack/freebsd/crypto/chacha20/
H A Dchacha.c116 u32 x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15; in chacha_encrypt_bytes() local
162 x12 = j12; in chacha_encrypt_bytes()
167 QUARTERROUND( x0, x4, x8,x12) in chacha_encrypt_bytes()
172 QUARTERROUND( x1, x6,x11,x12) in chacha_encrypt_bytes()
188 x12 = PLUS(x12,j12); in chacha_encrypt_bytes()
206 x12 = XOR(x12,U8TO32_LITTLE(m + 48)); in chacha_encrypt_bytes()
239 U32TO8_LITTLE(c + 48,x12); in chacha_encrypt_bytes()
/f-stack/freebsd/contrib/device-tree/src/powerpc/fsl/
H A Dmpc8641_hpcn_36b.dts182 /* IDSEL 0x12 func 0 - PCI slot 2 */
188 /* IDSEL 0x12 func 1 - PCI slot 2 */
194 /* IDSEL 0x12 func 2 - PCI slot 2 */
200 /* IDSEL 0x12 func 3 - PCI slot 2 */
206 /* IDSEL 0x12 func 4 - PCI slot 2 */
212 /* IDSEL 0x12 func 5 - PCI slot 2 */
218 /* IDSEL 0x12 func 6 - PCI slot 2 */
224 /* IDSEL 0x12 func 7 - PCI slot 2 */
H A Dmpc8641_hpcn.dts215 /* IDSEL 0x12 func 0 - PCI slot 2 */
221 /* IDSEL 0x12 func 1 - PCI slot 2 */
227 /* IDSEL 0x12 func 2 - PCI slot 2 */
233 /* IDSEL 0x12 func 3 - PCI slot 2 */
239 /* IDSEL 0x12 func 4 - PCI slot 2 */
245 /* IDSEL 0x12 func 5 - PCI slot 2 */
251 /* IDSEL 0x12 func 6 - PCI slot 2 */
257 /* IDSEL 0x12 func 7 - PCI slot 2 */
H A Dmpc8572ds.dtsi297 /* IDSEL 0x12 func 0 - PCI slot 2 */
303 /* IDSEL 0x12 func 1 - PCI slot 2 */
309 /* IDSEL 0x12 func 2 - PCI slot 2 */
315 /* IDSEL 0x12 func 3 - PCI slot 2 */
321 /* IDSEL 0x12 func 4 - PCI slot 2 */
327 /* IDSEL 0x12 func 5 - PCI slot 2 */
333 /* IDSEL 0x12 func 6 - PCI slot 2 */
339 /* IDSEL 0x12 func 7 - PCI slot 2 */
/f-stack/freebsd/contrib/libsodium/src/libsodium/crypto_stream/chacha20/ref/
H A Dchacha20_ref.c84 uint32_t x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, in chacha20_encrypt_bytes() local
137 x12 = j12; in chacha20_encrypt_bytes()
142 QUARTERROUND(x0, x4, x8, x12) in chacha20_encrypt_bytes()
147 QUARTERROUND(x1, x6, x11, x12) in chacha20_encrypt_bytes()
163 x12 = PLUS(x12, j12); in chacha20_encrypt_bytes()
180 x12 = XOR(x12, LOAD32_LE(m + 48)); in chacha20_encrypt_bytes()
204 STORE32_LE(c + 48, x12); in chacha20_encrypt_bytes()
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Drk3288-veyron-jerry.dts91 0x0e 0x09 0x0f 0x09 0x10 0x05 0x11 0x05 0x12 0x05 0x13 0x05 0x14 0x05 0x15 0x05
95 0x0f 0x09 0x10 0x05 0x11 0x05 0x12 0x05 0x13 0x05 0x14 0x05 0x15 0x05 0x16 0x05
99 0x10 0x05 0x11 0x05 0x12 0x05 0x13 0x05 0x14 0x05 0x15 0x05 0x16 0x05 0x17 0x05
103 0x11 0x05 0x12 0x05 0x13 0x05 0x14 0x05 0x15 0x05 0x16 0x05 0x17 0x05 0x18 0x05
107 0x12 0x05 0x13 0x05 0x14 0x05 0x15 0x05 0x16 0x05 0x17 0x05 0x18 0x05 0x19 0x05
110 0x0b 0x0a 0x0c 0x0a 0x0d 0x09 0x0e 0x09 0x0f 0x09 0x10 0x05 0x11 0x05 0x12 0x05
114 0x0c 0x0a 0x0d 0x09 0x0e 0x09 0x0f 0x09 0x10 0x05 0x11 0x05 0x12 0x05 0x13 0x05
118 0x0d 0x09 0x0e 0x09 0x0f 0x09 0x10 0x05 0x11 0x05 0x12 0x05 0x13 0x05 0x14 0x05
125 0x0e 0x09 0x0f 0x09 0x10 0x05 0x11 0x05 0x12 0x05 0x13 0x05 0x14 0x05 0x15 0x05
129 0x0f 0x09 0x10 0x05 0x11 0x05 0x12 0x05 0x13 0x05 0x14 0x05 0x15 0x05 0x16 0x05
[all …]
/f-stack/freebsd/contrib/device-tree/Bindings/sound/
H A Dak4642.txt22 reg = <0x12>;
31 reg = <0x12>;
/f-stack/freebsd/contrib/device-tree/src/arm64/freescale/
H A Dfsl-ls2080a.dtsi131 0x12 0x00000000 0x0 0x00002000>; /* configuration space */
133 ranges = <0x81000000 0x0 0x00000000 0x12 0x00010000 0x0 0x00010000 /* downstream I/O */
134 0x82000000 0x0 0x40000000 0x12 0x40000000 0x0 0x40000000>; /* non-prefetchable memory */
/f-stack/freebsd/contrib/device-tree/Bindings/goldfish/
H A Dpipe.txt16 interrupts = <0x12>;
/f-stack/freebsd/contrib/device-tree/Bindings/iio/magnetometer/
H A Dbmc150_magn.txt22 reg = <0x12>;

123456