/external/openssl/crypto/bn/ |
bn_shift.c | 74 if (bn_wexpand(r,a->top+1) == NULL) return(0); 79 if (bn_wexpand(r,a->top+1) == NULL) return(0); 114 if (bn_wexpand(r,a->top) == NULL) return(0); 143 if (bn_wexpand(r,a->top+nw+1) == NULL) return(0); 188 if (bn_wexpand(r,a->top-nw+1) == NULL) return(0);
|
bn_sqr.c | 89 if (bn_wexpand(rr,max) == NULL) goto err; 126 if (bn_wexpand(tmp,k*2) == NULL) goto err; 131 if (bn_wexpand(tmp,max) == NULL) goto err; 136 if (bn_wexpand(tmp,max) == NULL) goto err;
|
bn_mul.c | 992 if (bn_wexpand(rr,8) == NULL) goto err; 1000 if (bn_wexpand(rr,16) == NULL) goto err; 1030 if (bn_wexpand(t,k*4) == NULL) goto err; 1031 if (bn_wexpand(rr,k*4) == NULL) goto err; 1037 if (bn_wexpand(t,k*2) == NULL) goto err; 1038 if (bn_wexpand(rr,k*2) == NULL) goto err; 1049 if (bn_wexpand(tmp_bn,al) == NULL) goto err; 1057 if (bn_wexpand(tmp_bn,bl) == NULL) goto err; 1072 if (bn_wexpand(t,k*2) == NULL) goto err; 1073 if (bn_wexpand(rr,k*2) == NULL) goto err [all...] |
bn_div.c | 105 if(bn_wexpand(dv,1) == NULL) goto end; 264 if (!bn_wexpand(res,(loop+1))) goto err; 269 if (!bn_wexpand(tmp,(div_n+1))) goto err; 469 if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err; 475 if (bn_wexpand(snum, snum->top + 1) == NULL) goto err; 502 if (!bn_wexpand(res,(loop+1))) goto err; 507 if (!bn_wexpand(tmp,(div_n+1))) goto err;
|
bn_add.c | 120 if (bn_wexpand(r,max+1) == NULL) 188 if (bn_wexpand(r,max) == NULL) return(0); 299 if (bn_wexpand(r,max) == NULL) return(0);
|
bn_word.c | 149 (bn_wexpand(a,a->top+1) == NULL)) 239 if (bn_wexpand(a,a->top+1) == NULL) return(0);
|
bn_lib.c | 460 /* NB: bn_wexpand() calls this only if the BIGNUM really has to grow */ 506 if (bn_wexpand(a,b->top) == NULL) return(NULL); 617 if (bn_wexpand(ret, (int)i) == NULL) 730 if (bn_wexpand(a,i+1) == NULL) return(0);
|
bn_mont.c | 139 if (bn_wexpand(r,num) == NULL) return(0); 192 if (bn_wexpand(r,max) == NULL) return(0); 255 if (bn_wexpand(ret,ri) == NULL) return(0); 303 if (bn_wexpand(ret,al) == NULL) return(0);
|
bn_nist.c | 380 if (!bn_wexpand(r, BN_NIST_192_TOP)) 467 if (!bn_wexpand(r, BN_NIST_224_TOP)) 579 if (!bn_wexpand(r, BN_NIST_256_TOP)) 704 if (!bn_wexpand(r, BN_NIST_384_TOP)) 814 if (!bn_wexpand(r,BN_NIST_521_TOP))
|
bn_gf2m.c | 235 if(bn_wexpand(r, at->top) == NULL) 282 if (!bn_wexpand(r, a->top)) return 0; 403 if (!bn_wexpand(s, zlen)) goto err; 470 if (!bn_wexpand(s, 2 * a->top)) goto err;
|
bn_exp.c | 529 if (bn_wexpand(b, top) == NULL) 549 if (bn_wexpand(b, top) == NULL)
|
bn.h | 684 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words))) macro [all...] |
/libcore/luni/src/main/native/ |
java_math_NativeBN.cpp | 108 if (bn_wexpand(a, 2) != NULL) { 174 if ((tmpInts != NULL) && (bn_wexpand(ret, len) != NULL)) { 205 if (bn_wexpand(ret, intLen) != NULL) {
|
/external/openssl/crypto/ec/ |
ec2_smpl.c | 179 if (bn_wexpand(&dest->a, (int)(dest->poly[0] + BN_BITS2 - 1) / BN_BITS2) == NULL) return 0; 180 if (bn_wexpand(&dest->b, (int)(dest->poly[0] + BN_BITS2 - 1) / BN_BITS2) == NULL) return 0; 204 if(bn_wexpand(&group->a, (int)(group->poly[0] + BN_BITS2 - 1) / BN_BITS2) == NULL) goto err; 209 if(bn_wexpand(&group->b, (int)(group->poly[0] + BN_BITS2 - 1) / BN_BITS2) == NULL) goto err;
|
/external/openssl/include/openssl/ |
bn.h | 684 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words))) macro [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 | 642 #define bn_wexpand(a,words) (((words) <= (a)->dmax)?(a):bn_expand2((a),(words))) macro
|