Searched refs:fe_loose (Results 1 – 2 of 2) sorted by relevance
/external/boringssl/src/third_party/fiat/ |
D | internal.h | 57 typedef struct fe_loose { uint64_t v[5]; } fe_loose; struct 68 typedef struct fe_loose { uint32_t v[10]; } fe_loose; struct 97 fe_loose X; 98 fe_loose Y; 99 fe_loose Z; 100 fe_loose T; 104 fe_loose yplusx; 105 fe_loose yminusx; 106 fe_loose xy2d; 110 fe_loose YplusX; [all …]
|
D | curve25519.c | 186 static void fe_loose_0(fe_loose *h) { in fe_loose_0() 187 OPENSSL_memset(h, 0, sizeof(fe_loose)); in fe_loose_0() 196 static void fe_loose_1(fe_loose *h) { in fe_loose_1() 197 OPENSSL_memset(h, 0, sizeof(fe_loose)); in fe_loose_1() 203 static void fe_add(fe_loose *h, const fe *f, const fe *g) { in fe_add() 212 static void fe_sub(fe_loose *h, const fe *f, const fe *g) { in fe_sub() 219 static void fe_carry(fe *h, const fe_loose* f) { in fe_carry() 234 static void fe_mul_ltt(fe_loose *h, const fe *f, const fe *g) { in fe_mul_ltt() 238 static void fe_mul_llt(fe_loose *h, const fe_loose *f, const fe *g) { in fe_mul_llt() 246 static void fe_mul_tlt(fe *h, const fe_loose *f, const fe *g) { in fe_mul_tlt() [all …]
|