Searched refs:quo_est (Results 1 - 1 of 1) sorted by relevance

/freebsd-10.1-release/contrib/gcc/
H A Dfold-const.c677 unsigned HOST_WIDE_INT quo_est, scale;
717 /* Guess the next quotient digit, quo_est, by dividing the first
719 quo_est is never low and is at most 2 high. */
725 quo_est = work / den[den_hi_sig];
727 quo_est = BASE - 1;
729 /* Refine quo_est so it's usually correct, and at most one high. */
730 tmp = work - quo_est * den[den_hi_sig];
732 && (den[den_hi_sig - 1] * quo_est
734 quo_est--;
743 work = quo_est * de
670 unsigned HOST_WIDE_INT quo_est, scale; local
[all...]

Completed in 107 milliseconds