Symbol: mask_t
crypto/openssl/crypto/ec/curve448/curve448.c
188
mask_t succ;
crypto/openssl/crypto/ec/curve448/curve448.c
202
mask_t out;
crypto/openssl/crypto/ec/curve448/curve448.c
245
mask_t invert;
crypto/openssl/crypto/ec/curve448/curve448.c
326
mask_t low;
crypto/openssl/crypto/ec/curve448/curve448.c
327
mask_t succ;
crypto/openssl/crypto/ec/curve448/curve448.c
386
mask_t swap = 0;
crypto/openssl/crypto/ec/curve448/curve448.c
387
mask_t nz;
crypto/openssl/crypto/ec/curve448/curve448.c
397
mask_t k_t;
crypto/openssl/crypto/ec/curve448/curve448.c
40
mask_t ret;
crypto/openssl/crypto/ec/curve448/curve448.c
88
static ossl_inline void cond_neg_niels(niels_t n, mask_t neg)
crypto/openssl/crypto/ec/curve448/f_generic.c
152
mask_t gf_eq(const gf a, const gf b)
crypto/openssl/crypto/ec/curve448/f_generic.c
155
mask_t ret = 0;
crypto/openssl/crypto/ec/curve448/f_generic.c
167
mask_t gf_isr(gf a, const gf x)
crypto/openssl/crypto/ec/curve448/f_generic.c
46
mask_t gf_hibit(const gf x)
crypto/openssl/crypto/ec/curve448/f_generic.c
56
mask_t gf_lobit(const gf x)
crypto/openssl/crypto/ec/curve448/f_generic.c
66
mask_t gf_deserialize(gf x, const uint8_t serial[SER_BYTES], int with_hibit,
crypto/openssl/crypto/ec/curve448/f_generic.c
74
mask_t succ;
crypto/openssl/crypto/ec/curve448/f_generic.c
92
succ = with_hibit ? 0 - (mask_t)1 : ~gf_hibit(x);
crypto/openssl/crypto/ec/curve448/field.h
132
static ossl_inline void gf_cond_sel(gf x, const gf y, const gf z, mask_t is_z)
crypto/openssl/crypto/ec/curve448/field.h
149
static ossl_inline void gf_cond_neg(gf x, mask_t neg)
crypto/openssl/crypto/ec/curve448/field.h
158
static ossl_inline void gf_cond_swap(gf x, gf_s *RESTRICT y, mask_t swap)
crypto/openssl/crypto/ec/curve448/field.h
60
mask_t gf_isr(gf a, const gf x); /** a^2 x = 1, QNR, or 0 if x=0. Return true if successful */
crypto/openssl/crypto/ec/curve448/field.h
61
mask_t gf_eq(const gf x, const gf y);
crypto/openssl/crypto/ec/curve448/field.h
62
mask_t gf_lobit(const gf x);
crypto/openssl/crypto/ec/curve448/field.h
63
mask_t gf_hibit(const gf x);
crypto/openssl/crypto/ec/curve448/field.h
66
mask_t gf_deserialize(gf x, const uint8_t serial[SER_BYTES], int with_hibit,
crypto/openssl/crypto/ec/curve448/word.h
73
static ossl_inline c448_bool_t mask_to_bool(mask_t m)
crypto/openssl/crypto/ec/curve448/word.h
78
static ossl_inline mask_t bool_to_mask(c448_bool_t m)
crypto/openssl/crypto/ec/curve448/word.h
81
mask_t ret = 0;
crypto/openssl/crypto/ec/curve448/word.h
83
unsigned int limit = sizeof(c448_bool_t) / sizeof(mask_t);