/external/openssl/crypto/bn/ |
bn_div.c | 108 if (!BN_lshift(D,D,nm-nd)) goto end; 237 if (!(BN_lshift(sdiv,divisor,norm_shift))) goto err; 240 if (!(BN_lshift(snum,num,norm_shift))) goto err; 457 if (!(BN_lshift(sdiv,divisor,norm_shift))) goto err; 460 if (!(BN_lshift(snum,num,norm_shift))) goto err;
|
bn_shift.c | 132 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n)
|
bn_word.c | 107 if (!BN_lshift(a, a, j))
|
bn_mont.c | 451 if (!BN_lshift(Ri,Ri,2*BN_BITS2)) goto err; /* R*Ri */ 481 if (!BN_lshift(Ri,Ri,BN_BITS2)) goto err; /* R*Ri */ 505 if (!BN_lshift(Ri,Ri,mont->ri)) goto err; /* R*Ri */
|
bntest.c | 197 message(out,"BN_lshift (fixed)"); 202 message(out,"BN_lshift"); 429 BN_lshift(&a,&a,i); 567 BN_lshift(&a,&a,i); [all...] |
bn_mod.c | 282 if (!BN_lshift(r, r, max_shift)) return 0;
|
bn_gcd.c | 196 if (!BN_lshift(a,a,shifts)) goto err; 441 if (!BN_lshift(tmp,X,2)) goto err;
|
bn.h | 494 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n); [all...] |
/external/openssl/crypto/dsa/ |
dsa_gen.c | 170 if (!BN_lshift(test,BN_value_one(),bits-1)) 259 if (!BN_lshift(r0,r0,(qsize << 3)*k)) goto err;
|
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 422 return (n >= 0) ? BN_lshift(r, a, n) : BN_rshift(r, a, -n);
|
/external/openssl/crypto/objects/ |
obj_dat.c | 531 if (!BN_lshift(bl, bl, 7))
|
/external/openssl/include/openssl/ |
bn.h | 494 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n); [all...] |
/prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/openssl/ |
bn.h | 456 int BN_lshift(BIGNUM *r, const BIGNUM *a, int n);
|
/external/openssl/crypto/ec/ |
ecp_smpl.c | 326 if (!BN_lshift(tmp_1, tmp_2, 2)) goto err; [all...] |
/external/valgrind/main/perf/ |
tinycc.c | 8854 void bn_lshift(unsigned int *bn, int shift, int or_val) function [all...] |