HomeSort by relevance Sort by last modified time
    Searched defs:BN_usub (Results 1 - 2 of 2) sorted by null

  /external/openssl/crypto/bn/
bn_add.c 87 if (!BN_usub(r,b,a)) return(0);
92 if (!BN_usub(r,a,b)) return(0);
166 int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b)
302 if (!BN_usub(r,b,a)) return(0);
307 if (!BN_usub(r,a,b)) return(0);
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
add.c 84 if (!BN_usub(r, b, a)) {
89 if (!BN_usub(r, a, b)) {
245 if (!BN_usub(r, b, a)) {
250 if (!BN_usub(r, a, b)) {
259 int BN_usub(BIGNUM *r, const BIGNUM *a, const BIGNUM *b) {
270 OPENSSL_PUT_ERROR(BN, BN_usub, BN_R_ARG2_LT_ARG3);

Completed in 115 milliseconds