Searched refs:bn_sub_words (Results 1 - 25 of 62) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/asm/
H A Dx86.pl21 &bn_sub_words("bn_sub_words");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bn/asm/
H A Dx86.pl21 &bn_sub_words("bn_sub_words");
H A Ds390x.S310 // BN_ULONG bn_sub_words(BN_ULONG *r2,BN_ULONG *r3,BN_ULONG *r4,int r5);
311 .globl bn_sub_words
312 .type bn_sub_words,@function
314 bn_sub_words: label
362 .size bn_sub_words,.-bn_sub_words
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/bn/asm/
H A Dx86.pl21 &bn_sub_words("bn_sub_words");
H A Ds390x.S310 // BN_ULONG bn_sub_words(BN_ULONG *r2,BN_ULONG *r3,BN_ULONG *r4,int r5);
311 .globl bn_sub_words
312 .type bn_sub_words,@function
314 bn_sub_words: label
362 .size bn_sub_words,.-bn_sub_words
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/
H A Dbn_nist.c310 if (bn_sub_words(r_d, r_d, _nist_p_192, BN_NIST_192_TOP))
317 bn_sub_words(r_d, r_d, _nist_p_192, BN_NIST_192_TOP);
377 if (bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP))
380 if (bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP))
386 if (bn_sub_words(r_d,r_d,_nist_p_224,BN_NIST_224_TOP))
400 bn_sub_words(r_d, r_d, _nist_p_224, BN_NIST_224_TOP);
520 if (bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP))
524 if (bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP))
528 if (bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP))
532 if (bn_sub_words(r_
[all...]
H A Dbn_mul.c71 bn_sub_words(). They have the property performing operations on
87 c = bn_sub_words(r, a, b, cl);
511 c1-=(int)(bn_sub_words(&(t[n2]),t,&(t[n2]),n2));
686 c1-=(int)(bn_sub_words(&(t[n2]),t,&(t[n2]),n2));
775 bn_sub_words(&(r[0]),&(a[n]),&(a[0]),n);
776 bn_sub_words(&(r[n]),&(b[0]),&(b[n]),n);
782 bn_sub_words(&(r[0]),&(a[n]),&(a[0]),n);
783 bn_sub_words(&(r[n]),&(b[n]),&(b[0]),n);
792 bn_sub_words(&(r[0]),&(a[0]),&(a[n]),n);
793 bn_sub_words(
[all...]
H A Dbn_sqr.c242 bn_sub_words(t,a,&(a[n]),n);
244 bn_sub_words(t,&(a[n]),a,n);
266 c1-=(int)(bn_sub_words(&(t[n2]),t,&(t[n2]),n2));
H A Dbn_div.c258 bn_sub_words(wnum.d, wnum.d, sdiv->d, div_n);
362 * BN_ULONG arrays with bn_sub_words */
363 if (bn_sub_words(wnum.d, wnum.d, tmp->d, div_n+1))
H A Dbn_add.c216 carry=bn_sub_words(rp,ap,bp,min);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bn/
H A Dbn_nist.c469 (int)bn_sub_words(r_d, r_d, _nist_p_192[carry - 1],
481 0 - (PTR_SIZE_INT) bn_sub_words(c_d, r_d, _nist_p_192[0],
629 carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP);
631 carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP);
638 u.f = bn_sub_words;
641 (int)bn_sub_words(r_d, r_d, _nist_p_224[carry - 1],
658 u.p = ((PTR_SIZE_INT) bn_sub_words & mask) |
871 carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
876 carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
881 carry -= (int)bn_sub_words(r_
[all...]
H A Dbn_mul.c71 * Here follows specialised variants of bn_add_words() and bn_sub_words().
89 c = bn_sub_words(r, a, b, cl);
539 c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2));
701 c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2));
787 bn_sub_words(&(r[0]), &(a[n]), &(a[0]), n);
788 bn_sub_words(&(r[n]), &(b[0]), &(b[n]), n);
794 bn_sub_words(&(r[0]), &(a[n]), &(a[0]), n);
795 bn_sub_words(&(r[n]), &(b[n]), &(b[0]), n);
804 bn_sub_words(&(r[0]), &(a[0]), &(a[n]), n);
805 bn_sub_words(
[all...]
H A Dbn_sqr.c236 bn_sub_words(t, a, &(a[n]), n);
238 bn_sub_words(t, &(a[n]), a, n);
261 c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2));
H A Dbn_div.c325 bn_sub_words(wnum.d, wnum.d, sdiv->d, div_n);
437 * with bn_sub_words
439 if (bn_sub_words(wnum.d, wnum.d, tmp->d, div_n + 1)) {
H A Dbn_mont.c250 v = bn_sub_words(rp, ap, np, nl) - carry;
279 if (bn_sub_words(rp, ap, np, nl) - carry)
H A Dbn_add.c212 carry = bn_sub_words(rp, ap, bp, min);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/bn/
H A Dbn_nist.c469 (int)bn_sub_words(r_d, r_d, _nist_p_192[carry - 1],
481 0 - (PTR_SIZE_INT) bn_sub_words(c_d, r_d, _nist_p_192[0],
629 carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP);
631 carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP);
638 u.f = bn_sub_words;
641 (int)bn_sub_words(r_d, r_d, _nist_p_224[carry - 1],
658 u.p = ((PTR_SIZE_INT) bn_sub_words & mask) |
871 carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
876 carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
881 carry -= (int)bn_sub_words(r_
[all...]
H A Dbn_mul.c71 * Here follows specialised variants of bn_add_words() and bn_sub_words().
89 c = bn_sub_words(r, a, b, cl);
539 c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2));
701 c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2));
787 bn_sub_words(&(r[0]), &(a[n]), &(a[0]), n);
788 bn_sub_words(&(r[n]), &(b[0]), &(b[n]), n);
794 bn_sub_words(&(r[0]), &(a[n]), &(a[0]), n);
795 bn_sub_words(&(r[n]), &(b[n]), &(b[0]), n);
804 bn_sub_words(&(r[0]), &(a[0]), &(a[n]), n);
805 bn_sub_words(
[all...]
H A Dbn_sqr.c236 bn_sub_words(t, a, &(a[n]), n);
238 bn_sub_words(t, &(a[n]), a, n);
261 c1 -= (int)(bn_sub_words(&(t[n2]), t, &(t[n2]), n2));
H A Dbn_div.c325 bn_sub_words(wnum.d, wnum.d, sdiv->d, div_n);
437 * with bn_sub_words
439 if (bn_sub_words(wnum.d, wnum.d, tmp->d, div_n + 1)) {
H A Dbn_mont.c250 v = bn_sub_words(rp, ap, np, nl) - carry;
279 if (bn_sub_words(rp, ap, np, nl) - carry)
H A Dbn_add.c212 carry = bn_sub_words(rp, ap, bp, min);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/openssl-0.9.8e/crypto/bn/asm/x86/
H A Dsub.pl4 sub bn_sub_words subroutine
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bn/asm/x86/
H A Dsub.pl4 sub bn_sub_words subroutine
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl-1.0.2h/crypto/bn/asm/x86/
H A Dsub.pl4 sub bn_sub_words subroutine

Completed in 163 milliseconds

123