Lines Matching defs:digit
1317 int half_eps, digit, round_up, negate=0;
1442 /* for 0 <= j < ndigits, HEX_DIGIT(j) gives the jth most significant digit */
1466 for (digit = HEX_DIGIT(ndigits-1); digit != 0; digit /= 2)
1489 /* rounding required. key_digit is the index of the hex digit
1495 digit = HEX_DIGIT(key_digit);
1496 x = 16.0*x + (double)(digit & (16-2*half_eps));
1500 if ((digit & half_eps) != 0) {
1502 if ((digit & (3*half_eps-1)) != 0 || (half_eps == 8 &&