Home
last modified time | relevance | path

Searched refs:Fq2Cp (Results 1 – 6 of 6) sorted by relevance

/external/epid-sdk/epid/member/tiny/math/src/
Defq2.c35 Fq2Cp(&result->X, &in->X); in EFq2Cp()
36 Fq2Cp(&result->Y, &in->Y); in EFq2Cp()
37 Fq2Cp(&result->Z, &in->Z); in EFq2Cp()
51 Fq2Cp(&result->X, &in->x); in EFq2FromAffine()
52 Fq2Cp(&result->Y, &in->y); in EFq2FromAffine()
173 Fq2Cp(&result->X, &in->X); in EFq2Neg()
175 Fq2Cp(&result->Z, &in->Z); in EFq2Neg()
Dpairing.c59 Fq2Cp(&Qout->x, &Qin->x); in piOp()
60 Fq2Cp(&Qout->y, &Qin->y); in piOp()
79 Fq2Cp(&Pout->z0.y0, &Pin->z0.y0); in frob_op()
80 Fq2Cp(&Pout->z1.y0, &Pin->z1.y0); in frob_op()
81 Fq2Cp(&Pout->z0.y1, &Pin->z0.y1); in frob_op()
82 Fq2Cp(&Pout->z1.y1, &Pin->z1.y1); in frob_op()
83 Fq2Cp(&Pout->z0.y2, &Pin->z0.y2); in frob_op()
84 Fq2Cp(&Pout->z1.y2, &Pin->z1.y2); in frob_op()
261 Fq2Cp(&X, &Q->x); in PairingCompute()
262 Fq2Cp(&Y, &Q->y); in PairingCompute()
Dfq6.c128 Fq2Cp(&result->y2, &in->y1); in Fq6MulV()
129 Fq2Cp(&result->y1, &in->y0); in Fq6MulV()
130 Fq2Cp(&result->y0, temp); in Fq6MulV()
177 Fq2Cp(&result->y0, &in->y0); in Fq6Cp()
178 Fq2Cp(&result->y1, &in->y1); in Fq6Cp()
179 Fq2Cp(&result->y2, &in->y2); in Fq6Cp()
Dfq2.c24 void Fq2Cp(Fq2Elem* result, Fq2Elem const* in) { in Fq2Cp() function
60 Fq2Cp(result, temp); in Fq2Exp()
/external/epid-sdk/epid/member/tiny/math/
Dfq2.h35 void Fq2Cp(Fq2Elem* result, Fq2Elem const* in);
/external/epid-sdk/epid/member/tiny/math/unittests/
Dfq2-test.cc38 Fq2Cp(&result, &a); in TEST()