Symbol: BN_NIST_256_TOP
crypto/openssl/crypto/bn/bn_nist.c
1071
t_d, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
129
static const BN_ULONG _nist_p_256[][BN_NIST_256_TOP] = {
crypto/openssl/crypto/bn/bn_nist.c
204
BN_NIST_256_TOP,
crypto/openssl/crypto/bn/bn_nist.c
205
BN_NIST_256_TOP,
crypto/openssl/crypto/bn/bn_nist.c
47
static const BN_ULONG _nist_p_256[][BN_NIST_256_TOP] = {
crypto/openssl/crypto/bn/bn_nist.c
661
BN_ULONG bn[BN_NIST_256_TOP];
crypto/openssl/crypto/bn/bn_nist.c
662
unsigned int ui[BN_NIST_256_TOP * sizeof(BN_ULONG) / sizeof(unsigned int)];
crypto/openssl/crypto/bn/bn_nist.c
664
BN_ULONG c_d[BN_NIST_256_TOP], *res;
crypto/openssl/crypto/bn/bn_nist.c
686
if (!bn_wexpand(r, BN_NIST_256_TOP))
crypto/openssl/crypto/bn/bn_nist.c
689
nist_cp_bn(r_d, a_d, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
693
nist_cp_bn_0(buf.bn, a_d + BN_NIST_256_TOP, top - BN_NIST_256_TOP,
crypto/openssl/crypto/bn/bn_nist.c
694
BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
792
BN_ULONG t_d[BN_NIST_256_TOP];
crypto/openssl/crypto/bn/bn_nist.c
802
carry = (int)bn_add_words(t_d, t_d, c_d, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
808
for (i = BN_NIST_256_TOP; i != 0; --i) {
crypto/openssl/crypto/bn/bn_nist.c
816
carry += (int)bn_add_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
821
carry += (int)bn_add_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
826
carry += (int)bn_add_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
831
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
836
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
841
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
846
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
853
BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
856
BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
861
res = ((*adjust)(c_d, r_d, _nist_p_256[0], BN_NIST_256_TOP) && carry)
crypto/openssl/crypto/bn/bn_nist.c
864
nist_cp_bn(r_d, res, BN_NIST_256_TOP);
crypto/openssl/crypto/bn/bn_nist.c
865
r->top = BN_NIST_256_TOP;