/external/boringssl/src/crypto/bn/ |
div.c | 169 if (!(BN_lshift(sdiv, divisor, norm_shift))) { 174 if (!(BN_lshift(snum, num, norm_shift))) { 523 if (!BN_lshift(r, r, max_shift)) { 582 if (!BN_lshift(a, a, j)) {
|
gcd.c | 173 if (!BN_lshift(a, a, shifts)) { 476 if (!BN_lshift(tmp, X, 2)) {
|
montgomery.c | 214 if (!BN_lshift(Ri, Ri, 2 * BN_BITS2)) { 253 if (!BN_lshift(Ri, Ri, BN_BITS2)) {
|
shift.c | 66 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n) {
|
sqrt.c | 460 BN_lshift(estimate, BN_value_one(), BN_num_bits(in)/2);
|
bn_test.cc | 211 message(bc_file.get(), "BN_lshift (fixed)"); 221 message(bc_file.get(), "BN_lshift"); 449 !BN_lshift(a.get(), a.get(), i) || 639 if (!BN_lshift(b.get(), a.get(), i + 1) || [all...] |
/external/boringssl/src/crypto/dsa/ |
dsa.c | 193 if (test == NULL || !BN_lshift(test, BN_value_one(), bits - 1)) { 286 !BN_lshift(r0, r0, (qsize << 3) * k) ||
|
/external/boringssl/src/crypto/obj/ |
obj.c | 472 if (!BN_lshift(bl, bl, 7)) {
|
/external/boringssl/src/include/openssl/ |
bn.h | 463 /* BN_lshift sets |r| equal to |a| << n. The |a| and |r| arguments may be the 465 OPENSSL_EXPORT int BN_lshift(BIGNUM *r, const BIGNUM *a, int n); [all...] |
/system/keymaster/ |
attestation_record.cpp | 44 BN_lshift(bn, bn, 32) && //
|
/external/boringssl/src/crypto/rsa/ |
rsa.c | 756 !BN_lshift(multiple, rsa->n, 2) ||
|
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 479 BN_lshift(toBigNum(r), toBigNum(a), n);
|
/external/boringssl/src/crypto/ec/ |
simple.c | 277 !BN_lshift(tmp_1, tmp_2, 2)) { [all...] |