/external/boringssl/src/crypto/bn/ |
kronecker.c | 108 if (!BN_rshift(B, B, i)) { 146 if (!BN_rshift(A, A, i)) {
|
sqrt.c | 146 if (!BN_rshift(q, p, 2)) { 192 if (!BN_rshift(q, p, 3)) { 278 if (!BN_rshift(q, q, e)) {
|
gcd.c | 304 if (!BN_rshift(B, B, shift)) { 326 if (!BN_rshift(A, A, shift)) {
|
shift.c | 135 int BN_rshift(BIGNUM *r, const BIGNUM *a, int n) {
|
prime.c | 556 if (!BN_rshift(A1_odd, A1, k)) { [all...] |
exponentiation.c | 320 if (!BN_rshift(a, m, recp->num_bits)) { 326 if (!BN_rshift(d, b, i - recp->num_bits)) { [all...] |
bn_test.cc | 306 !BN_rshift(ret.get(), lshift.get(), n) || 324 !BN_rshift(ret.get(), a.get(), n) || [all...] |
div.c | 370 * BN_rshift() will overwrite it. 373 if (!BN_rshift(rm, snum, norm_shift)) {
|
/external/vboot_reference/host/lib/ |
util_misc.c | 111 BN_rshift(N, N, 32); /* N = N/B */ 122 BN_rshift(RR, RR, 32); /* RR = RR/B */
|
/external/vboot_reference/utility/ |
dumpRSAPublicKey.c | 106 BN_rshift(N, N, 32); /* N = N/B */ 118 BN_rshift(RR, RR, 32); /* RR = RR/B */
|
/external/wpa_supplicant_8/src/eap_common/ |
eap_pwd_common.c | 228 BN_rshift(x_candidate, x_candidate,
|
/external/boringssl/src/crypto/ecdsa/ |
ecdsa.c | 128 !BN_rshift(out, out, 8 - (num_bits & 0x7))) {
|
/external/boringssl/src/include/openssl/ |
bn.h | 492 /* BN_rshift sets |r| equal to |a| >> n, where |r| and |a| may be the same 494 OPENSSL_EXPORT int BN_rshift(BIGNUM *r, const BIGNUM *a, int n); [all...] |
/external/openssh/ |
moduli.c | 688 if (BN_rshift(q, p, 1) == 0) 689 fatal("BN_rshift failed");
|
/external/tpm2/ |
RSAKeySieve.c | 262 BN_rshift(bnM, bnWm1, a);
|
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 405 ok = BN_rshift(toBigNum(r), toBigNum(a), -n);
|