webkit
2cdf99a9e3038c7e01b3c37e8ad903ecbe5eecf1
https://github.com/WebKit/webkit
|
Macros | |
#define | mul_add(r, a, w, c) |
#define | mul(r, a, w, c) |
#define | sqr(r0, r1, a) |
#define | mul_add_c(a, b, c0, c1, c2) |
#define | mul_add_c2(a, b, c0, c1, c2) |
#define | sqr_add_c(a, i, c0, c1, c2) |
#define | sqr_add_c2(a, i, j, c0, c1, c2) mul_add_c2((a)[i], (a)[j], c0, c1, c2) |
Functions | |
BN_ULONG | bn_mul_add_words (BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) |
BN_ULONG | bn_mul_words (BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w) |
void | bn_sqr_words (BN_ULONG *r, const BN_ULONG *a, int n) |
BN_ULONG | bn_add_words (BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int n) |
BN_ULONG | bn_sub_words (BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b, int n) |
void | bn_mul_comba8 (BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) |
void | bn_mul_comba4 (BN_ULONG *r, BN_ULONG *a, BN_ULONG *b) |
void | bn_sqr_comba8 (BN_ULONG *r, const BN_ULONG *a) |
void | bn_sqr_comba4 (BN_ULONG *r, const BN_ULONG *a) |
#define sqr | ( | r0, | |
r1, | |||
a | |||
) |
BN_ULONG bn_add_words | ( | BN_ULONG * | r, |
const BN_ULONG * | a, | ||
const BN_ULONG * | b, | ||
int | n | ||
) |
BN_ULONG bn_mul_add_words | ( | BN_ULONG * | rp, |
const BN_ULONG * | ap, | ||
int | num, | ||
BN_ULONG | w | ||
) |
void bn_mul_comba4 | ( | BN_ULONG * | r, |
BN_ULONG * | a, | ||
BN_ULONG * | b | ||
) |
void bn_mul_comba8 | ( | BN_ULONG * | r, |
BN_ULONG * | a, | ||
BN_ULONG * | b | ||
) |
BN_ULONG bn_mul_words | ( | BN_ULONG * | rp, |
const BN_ULONG * | ap, | ||
int | num, | ||
BN_ULONG | w | ||
) |
void bn_sqr_comba4 | ( | BN_ULONG * | r, |
const BN_ULONG * | a | ||
) |
void bn_sqr_comba8 | ( | BN_ULONG * | r, |
const BN_ULONG * | a | ||
) |
void bn_sqr_words | ( | BN_ULONG * | r, |
const BN_ULONG * | a, | ||
int | n | ||
) |
BN_ULONG bn_sub_words | ( | BN_ULONG * | r, |
const BN_ULONG * | a, | ||
const BN_ULONG * | b, | ||
int | n | ||
) |