Lines Matching defs:fe64
19 typedef uint64_t fe64[4];
32 void x25519_fe64_mul(fe64 h, const fe64 f, const fe64 g);
33 void x25519_fe64_sqr(fe64 h, const fe64 f);
34 void x25519_fe64_mul121666(fe64 h, fe64 f);
35 void x25519_fe64_add(fe64 h, const fe64 f, const fe64 g);
36 void x25519_fe64_sub(fe64 h, const fe64 f, const fe64 g);
37 void x25519_fe64_tobytes(uint8_t *s, const fe64 f);
61 static void fe64_frombytes(fe64 h, const uint8_t *s)
69 static void fe64_0(fe64 h)
77 static void fe64_1(fe64 h)
85 static void fe64_copy(fe64 h, const fe64 f)
93 static void fe64_cswap(fe64 f, fe64 g, unsigned int b)
106 static void fe64_invert(fe64 out, const fe64 z)
108 fe64 t0;
109 fe64 t1;
110 fe64 t2;
111 fe64 t3;
204 fe64 x1, x2, z2, x3, z3, tmp0, tmp1;