Home | History | Annotate | Download | only in native

Lines Matching defs:Temp

70   uint64_t R[RM_SIZE], S[STemp_SIZE], mplus[RM_SIZE], mminus[RM_SIZE], Temp[STemp_SIZE];
76 memset (Temp , 0, STemp_SIZE * sizeof (uint64_t));
139 memset (Temp + RM_SIZE, 0, (STemp_SIZE - RM_SIZE) * sizeof (uint64_t));
140 memcpy (Temp, R, RM_SIZE * sizeof (uint64_t));
151 addHighPrecision (Temp, TempLength, mplus, mplus_Length);
153 if (compareHighPrecision (Temp, TempLength, S, SLength) >= 0)
185 Temp[SLength] = 0;
186 memcpy (Temp, S, SLength * sizeof (uint64_t));
187 simpleShiftLeftHighPrecision (Temp, TempLength, i);
188 if (compareHighPrecision (R, RLength, Temp, TempLength) >= 0)
190 subtractHighPrecision (R, RLength, Temp, TempLength);
197 memset (Temp + RLength, 0, (STemp_SIZE - RLength) * sizeof (uint64_t));
198 memcpy (Temp, R, RLength * sizeof (uint64_t));
200 addHighPrecision (Temp, TempLength, mplus, mplus_Length);
202 high = compareHighPrecision (Temp, TempLength, S, SLength) >= 0;