Lines Matching defs:digits
8326 /* Times 4: a decimal digit takes more than 3 binary digits.
8327 * NV_DIG: mantissa takes than many decimal digits.
8371 unsigned digits = 0;
8376 digits = 10 * digits + (*pp++ - '0');
8387 /* Add check for digits != 0 because it seems that some
8390 if (digits && digits < sizeof(ebuf) - NV_DIG - 10) {
8392 Gconvert(nv, (int)digits, 0, ebuf);
8394 if (*ebuf) /* May return an empty string for digits==0 */
8397 } else if (!digits) {
9113 /* See earlier comment about buggy Gconvert when digits,
9117 if (*PL_efloatbuf) /* May return an empty string for digits==0 */