Lines Matching refs:temp2
102 uint32_t temp2[16]; variable
106 memset(temp2, 0, sizeof(temp)); in nullEverything()
137 ecc_fieldMult(one, null, temp2, arrayLength); in fieldMultTest()
138 assert(ecc_isSame(temp2, null64, arrayLength * 2)); in fieldMultTest()
140 ecc_fieldMult(one, two, temp2, arrayLength); in fieldMultTest()
141 assert(ecc_isSame(temp2, two64, arrayLength * 2)); in fieldMultTest()
143 ecc_fieldMult(two, two, temp2, arrayLength); in fieldMultTest()
144 assert(ecc_isSame(temp2, four64, arrayLength * 2)); in fieldMultTest()
146 ecc_fieldMult(primeMinusOne, primeMinusOne, temp2, arrayLength); in fieldMultTest()
147 assert(ecc_isSame(temp2, resultQuadMod, arrayLength * 2)); in fieldMultTest()
150 ecc_fieldMult(temp, two, temp2, arrayLength); in fieldMultTest()
151 ecc_fieldModP(temp, temp2); in fieldMultTest()
156 ecc_fieldMult(primeMinusOne, primeMinusOne, temp2, arrayLength); in fieldModPTest()
157 ecc_fieldModP(temp, temp2); in fieldModPTest()
163 ecc_fieldMult(two, primeMinusOne, temp2, arrayLength); in fieldModPTest()
164 ecc_fieldModP(temp, temp2); in fieldModPTest()
173 ecc_fieldMult(orderMinusOne, orderMinusOne, temp2, arrayLength); in fieldModOTest()
174 ecc_fieldModO(temp2, temp, arrayLength * 2); in fieldModOTest()
180 ecc_fieldMult(two, orderMinusOne, temp2, arrayLength); in fieldModOTest()
181 ecc_fieldModO(temp2, temp, arrayLength * 2); in fieldModOTest()
210 ecc_fieldMult(temp, two, temp2, arrayLength); in fieldInvTest()
211 ecc_fieldModP(temp, temp2); in fieldInvTest()
215 ecc_fieldMult(temp, eight, temp2, arrayLength); in fieldInvTest()
216 ecc_fieldModP(temp, temp2); in fieldInvTest()
220 ecc_fieldMult(temp, three, temp2, arrayLength); in fieldInvTest()
221 ecc_fieldModP(temp, temp2); in fieldInvTest()
225 ecc_fieldMult(temp, six, temp2, arrayLength); in fieldInvTest()
226 ecc_fieldModP(temp, temp2); in fieldInvTest()
230 ecc_fieldMult(temp, primeMinusOne, temp2, arrayLength); in fieldInvTest()
231 ecc_fieldModP(temp, temp2); in fieldInvTest()