Lines Matching refs:BN_ULONG
163 #define TOBN(hi, lo) ((BN_ULONG)(hi) << 32 | (lo)) in OPENSSL_MSVC_PRAGMA()
193 (BN_ULONG *)(x), sizeof(x) / sizeof(BN_ULONG), \ in OPENSSL_MSVC_PRAGMA()
194 sizeof(x) / sizeof(BN_ULONG), 0, BN_FLG_STATIC_DATA \ in OPENSSL_MSVC_PRAGMA()
198 #define Lw(t) (((BN_ULONG)(t))&BN_MASK2) in OPENSSL_MSVC_PRAGMA()
199 #define Hw(t) (((BN_ULONG)((t)>>BN_BITS2))&BN_MASK2) in OPENSSL_MSVC_PRAGMA()
204 int bn_set_words(BIGNUM *bn, const BN_ULONG *words, size_t num); in OPENSSL_MSVC_PRAGMA()
206 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w); in OPENSSL_MSVC_PRAGMA()
207 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w); in OPENSSL_MSVC_PRAGMA()
208 void bn_sqr_words(BN_ULONG *rp, const BN_ULONG *ap, int num); in OPENSSL_MSVC_PRAGMA()
209 BN_ULONG bn_add_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,int num); in OPENSSL_MSVC_PRAGMA()
210 BN_ULONG bn_sub_words(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp,int num); in OPENSSL_MSVC_PRAGMA()
212 void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b); in OPENSSL_MSVC_PRAGMA()
213 void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b); in OPENSSL_MSVC_PRAGMA()
214 void bn_sqr_comba8(BN_ULONG *r, const BN_ULONG *a); in OPENSSL_MSVC_PRAGMA()
215 void bn_sqr_comba4(BN_ULONG *r, const BN_ULONG *a); in OPENSSL_MSVC_PRAGMA()
219 int bn_cmp_words(const BN_ULONG *a, const BN_ULONG *b, int n); in OPENSSL_MSVC_PRAGMA()
225 int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b, int cl, int dl); in OPENSSL_MSVC_PRAGMA()
227 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, in OPENSSL_MSVC_PRAGMA()
228 const BN_ULONG *np, const BN_ULONG *n0, int num); in OPENSSL_MSVC_PRAGMA()