Searched refs:tmp_bn (Results 1 - 3 of 3) sorted by relevance

/external/openssl/crypto/ec/
H A Dec_print.c185 BIGNUM *tmp_bn=NULL; local
187 if (!BN_hex2bn(&tmp_bn, buf))
190 ret = EC_POINT_bn2point(group, tmp_bn, point, ctx);
192 BN_clear_free(tmp_bn);
H A Decp_nist.c135 BIGNUM *tmp_bn; local
141 if ((tmp_bn = BN_CTX_get(ctx)) == NULL) goto err;
/external/openssl/crypto/bn/
H A Dbn_mul.c1048 BIGNUM *tmp_bn = (BIGNUM *)b;
1049 if (bn_wexpand(tmp_bn,al) == NULL) goto err;
1050 tmp_bn->d[bl]=0;
1056 BIGNUM *tmp_bn = (BIGNUM *)a;
1057 if (bn_wexpand(tmp_bn,bl) == NULL) goto err;
1058 tmp_bn->d[al]=0;

Completed in 598 milliseconds