Lines Matching refs:fe51
277 typedef uint64_t fe51[5];
310 static void fe51_frombytes(fe51 h, const uint8_t *s)
330 static void fe51_tobytes(uint8_t *s, const fe51 h)
390 void x25519_fe51_mul(fe51 h, const fe51 f, const fe51 g);
391 void x25519_fe51_sqr(fe51 h, const fe51 f);
392 void x25519_fe51_mul121666(fe51 h, fe51 f);
400 static void fe51_mul(fe51 h, const fe51 f, const fe51 g)
458 static void fe51_sq(fe51 h, const fe51 f)
512 static void fe51_mul121666(fe51 h, fe51 f)
539 static void fe51_add(fe51 h, const fe51 f, const fe51 g)
548 static void fe51_sub(fe51 h, const fe51 f, const fe51 g)
561 static void fe51_0(fe51 h)
570 static void fe51_1(fe51 h)
579 static void fe51_copy(fe51 h, const fe51 f)
588 static void fe51_cswap(fe51 f, fe51 g, unsigned int b)
601 static void fe51_invert(fe51 out, const fe51 z)
603 fe51 t0;
604 fe51 t1;
605 fe51 t2;
606 fe51 t3;
699 fe51 x1, x2, z2, x3, z3, tmp0, tmp1;