• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openssl/crypto/bn/

Lines Matching refs:ap

71 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num,
82 mul_add(rp[0], ap[0], w, c1);
83 mul_add(rp[1], ap[1], w, c1);
84 mul_add(rp[2], ap[2], w, c1);
85 mul_add(rp[3], ap[3], w, c1);
86 ap += 4;
92 mul_add(rp[0], ap[0], w, c1);
93 ap++;
101 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)
111 mul(rp[0], ap[0], w, c1);
112 mul(rp[1], ap[1], w, c1);
113 mul(rp[2], ap[2], w, c1);
114 mul(rp[3], ap[3], w, c1);
115 ap += 4;
121 mul(rp[0], ap[0], w, c1);
122 ap++;
157 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num,
172 mul_add(rp[0], ap[0], bl, bh, c);
173 mul_add(rp[1], ap[1], bl, bh, c);
174 mul_add(rp[2], ap[2], bl, bh, c);
175 mul_add(rp[3], ap[3], bl, bh, c);
176 ap += 4;
182 mul_add(rp[0], ap[0], bl, bh, c);
183 ap++;
190 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)
204 mul(rp[0], ap[0], bl, bh, carry);
205 mul(rp[1], ap[1], bl, bh, carry);
206 mul(rp[2], ap[2], bl, bh, carry);
207 mul(rp[3], ap[3], bl, bh, carry);
208 ap += 4;
214 mul(rp[0], ap[0], bl, bh, carry);
215 ap++;
901 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
913 if (ap == bp)
914 return bn_sqr_mont(rp, ap, np, n0p, num);
926 mul(tp[j], ap[j], ml, mh, c0);
929 mul(tp[j], ap[j], ml, c0);
943 mul_add(tp[j], ap[j], ml, mh, c0);
946 mul_add(tp[j], ap[j], ml, c0);
996 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
1044 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,
1057 c0 = bn_mul_add_words(tp, ap, num, bp[i]);
1085 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,