Searched refs:q0 (Results 1 – 7 of 7) sorted by relevance
| /optee_os/core/arch/arm/crypto/ |
| H A D | aes_modes_armv8a_ce_a32.S | 24 enc_round q0, \key1 25 enc_round q0, \key2 29 dec_round q0, \key1 30 dec_round q0, \key2 34 enc_round q0, \key1 35 aese.8 q0, \key2 36 veor q0, q0, \key3 40 dec_round q0, \key1 41 aesd.8 q0, \key2 42 veor q0, q0, \key3 [all …]
|
| H A D | sha256_armv8a_ce_a32.S | 51 0: vld1.8 {q0-q1}, [r1]! 52 vrev32.8 q0, q0 63 vadd.u32 ta0, q0, k0
|
| H A D | sha1_armv8a_ce_a32.S | 12 k0 .req q0
|
| H A D | ghash-ce-core_a32.S | 13 SHASH .req q0
|
| /optee_os/lib/libutils/compiler-rt/lib/builtins/ |
| H A D | udivmodti4.c | 29 du_int q1, q0; // Quotient digits in udiv128by64to64default() local 69 q0 = un21 / vn1; in udiv128by64to64default() 70 rhat = un21 - q0 * vn1; in udiv128by64to64default() 73 while (q0 >= b || q0 * vn0 > b * rhat + un0) { in udiv128by64to64default() 74 q0 = q0 - 1; in udiv128by64to64default() 80 *r = (un21 * b + un0 - q0 * v) >> s; in udiv128by64to64default() 81 return q1 * b + q0; in udiv128by64to64default()
|
| /optee_os/core/arch/arm/kernel/ |
| H A D | vfp_a64.S | 10 stp q0, q1, [x0, #16 * 0] 31 ldp q0, q1, [x0, #16 * 0]
|
| /optee_os/lib/libmbedtls/mbedtls/library/ |
| H A D | bignum.c | 1351 mbedtls_mpi_uint d0, d1, q0, q1, rAX, r0, quotient; in mbedtls_int_div_int() 1419 q0 = rAX / d1; in mbedtls_int_div_int() 1420 r0 = rAX - q0 * d1; in mbedtls_int_div_int() 1422 while (q0 >= radix || (q0 * d0 > radix * r0 + u0_lsw)) { in mbedtls_int_div_int() 1423 q0 -= 1; in mbedtls_int_div_int() 1432 *r = (rAX * radix + u0_lsw - q0 * d) >> s; in mbedtls_int_div_int() 1435 quotient = q1 * radix + q0; in mbedtls_int_div_int()
|