Lines Matching defs:fe64
29 typedef uint64_t fe64[4];
42 void x25519_fe64_mul(fe64 h, const fe64 f, const fe64 g);
43 void x25519_fe64_sqr(fe64 h, const fe64 f);
44 void x25519_fe64_mul121666(fe64 h, fe64 f);
45 void x25519_fe64_add(fe64 h, const fe64 f, const fe64 g);
46 void x25519_fe64_sub(fe64 h, const fe64 f, const fe64 g);
47 void x25519_fe64_tobytes(uint8_t *s, const fe64 f);
71 static void fe64_frombytes(fe64 h, const uint8_t *s)
79 static void fe64_0(fe64 h)
87 static void fe64_1(fe64 h)
95 static void fe64_copy(fe64 h, const fe64 f)
103 static void fe64_cswap(fe64 f, fe64 g, unsigned int b)
116 static void fe64_invert(fe64 out, const fe64 z)
118 fe64 t0;
119 fe64 t1;
120 fe64 t2;
121 fe64 t3;
214 fe64 x1, x2, z2, x3, z3, tmp0, tmp1;