Lines Matching refs:result
65 uint64_t result = 0;
71 result = result * 10 + digit;
73 return result;
365 // Since the result was guaranteed to lie inside the number the
453 // Easy case: if we have less digits than the divisor than the result is 0.
461 uint16_t result = 0;
468 // the result should be small (less than 10).
472 result += bigits_[used_digits_ - 1];
488 result += quotient;
490 return result;
494 result += division_estimate;
500 return result;
505 result++;
507 return result;
513 int result = 0;
516 result++;
518 return result;