Symbol: bn_sub_words
crypto/libressl/crypto/bn/bn_add.c
172
borrow = bn_sub_words(rp, ap, bp, min);
crypto/libressl/crypto/bn/bn_asm.c
1076
c0 = bn_sub_words(rp, tp, np, num);
crypto/libressl/crypto/bn/bn_asm.c
985
c0 = bn_sub_words(rp, tp, np, num);
crypto/libressl/crypto/bn/bn_div.c
241
bn_sub_words(wnum.d, wnum.d, sdiv->d, div_n);
crypto/libressl/crypto/bn/bn_div.c
343
if (bn_sub_words(wnum.d, wnum.d, tmp->d, div_n + 1)) {
crypto/libressl/crypto/bn/bn_lcl.h
630
BN_ULONG bn_sub_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, int num);
crypto/libressl/crypto/bn/bn_mont.c
243
v = bn_sub_words(rp, ap, np, nl) - carry;
crypto/libressl/crypto/bn/bn_mont.c
270
if (bn_sub_words (rp, ap, np, nl) - carry)
crypto/libressl/crypto/bn/bn_mul.c
548
c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2));
crypto/libressl/crypto/bn/bn_mul.c
709
c1 -= (int)(bn_sub_words(&(t[n2]), t,&(t[n2]), n2));
crypto/libressl/crypto/bn/bn_mul.c
791
bn_sub_words(&(r[0]), &(a[n]), &(a[0]), n);
crypto/libressl/crypto/bn/bn_mul.c
792
bn_sub_words(&(r[n]), &(b[0]), &(b[n]), n);
crypto/libressl/crypto/bn/bn_mul.c
798
bn_sub_words(&(r[0]), &(a[n]), &(a[0]), n);
crypto/libressl/crypto/bn/bn_mul.c
799
bn_sub_words(&(r[n]), &(b[n]), &(b[0]), n);
crypto/libressl/crypto/bn/bn_mul.c
808
bn_sub_words(&(r[0]), &(a[0]), &(a[n]), n);
crypto/libressl/crypto/bn/bn_mul.c
809
bn_sub_words(&(r[n]), &(b[0]), &(b[n]), n);
crypto/libressl/crypto/bn/bn_mul.c
816
bn_sub_words(&(r[0]), &(a[0]), &(a[n]), n);
crypto/libressl/crypto/bn/bn_mul.c
817
bn_sub_words(&(r[n]), &(b[n]), &(b[0]), n);
crypto/libressl/crypto/bn/bn_mul.c
850
neg = (int)(bn_sub_words(&(t[n2]), lp, &(t[0]), n));
crypto/libressl/crypto/bn/bn_mul.c
857
bn_sub_words(&(t[n2 + n]), &(l[n]), &(t[n2]), n);
crypto/libressl/crypto/bn/bn_mul.c
887
c1 -= (int)(bn_sub_words(&(t[n2]), &(t[n2]), &(t[0]), n));
crypto/libressl/crypto/bn/bn_mul.c
894
c2 -= (int)(bn_sub_words(&(r[0]), &(r[0]), &(t[n]), n));
crypto/libressl/crypto/bn/bn_mul.c
90
c = bn_sub_words(r, a, b, cl);
crypto/libressl/crypto/bn/bn_nist.c
1243
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_384_TOP);
crypto/libressl/crypto/bn/bn_nist.c
1246
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_384_TOP);
crypto/libressl/crypto/bn/bn_nist.c
1249
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_384_TOP);
crypto/libressl/crypto/bn/bn_nist.c
1254
addsubf = bn_sub_words;
crypto/libressl/crypto/bn/bn_nist.c
1256
carry = (int)bn_sub_words(r_d, r_d, _nist_p_384[carry - 1],
crypto/libressl/crypto/bn/bn_nist.c
1326
mask = 0 - (uintptr_t)bn_sub_words(t_d, r_d, _nist_p_521,
crypto/libressl/crypto/bn/bn_nist.c
575
carry = (int)bn_sub_words(r_d, r_d, _nist_p_192[carry - 1],
crypto/libressl/crypto/bn/bn_nist.c
586
mask = 0 - (uintptr_t)bn_sub_words(c_d, r_d, _nist_p_192[0],
crypto/libressl/crypto/bn/bn_nist.c
742
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP);
crypto/libressl/crypto/bn/bn_nist.c
744
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP);
crypto/libressl/crypto/bn/bn_nist.c
751
addsubf = bn_sub_words;
crypto/libressl/crypto/bn/bn_nist.c
753
carry = (int)bn_sub_words(r_d, r_d, _nist_p_224[carry - 1],
crypto/libressl/crypto/bn/bn_nist.c
975
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/libressl/crypto/bn/bn_nist.c
978
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/libressl/crypto/bn/bn_nist.c
981
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/libressl/crypto/bn/bn_nist.c
984
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/libressl/crypto/bn/bn_nist.c
989
addsubf = bn_sub_words;
crypto/libressl/crypto/bn/bn_nist.c
991
carry = (int)bn_sub_words(r_d, r_d, _nist_p_256[carry - 1],
crypto/libressl/crypto/bn/bn_sqr.c
236
bn_sub_words(t, a, &(a[n]), n);
crypto/libressl/crypto/bn/bn_sqr.c
238
bn_sub_words(t, &(a[n]), a, n);
crypto/libressl/crypto/bn/bn_sqr.c
260
c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2));