Lines Matching defs:fe51
267 typedef uint64_t fe51[5];
300 static void fe51_frombytes(fe51 h, const uint8_t *s)
320 static void fe51_tobytes(uint8_t *s, const fe51 h)
380 void x25519_fe51_mul(fe51 h, const fe51 f, const fe51 g);
381 void x25519_fe51_sqr(fe51 h, const fe51 f);
382 void x25519_fe51_mul121666(fe51 h, fe51 f);
390 static void fe51_mul(fe51 h, const fe51 f, const fe51 g)
448 static void fe51_sq(fe51 h, const fe51 f)
502 static void fe51_mul121666(fe51 h, fe51 f)
529 static void fe51_add(fe51 h, const fe51 f, const fe51 g)
538 static void fe51_sub(fe51 h, const fe51 f, const fe51 g)
551 static void fe51_0(fe51 h)
560 static void fe51_1(fe51 h)
569 static void fe51_copy(fe51 h, const fe51 f)
578 static void fe51_cswap(fe51 f, fe51 g, unsigned int b)
591 static void fe51_invert(fe51 out, const fe51 z)
593 fe51 t0;
594 fe51 t1;
595 fe51 t2;
596 fe51 t3;
689 fe51 x1, x2, z2, x3, z3, tmp0, tmp1;