Home | History | Annotate | Download | only in native

Lines Matching refs:Temp

69   uint64_t R[RM_SIZE], S[STemp_SIZE], mplus[RM_SIZE], mminus[RM_SIZE], Temp[STemp_SIZE];
75 memset (Temp , 0, STemp_SIZE * sizeof (uint64_t));
138 memset (Temp + RM_SIZE, 0, (STemp_SIZE - RM_SIZE) * sizeof (uint64_t));
139 memcpy (Temp, R, RM_SIZE * sizeof (uint64_t));
150 addHighPrecision (Temp, TempLength, mplus, mplus_Length);
152 if (compareHighPrecision (Temp, TempLength, S, SLength) >= 0)
184 Temp[SLength] = 0;
185 memcpy (Temp, S, SLength * sizeof (uint64_t));
186 simpleShiftLeftHighPrecision (Temp, TempLength, i);
187 if (compareHighPrecision (R, RLength, Temp, TempLength) >= 0)
189 subtractHighPrecision (R, RLength, Temp, TempLength);
196 memset (Temp + RLength, 0, (STemp_SIZE - RLength) * sizeof (uint64_t));
197 memcpy (Temp, R, RLength * sizeof (uint64_t));
199 addHighPrecision (Temp, TempLength, mplus, mplus_Length);
201 high = compareHighPrecision (Temp, TempLength, S, SLength) >= 0;