Home | History | Annotate | Download | only in StdLib

Lines Matching defs:Result

138     integer, and return the result.

187 long Result = 0;
236 Previous = Result;
237 Result = (Result * base) + (long int)temp;
238 if( Result <= Previous) { // Detect Overflow
240 Result = LONG_MIN;
243 Result = LONG_MAX;
252 Result = -Result;
259 return Result;
276 unsigned long Result = 0;
319 Previous = Result;
320 Result = (Result * base) + (unsigned long)temp;
321 if( Result < Previous) { // If we overflowed
322 Result = ULONG_MAX;
333 return Result;
351 long long Result = 0;
400 Previous = Result;
401 Result = (Result * base) + (long long int)temp;
402 if( Result <= Previous) { // Detect Overflow
404 Result = LLONG_MIN;
407 Result = LLONG_MAX;
416 Result = -Result;
423 return Result;
440 unsigned long long Result = 0;
483 Previous = Result;
484 Result = (Result * base) + (unsigned long long)temp;
485 if( Result < Previous) { // If we overflowed
486 Result = ULLONG_MAX;
497 return Result;