Symbol: BN_NIST_224_TOP
crypto/openssl/crypto/bn/bn_nist.c
115
static const BN_ULONG _nist_p_224[][BN_NIST_224_TOP] = {
crypto/openssl/crypto/bn/bn_nist.c
196
BN_NIST_224_TOP,
crypto/openssl/crypto/bn/bn_nist.c
197
BN_NIST_224_TOP,
crypto/openssl/crypto/bn/bn_nist.c
32
static const BN_ULONG _nist_p_224[][BN_NIST_224_TOP] = {
crypto/openssl/crypto/bn/bn_nist.c
492
BN_ULONG bn[BN_NIST_224_TOP];
crypto/openssl/crypto/bn/bn_nist.c
493
unsigned int ui[BN_NIST_224_TOP * sizeof(BN_ULONG) / sizeof(unsigned int)];
crypto/openssl/crypto/bn/bn_nist.c
495
BN_ULONG c_d[BN_NIST_224_TOP], *res;
crypto/openssl/crypto/bn/bn_nist.c
517
if (!bn_wexpand(r, BN_NIST_224_TOP))
crypto/openssl/crypto/bn/bn_nist.c
520
nist_cp_bn(r_d, a_d, BN_NIST_224_TOP);
crypto/openssl/crypto/bn/bn_nist.c
526
nist_cp_bn_0(c_d, a_d + (BN_NIST_224_TOP - 1),
crypto/openssl/crypto/bn/bn_nist.c
527
top - (BN_NIST_224_TOP - 1), BN_NIST_224_TOP);
crypto/openssl/crypto/bn/bn_nist.c
531
r_d[BN_NIST_224_TOP - 1] &= BN_MASK2l;
crypto/openssl/crypto/bn/bn_nist.c
533
nist_cp_bn_0(buf.bn, a_d + BN_NIST_224_TOP, top - BN_NIST_224_TOP,
crypto/openssl/crypto/bn/bn_nist.c
534
BN_NIST_224_TOP);
crypto/openssl/crypto/bn/bn_nist.c
594
BN_ULONG t_d[BN_NIST_224_TOP];
crypto/openssl/crypto/bn/bn_nist.c
597
carry = (int)bn_add_words(r_d, r_d, t_d, BN_NIST_224_TOP);
crypto/openssl/crypto/bn/bn_nist.c
599
carry += (int)bn_add_words(r_d, r_d, t_d, BN_NIST_224_TOP);
crypto/openssl/crypto/bn/bn_nist.c
601
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP);
crypto/openssl/crypto/bn/bn_nist.c
603
carry -= (int)bn_sub_words(r_d, r_d, t_d, BN_NIST_224_TOP);
crypto/openssl/crypto/bn/bn_nist.c
606
carry = (int)(r_d[BN_NIST_224_TOP - 1] >> 32);
crypto/openssl/crypto/bn/bn_nist.c
613
BN_NIST_224_TOP);
crypto/openssl/crypto/bn/bn_nist.c
615
carry = (int)(~(r_d[BN_NIST_224_TOP - 1] >> 32)) & 1;
crypto/openssl/crypto/bn/bn_nist.c
626
BN_NIST_224_TOP);
crypto/openssl/crypto/bn/bn_nist.c
632
res = ((*adjust)(c_d, r_d, _nist_p_224[0], BN_NIST_224_TOP) && carry)
crypto/openssl/crypto/bn/bn_nist.c
635
nist_cp_bn(r_d, res, BN_NIST_224_TOP);
crypto/openssl/crypto/bn/bn_nist.c
636
r->top = BN_NIST_224_TOP;