Searched refs:q0 (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-current/contrib/cortex-strings/src/aarch64/
H A Dmemset.S114 str q0, [dstin]
116 str q0, [dstend, -16]
118 str q0, [dstin, 16]
119 str q0, [dstend, -32]
126 str q0, [dstin, 16]
127 stp q0, q0, [dstin, 32]
128 stp q0, q0, [dstend, -32]
136 str q0, [dsti
[all...]
/freebsd-current/contrib/arm-optimized-routines/string/aarch64/
H A Dmemset.S55 str q0, [dstin]
57 str q0, [dstend, -16]
59 str q0, [dstin, 16]
60 str q0, [dstend, -32]
67 str q0, [dstin, 16]
68 stp q0, q0, [dstin, 32]
69 stp q0, q0, [dstend, -32]
76 str q0, [dsti
[all...]
/freebsd-current/sys/crypto/openssl/arm/
H A Dghashv8-armx.S39 INST(0xa8,0x0e,0xa8,0xf2) @ pmull q0,q12,q12
44 vext.8 q9,q0,q2,#8 @ Karatsuba post-processing
45 veor q10,q0,q2
48 INST(0x26,0x4e,0xe0,0xf2) @ pmull q10,q0,q11 @ 1st phase
52 veor q0,q1,q10
54 vext.8 q10,q0,q0,#8 @ 2nd phase
55 INST(0x26,0x0e,0xa0,0xf2) @ pmull q0,q0,q11
57 veor q14,q0,q1
[all...]
H A Darmv4cpuid.S128 vorr q0,q0,q0
147 .byte 0xb0,0xff,0x00,0x03 @ aese.8 q0,q0
149 .byte 0x00,0x03,0xb0,0xf3 @ aese.8 q0,q0
158 .byte 0x00,0xef,0x40,0x0c @ sha1c.32 q0,q0,q0
[all...]
H A Dbsaes-armv7.S101 veor q10, q0, q9 @ xor with round0 key
140 vshr.u64 q11, q0, #1
150 veor q0, q0, q11
165 vshr.u64 q11, q0, #2
175 veor q0, q0, q11
189 vshr.u64 q11, q0, #4
199 veor q0, q0, q1
[all...]
H A Darmv4-gf2m.S182 vmull.p8 q0, d26, d0 @ E = A*B1
188 veor q1, q1, q0 @ L = E + F
192 vmull.p8 q0, d26, d0 @ I = A*B3
199 veor q3, q3, q0 @ N = I + J
209 vmull.p8 q0, d26, d27 @ D = A*B
214 veor q0, q0, q1
215 veor q0, q0, q3
217 vst1.32 {q0}, [r
[all...]
H A Dghash-armv4.S403 vrev64.8 q0,q0
414 veor q3,q0 @ inp^=Xi
419 vmull.p8 q0, d26, d0 @ E = A*B1
425 veor q8, q8, q0 @ L = E + F
429 vmull.p8 q0, d26, d0 @ I = A*B3
436 veor q10, q10, q0 @ N = I + J
446 vmull.p8 q0, d26, d6 @ D = A*B
451 veor q0, q0, q
[all...]
H A Dsha1-armv4-large.S521 vld1.8 {q0,q1},[r1]! @ handles unaligned
525 vrev32.8 q0,q0 @ yes, even on
528 vadd.i32 q8,q0,q14
538 vext.8 q8,q0,q1,#8
549 veor q8,q8,q0
728 veor q0,q0,q8
731 veor q0,q0,q
[all...]
H A Dchacha-armv4.S820 vld1.32 {q0},[r14]! @ load sigma
823 vst1.32 {q0,q1},[sp] @ copy sigma|1/2key
831 vmov q4,q0
833 vmov q8,q0
843 vmov q4,q0
845 vmov q8,q0
867 vadd.i32 q0,q0,q1
873 veor q3,q3,q0
909 vadd.i32 q0,q
[all...]
/freebsd-current/contrib/bearssl/src/symcipher/
H A Daes_ct_dec.c49 uint32_t q0, q1, q2, q3, q4, q5, q6, q7; local
51 q0 = ~q[0];
60 q[6] = q0 ^ q3 ^ q5;
63 q[3] = q5 ^ q0 ^ q2;
65 q[1] = q3 ^ q6 ^ q0;
70 q0 = ~q[0];
79 q[6] = q0 ^ q3 ^ q5;
82 q[3] = q5 ^ q0 ^ q2;
84 q[1] = q3 ^ q6 ^ q0;
123 uint32_t q0, q local
[all...]
H A Daes_ct64_dec.c35 uint64_t q0, q1, q2, q3, q4, q5, q6, q7; local
37 q0 = ~q[0];
46 q[6] = q0 ^ q3 ^ q5;
49 q[3] = q5 ^ q0 ^ q2;
51 q[1] = q3 ^ q6 ^ q0;
56 q0 = ~q[0];
65 q[6] = q0 ^ q3 ^ q5;
68 q[3] = q5 ^ q0 ^ q2;
70 q[1] = q3 ^ q6 ^ q0;
112 uint64_t q0, q local
[all...]
H A Daes_ct_enc.c65 uint32_t q0, q1, q2, q3, q4, q5, q6, q7; local
68 q0 = q[0];
76 r0 = (q0 >> 8) | (q0 << 24);
85 q[0] = q7 ^ r7 ^ r0 ^ rotr16(q0 ^ r0);
86 q[1] = q0 ^ r0 ^ q7 ^ r7 ^ r1 ^ rotr16(q1 ^ r1);
H A Daes_ct64_enc.c68 uint64_t q0, q1, q2, q3, q4, q5, q6, q7; local
71 q0 = q[0];
79 r0 = (q0 >> 16) | (q0 << 48);
88 q[0] = q7 ^ r7 ^ r0 ^ rotr32(q0 ^ r0);
89 q[1] = q0 ^ r0 ^ q7 ^ r7 ^ r1 ^ rotr32(q1 ^ r1);
/freebsd-current/crypto/openssl/crypto/
H A Darmv4cpuid.pl151 vorr q0,q0,q0
170 .byte 0xb0,0xff,0x00,0x03 @ aese.8 q0,q0
172 .byte 0x00,0x03,0xb0,0xf3 @ aese.8 q0,q0
181 .byte 0x00,0xef,0x40,0x0c @ sha1c.32 q0,q0,q0
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dudivmodti4.c29 du_int q1, q0; // Quotient digits local
69 q0 = un21 / vn1;
70 rhat = un21 - q0 * vn1;
72 // q0 has at most error 2. No more than 2 iterations.
73 while (q0 >= b || q0 * vn0 > b * rhat + un0) {
74 q0 = q0 - 1;
80 *r = (un21 * b + un0 - q0 * v) >> s;
81 return q1 * b + q0;
[all...]
/freebsd-current/sys/contrib/libsodium/src/libsodium/include/sodium/private/
H A Dsse2_64_32.h20 sodium__mm_set_epi64x(int64_t q1, int64_t q0) argument
23 x0.as64 = q0; x1.as64 = q1;
/freebsd-current/lib/msun/src/
H A De_jnf.c111 float q0,q1,h,tmp; int32_t k,m; local
113 q0 = w; z = w+h; q1 = w*z - (float)1.0; k=1;
116 tmp = z*q1 - q0;
117 q0 = q1;
H A Dk_rem_pio2.c102 * q0 the corresponding exponent of q[0]. Note that the
103 * exponent for q[i] would be q0-24*i.
292 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
299 /* determine jx,jv,q0, note that 3>q0 */
302 q0 = e0-24*(jv+1);
323 z = scalbn(z,q0); /* actual value of z */
328 if(q0>0) { /* need iq[jz-1] to determine n */
329 i = (iq[jz-1]>>(24-q0)); n += i;
330 iq[jz-1] -= i<<(24-q0);
[all...]
H A De_jn.c153 double q0,q1,h,tmp; int32_t k,m; local
155 q0 = w; z = w+h; q1 = w*z - 1.0; k=1;
158 tmp = z*q1 - q0;
159 q0 = q1;
/freebsd-current/tools/test/xregs_sig/
H A Dc2x2c_aarch64.S20 stp q0, q1, [x0, #( 0 * 16)]
44 ldp q0, q1, [x0, #( 0 * 16)]
/freebsd-current/sys/contrib/openzfs/module/icp/algs/edonr/
H A Dedonr.c120 uint64_t q0, q1, q2, q3, q4, q5, q6, q7; local
158 QEF_512(q0, q1, q2, q3, q4, q5, q6, q7);
166 LS2_512(q0, q1, q2, q3, q4, q5, q6, q7);
167 QEF_512(q0, q1, q2, q3, q4, q5, q6, q7);
174 LS1_512(q0, q1, q2, q3, q4, q5, q6, q7);
176 QEF_512(q0, q1, q2, q3, q4, q5, q6, q7);
184 LS2_512(q0, q1, q2, q3, q4, q5, q6, q7);
185 QEF_512(q0, q1, q2, q3, q4, q5, q6, q7);
196 p[8] ^= d(0) ^ q0;
/freebsd-current/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-generic.c274 uint64_t u0, u1, v1, q0, q1, k; local
286 q0 = __div_u64(u0, v); // Seconds quotient digit.
287 return ((q1 << 32) + q0);
294 q0 = (q1 << n) >> 31; // Undo normalization and
296 if (q0 != 0) // Make q0 correct or
297 q0 = q0 - 1; // too small by 1.
298 if ((u - q0 * v) >= v)
299 q0
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/orc/
H A Dmacho_tlv.arm64.S54 stp q0, q1, [sp, #32 * 23]
58 ldp q0, q1, [sp, #32 * 23]
H A Delfnix_tls.aarch64.S55 stp q0, q1, [sp, #32 * 23]
60 ldp q0, q1, [sp, #32 * 23]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_AArch64.S9 stp q0, q1, [sp, #-32]!
22 ldp q0, q1, [sp], #32

Completed in 317 milliseconds

123