/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);
|