Lines Matching refs:gf
14 static const gf MODULUS = {
21 void gf_serialize(uint8_t *serial, const gf x, int with_hibit)
26 gf red;
46 mask_t gf_hibit(const gf x)
48 gf y;
56 mask_t gf_lobit(const gf x)
58 gf y;
66 mask_t gf_deserialize(gf x, const uint8_t serial[SER_BYTES], int with_hibit,
100 void gf_strong_reduce(gf a)
141 /* Subtract two gf elements d=a-b */
142 void gf_sub(gf d, const gf a, const gf b)
150 void gf_add(gf d, const gf a, const gf b)
157 mask_t gf_eq(const gf a, const gf b)
159 gf c;
172 mask_t gf_isr(gf a, const gf x)
174 gf L0, L1, L2;