• Home
  • Raw
  • Download

Lines Matching refs:f

164 static __always_inline void fe_tobytes(u8 s[32], const fe *f)  in fe_tobytes()  argument
167 fe_freeze(h, f->v); in fe_tobytes()
203 static __always_inline void fe_copy(fe *h, const fe *f) in fe_copy() argument
205 memmove(h, f, sizeof(u32) * 10); in fe_copy()
208 static __always_inline void fe_copy_lt(fe_loose *h, const fe *f) in fe_copy_lt() argument
210 memmove(h, f, sizeof(u32) * 10); in fe_copy_lt()
264 static __always_inline void fe_add(fe_loose *h, const fe *f, const fe *g) in fe_add() argument
266 fe_add_impl(h->v, f->v, g->v); in fe_add()
307 static __always_inline void fe_sub(fe_loose *h, const fe *f, const fe *g) in fe_sub() argument
309 fe_sub_impl(h->v, f->v, g->v); in fe_sub()
428 static __always_inline void fe_mul_ttt(fe *h, const fe *f, const fe *g) in fe_mul_ttt() argument
430 fe_mul_impl(h->v, f->v, g->v); in fe_mul_ttt()
433 static __always_inline void fe_mul_tlt(fe *h, const fe_loose *f, const fe *g) in fe_mul_tlt() argument
435 fe_mul_impl(h->v, f->v, g->v); in fe_mul_tlt()
439 fe_mul_tll(fe *h, const fe_loose *f, const fe_loose *g) in fe_mul_tll() argument
441 fe_mul_impl(h->v, f->v, g->v); in fe_mul_tll()
550 static __always_inline void fe_sq_tl(fe *h, const fe_loose *f) in fe_sq_tl() argument
552 fe_sqr_impl(h->v, f->v); in fe_sq_tl()
555 static __always_inline void fe_sq_tt(fe *h, const fe *f) in fe_sq_tt() argument
557 fe_sqr_impl(h->v, f->v); in fe_sq_tt()
622 static noinline void fe_cswap(fe *f, fe *g, unsigned int b) in fe_cswap() argument
627 u32 x = f->v[i] ^ g->v[i]; in fe_cswap()
629 f->v[i] ^= x; in fe_cswap()
751 static __always_inline void fe_mul121666(fe *h, const fe_loose *f) in fe_mul121666() argument
753 fe_mul_121666_impl(h->v, f->v); in fe_mul121666()