Lines Matching refs:y
61 mask_t gf_eq(const gf x, const gf y);
82 static ossl_inline void gf_sqrn(gf_s * RESTRICT y, const gf x, int n) in gf_sqrn() argument
88 ossl_gf_sqr(y, x); in gf_sqrn()
92 ossl_gf_sqr(y, tmp); in gf_sqrn()
96 ossl_gf_sqr(tmp, y); in gf_sqrn()
97 ossl_gf_sqr(y, tmp); in gf_sqrn()
133 static ossl_inline void gf_cond_sel(gf x, const gf y, const gf z, mask_t is_z) in gf_cond_sel() argument
140 y[0].limb[i]); in gf_cond_sel()
144 y[0].limb[i]); in gf_cond_sel()
152 gf y; in gf_cond_neg() local
154 gf_sub(y, ZERO, x); in gf_cond_neg()
155 gf_cond_sel(x, x, y, neg); in gf_cond_neg()
159 static ossl_inline void gf_cond_swap(gf x, gf_s * RESTRICT y, mask_t swap) in gf_cond_swap() argument
165 constant_time_cond_swap_32(swap, &(x[0].limb[i]), &(y->limb[i])); in gf_cond_swap()
168 constant_time_cond_swap_64(swap, &(x[0].limb[i]), &(y->limb[i])); in gf_cond_swap()