Home
last modified time | relevance | path

Searched refs:BN_uadd (Results 1 – 7 of 7) sorted by relevance

/third_party/openssl/crypto/bn/
Dbn_add.c23 ret = BN_uadd(r, a, b); in BN_add()
54 ret = BN_uadd(r, a, b); in BN_sub()
76 int BN_uadd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) in BN_uadd() function
Dbn_gcd.c285 if (!BN_uadd(X, X, n)) in int_bn_mod_inverse()
307 if (!BN_uadd(Y, Y, n)) in int_bn_mod_inverse()
333 if (!BN_uadd(X, X, Y)) in int_bn_mod_inverse()
343 if (!BN_uadd(Y, Y, X)) in int_bn_mod_inverse()
/third_party/openssl/include/openssl/
Dbn.h230 int BN_uadd(BIGNUM *r, const BIGNUM *a, const BIGNUM *b);
/third_party/openssl/test/
Dbntest.c1245 if (!TEST_true(BN_uadd(ret, a, b)) in file_sum()
1258 || !TEST_true(BN_uadd(ret, ret, b)) in file_sum()
1261 || !TEST_true(BN_uadd(ret, a, ret)) in file_sum()
/third_party/grpc/src/boringssl/
Dboringssl_prefix_symbols.h989 #define BN_uadd BORINGSSL_ADD_PREFIX(BORINGSSL_PREFIX, BN_uadd) macro
/third_party/openssl/util/
Dlibcrypto.num173 BN_uadd 175 1_1_0 EXIST::FUNCTION:
/third_party/openssl/
DCHANGES9104 *) Fix BN_uadd and BN_usub: Always return non-negative results instead