Lines Matching defs:tmpbn
28 size_t *buf_n, BIGNUM **tmpbn, int *found)
53 r = BN_hex2bn(tmpbn, value);
55 r = BN_asc2bn(tmpbn, value);
57 if (r == 0 || *tmpbn == NULL)
61 && BN_is_negative(*tmpbn)) {
76 if (p->data_type == OSSL_PARAM_INTEGER && BN_is_negative(*tmpbn)
77 && !BN_add_word(*tmpbn, 1)) {
81 buf_bits = (size_t)BN_num_bits(*tmpbn);
133 void *buf, size_t buf_n, BIGNUM *tmpbn)
150 BN_bn2nativepad(tmpbn, buf, buf_n);
159 && BN_is_negative(tmpbn)) {
206 BIGNUM *tmpbn = NULL;
213 ¶mdef, &ishex, &buf_n, &tmpbn, found))
222 buf, buf_n, tmpbn);
223 BN_free(tmpbn);
228 BN_free(tmpbn);