Symbol: c448_word_t
crypto/openssl/crypto/ec/curve448/point_448.h
68
c448_word_t limb[C448_SCALAR_LIMBS];
crypto/openssl/crypto/ec/curve448/scalar.c
119
out->limb[i] = (c448_word_t)chain;
crypto/openssl/crypto/ec/curve448/scalar.c
122
sc_subx(out, out->limb, sc_p, sc_p, (c448_word_t)chain);
crypto/openssl/crypto/ec/curve448/scalar.c
132
c448_word_t out = 0;
crypto/openssl/crypto/ec/curve448/scalar.c
134
for (j = 0; j < sizeof(c448_word_t) && k < nbytes; j++, k++)
crypto/openssl/crypto/ec/curve448/scalar.c
135
out |= ((c448_word_t)ser[k]) << (8 * j);
crypto/openssl/crypto/ec/curve448/scalar.c
17
static const c448_word_t MONTGOMERY_FACTOR = (c448_word_t)0x3bd440fae918bc5ULL;
crypto/openssl/crypto/ec/curve448/scalar.c
205
for (j = 0; j < sizeof(c448_word_t); j++, k++)
crypto/openssl/crypto/ec/curve448/scalar.c
212
c448_word_t mask = 0 - (a->limb[0] & 1);
crypto/openssl/crypto/ec/curve448/scalar.c
218
out->limb[i] = (c448_word_t)chain;
crypto/openssl/crypto/ec/curve448/scalar.c
223
out->limb[i] = out->limb[i] >> 1 | (c448_word_t)(chain << (WBITS - 1));
crypto/openssl/crypto/ec/curve448/scalar.c
38
const c448_word_t accum[C448_SCALAR_LIMBS],
crypto/openssl/crypto/ec/curve448/scalar.c
40
const curve448_scalar_t p, c448_word_t extra)
crypto/openssl/crypto/ec/curve448/scalar.c
44
c448_word_t borrow;
crypto/openssl/crypto/ec/curve448/scalar.c
48
out->limb[i] = (c448_word_t)chain;
crypto/openssl/crypto/ec/curve448/scalar.c
51
borrow = (c448_word_t)chain + extra; /* = 0 or -1 */
crypto/openssl/crypto/ec/curve448/scalar.c
56
out->limb[i] = (c448_word_t)chain;
crypto/openssl/crypto/ec/curve448/scalar.c
65
c448_word_t accum[C448_SCALAR_LIMBS + 1] = { 0 };
crypto/openssl/crypto/ec/curve448/scalar.c
66
c448_word_t hi_carry = 0;
crypto/openssl/crypto/ec/curve448/scalar.c
69
c448_word_t mand = a->limb[i];
crypto/openssl/crypto/ec/curve448/scalar.c
70
const c448_word_t *mier = b->limb;
crypto/openssl/crypto/ec/curve448/scalar.c
75
accum[j] = (c448_word_t)chain;
crypto/openssl/crypto/ec/curve448/scalar.c
78
accum[j] = (c448_word_t)chain;
crypto/openssl/crypto/ec/curve448/scalar.c
86
accum[j - 1] = (c448_word_t)chain;
crypto/openssl/crypto/ec/curve448/scalar.c
91
accum[j - 1] = (c448_word_t)chain;