HomeSort by relevance Sort by last modified time
    Searched refs:BN_lshift (Results 1 - 14 of 14) sorted by null

  /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)) {
shift.c 66 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n) {
72 OPENSSL_PUT_ERROR(BN, BN_lshift, BN_R_NEGATIVE_NUMBER);
gcd.c 173 if (!BN_lshift(a, a, shifts)) {
473 if (!BN_lshift(tmp, X, 2)) {
montgomery.c 219 if (!BN_lshift(Ri, Ri, 2 * BN_BITS2)) {
258 if (!BN_lshift(Ri, Ri, BN_BITS2)) {
sqrt.c 460 BN_lshift(estimate, BN_value_one(), BN_num_bits(in)/2);
bn_test.cc 206 message(bc_file.get(), "BN_lshift (fixed)");
216 message(bc_file.get(), "BN_lshift");
447 !BN_lshift(a.get(), a.get(), i) ||
637 if (!BN_lshift(b.get(), a.get(), i + 1) ||
    [all...]
  /external/boringssl/src/crypto/dsa/
dsa_impl.c 523 if (test == NULL || !BN_lshift(test, BN_value_one(), bits - 1)) {
618 !BN_lshift(r0, r0, (qsize << 3) * k) ||
  /external/boringssl/src/include/openssl/
bn.h 444 /* BN_lshift sets |r| equal to |a| << n. The |a| and |r| arguments may be the
446 OPENSSL_EXPORT int BN_lshift(BIGNUM *r, const BIGNUM *a, int n);
    [all...]
  /external/boringssl/src/crypto/obj/
obj.c 472 if (!BN_lshift(bl, bl, 7)) {
  /external/openssh/
moduli.c 671 if (BN_lshift(p, q, 1) == 0)
672 fatal("BN_lshift failed");
sshconnect1.c 581 if (BN_lshift(key, key, 8) == 0)
582 fatal("ssh_kex: BN_lshift failed");
  /external/boringssl/src/crypto/rsa/
rsa.c 698 !BN_lshift(multiple, rsa->n, 2) ||
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 475 BN_lshift(toBigNum(r), toBigNum(a), n);
  /external/boringssl/src/crypto/ec/
simple.c 322 !BN_lshift(tmp_1, tmp_2, 2)) {
    [all...]

Completed in 630 milliseconds