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

  /external/boringssl/src/crypto/bn/
shift.c 78 if (bn_wexpand(r, a->top + nw + 1) == NULL) {
110 if (bn_wexpand(r, a->top + 1) == NULL) {
115 if (bn_wexpand(r, a->top + 1) == NULL) {
155 if (bn_wexpand(r, i) == NULL) {
200 if (bn_wexpand(r, j) == NULL) {
231 if (bn_wexpand(a, i + 1) == NULL) {
add.c 118 if (bn_wexpand(r, max + 1) == NULL) {
194 if (bn_wexpand(a, a->top + 1) == NULL) {
242 if (bn_wexpand(r, max) == NULL) {
276 if (bn_wexpand(r, max) == NULL) {
bn.c 148 if (bn_wexpand(dest, src->top) == NULL) {
259 if (bn_wexpand(bn, 1) == NULL) {
281 BIGNUM *bn_wexpand(BIGNUM *bn, size_t words) { function
318 return bn_wexpand(bn, (bits+BN_BITS2-1)/BN_BITS2);
montgomery.c 344 if (bn_wexpand(r, max) == NULL) {
368 if (bn_wexpand(ret, nl) == NULL) {
429 if (bn_wexpand(r,max) == NULL) return(0);
455 if (bn_wexpand(ret,nl) == NULL) return(0);
523 if (bn_wexpand(r, num) == NULL) {
mul.c 612 if (bn_wexpand(rr, 16) == NULL) {
639 if (bn_wexpand(t, k * 4) == NULL) {
642 if (bn_wexpand(rr, k * 4) == NULL) {
648 if (bn_wexpand(t, k * 2) == NULL) {
651 if (bn_wexpand(rr, k * 2) == NULL) {
661 if (bn_wexpand(rr, top) == NULL) {
810 if (bn_wexpand(bn, bn->top + 1) == NULL) {
839 if (bn_wexpand(rr, max) == NULL) {
858 if (bn_wexpand(tmp, k * 2) == NULL) {
863 if (bn_wexpand(tmp, max) == NULL)
    [all...]
div.c 185 if (bn_wexpand(snum, sdiv->top + 2) == NULL) {
193 if (bn_wexpand(snum, snum->top + 1) == NULL) {
223 if (!bn_wexpand(res, (loop + 1))) {
230 if (!bn_wexpand(tmp, (div_n + 1))) {
exponentiation.c 703 if (bn_wexpand(r, j) == NULL) {
807 if (bn_wexpand(b, top) == NULL) {
911 if (NULL == bn_wexpand(rr, 16)) {
921 if (NULL == bn_wexpand(rr, 8)) {
    [all...]
convert.c 93 if (bn_wexpand(ret, num_words) == NULL) {
100 /* |bn_wexpand| must check bounds on |num_words| to write it into
  /external/boringssl/src/crypto/ec/
p256-x86_64.c 403 if (bn_wexpand(&r->X, P256_LIMBS) == NULL ||
404 bn_wexpand(&r->Y, P256_LIMBS) == NULL ||
405 bn_wexpand(&r->Z, P256_LIMBS) == NULL) {
551 if (bn_wexpand(x, P256_LIMBS) == NULL) {
563 if (bn_wexpand(y, P256_LIMBS) == NULL) {
  /libcore/luni/src/main/native/
java_math_NativeBN.cpp 140 ok = (bn_wexpand(a, 2) != NULL);
222 if ((tmpInts != NULL) && (bn_wexpand(ret, wlen) != NULL)) {
265 if (bn_wexpand(ret, wLen) != NULL) {
  /external/boringssl/src/include/openssl/
bn.h 329 /* bn_wexpand ensures that |bn| has at least |words| works of space without
332 OPENSSL_EXPORT BIGNUM *bn_wexpand(BIGNUM *bn, size_t words);
    [all...]

Completed in 346 milliseconds