Searched refs:q1 (Results 1 – 7 of 7) sorted by relevance
| /optee_os/core/arch/arm/crypto/ |
| H A D | aes_modes_armv8a_ce_a32.S | 47 enc_round q1, \key1 50 enc_round q1, \key2 56 dec_round q1, \key1 59 dec_round q1, \key2 65 enc_round q1, \key1 68 aese.8 q1, \key2 71 veor q1, q1, \key3 77 dec_round q1, \key1 80 aesd.8 q1, \key2 83 veor q1, q1, \key3 [all …]
|
| H A D | sha256_armv8a_ce_a32.S | 51 0: vld1.8 {q0-q1}, [r1]! 53 vrev32.8 q1, q1
|
| H A D | sha1_armv8a_ce_a32.S | 13 k1 .req q1
|
| H A D | ghash-ce-core_a32.S | 14 T1 .req q1
|
| /optee_os/lib/libutils/compiler-rt/lib/builtins/ |
| H A D | udivmodti4.c | 29 du_int q1, q0; // Quotient digits in udiv128by64to64default() local 55 q1 = un64 / vn1; in udiv128by64to64default() 56 rhat = un64 - q1 * vn1; in udiv128by64to64default() 59 while (q1 >= b || q1 * vn0 > b * rhat + un1) { in udiv128by64to64default() 60 q1 = q1 - 1; in udiv128by64to64default() 66 un21 = un64 * b + un1 - q1 * v; 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() 1406 q1 = u1 / d1; in mbedtls_int_div_int() 1407 r0 = u1 - d1 * q1; in mbedtls_int_div_int() 1409 while (q1 >= radix || (q1 * d0 > radix * r0 + u0_msw)) { in mbedtls_int_div_int() 1410 q1 -= 1; in mbedtls_int_div_int() 1418 rAX = (u1 * radix) + (u0_msw - q1 * d); in mbedtls_int_div_int() 1435 quotient = q1 * radix + q0; in mbedtls_int_div_int()
|