/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
divtest.c | 34 if (BN_div(C,D,a,b,ctx) != 1) 35 bug("BN_div failed",a,b);
|
bn_div.c | 1 /* crypto/bn/bn_div.c */ 67 int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, 174 /* BN_div computes dv := num / divisor, rounding towards 181 int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
|
bntest.c | 222 message(out,"BN_div"); 436 BN_div(&d,&c,&a,&b,ctx); 660 BN_div(&d,&e,&c,&a,ctx); 704 BN_div(&d,&e,&c,&a,ctx); 826 BN_div(d,e,a,b,ctx); 896 BN_div(a,b,d,c,ctx); 949 BN_div(a,b,e,c,ctx); 1000 BN_div(a,b,e,c,ctx); [all...] |
bn_err.c | 84 {ERR_FUNC(BN_F_BN_DIV), "BN_div"},
|
bn_gcd.c | 394 if (!BN_div(D,M,A,B,ctx)) goto err; 543 /* Turn BN_FLG_CONSTTIME flag on, so that when BN_div is invoked, 568 /* Turn BN_FLG_CONSTTIME flag on, so that when BN_div is invoked, 575 if (!BN_div(D,M,pA,B,ctx)) goto err;
|
bn_recp.c | 227 if (!BN_div(r,NULL,t,m,ctx)) goto err;
|
bnspeed.c | 227 BN_div(r, NULL, b, a,ctx);
|
bn_mont.c | 408 if (!BN_div(Ri,NULL,Ri,&tmod,ctx)) goto err; 432 if (!BN_div(Ri,NULL,Ri,&tmod,ctx)) goto err; 450 if (!BN_div(&(mont->Ni),NULL,Ri,&mont->N,ctx)) goto err;
|
bn_mod.c | 121 return(BN_div(NULL,rem,m,d,ctx));
|
/external/openssl/crypto/bn/ |
divtest.c | 34 if (BN_div(C,D,a,b,ctx) != 1) 35 bug("BN_div failed",a,b);
|
bn_div.c | 1 /* crypto/bn/bn_div.c */ 67 int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, 174 /* BN_div computes dv := num / divisor, rounding towards 181 int BN_div(BIGNUM *dv, BIGNUM *rm, const BIGNUM *num, const BIGNUM *divisor,
|
bntest.c | 222 message(out,"BN_div"); 436 BN_div(&d,&c,&a,&b,ctx); 660 BN_div(&d,&e,&c,&a,ctx); 704 BN_div(&d,&e,&c,&a,ctx); 826 BN_div(d,e,a,b,ctx); 896 BN_div(a,b,d,c,ctx); 949 BN_div(a,b,e,c,ctx); 1000 BN_div(a,b,e,c,ctx); [all...] |
bn_err.c | 84 {ERR_FUNC(BN_F_BN_DIV), "BN_div"},
|
bn_gcd.c | 394 if (!BN_div(D,M,A,B,ctx)) goto err; 543 /* Turn BN_FLG_CONSTTIME flag on, so that when BN_div is invoked, 568 /* Turn BN_FLG_CONSTTIME flag on, so that when BN_div is invoked, 575 if (!BN_div(D,M,pA,B,ctx)) goto err;
|
bn_recp.c | 227 if (!BN_div(r,NULL,t,m,ctx)) goto err;
|
bnspeed.c | 227 BN_div(r, NULL, b, a,ctx);
|
bn_mont.c | 408 if (!BN_div(Ri,NULL,Ri,&tmod,ctx)) goto err; 432 if (!BN_div(Ri,NULL,Ri,&tmod,ctx)) goto err; 450 if (!BN_div(&(mont->Ni),NULL,Ri,&mont->N,ctx)) goto err;
|
bn_mod.c | 121 return(BN_div(NULL,rem,m,d,ctx));
|
/system/core/adb/ |
adb_auth_host.c | 85 BN_div(NULL, rem, n, r32, ctx); 91 BN_div(rr, rem, rr, r32, ctx); 93 BN_div(n, rem, n, r32, ctx);
|
/libcore/luni/src/main/java/java/math/ |
NativeBN.java | 109 public static native void BN_div(long dv, long rem, long m, long d); 110 // int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d, BN_CTX *ctx);
|
/external/chromium_org/third_party/openssl/openssl/crypto/rsa/ |
rsa_chk.c | 119 r = BN_div(k, NULL, l, m, ctx); /* remainder is 0 */
|
/external/openssl/crypto/rsa/ |
rsa_chk.c | 119 r = BN_div(k, NULL, l, m, ctx); /* remainder is 0 */
|
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 497 BN_div(toBigNum(dv), toBigNum(rem), toBigNum(m), toBigNum(d), ctx.get()); 546 NATIVE_METHOD(NativeBN, BN_div, "(JJJJ)V"),
|
/external/chromium_org/third_party/openssl/openssl/crypto/dsa/ |
dsa_gen.c | 326 if (!BN_div(r0,NULL,test,q,ctx)) goto err;
|
/external/openssl/crypto/dsa/ |
dsa_gen.c | 326 if (!BN_div(r0,NULL,test,q,ctx)) goto err;
|