Lines Matching refs:ndigits
1450 size_t ndigits, fraclen;
1476 digit string. ndigits will be the total number of digits ignoring
1481 ndigits = s - s1;
1487 if (!ndigits) {
1498 ndigits += s - s1;
1503 ndigits gives the total number of digits ignoring leading zeros. A
1505 if (!ndigits && !lz) {
1511 /* Range check ndigits and fraclen to make sure that they, and values
1513 if (ndigits > MAX_DIGITS || fraclen > MAX_DIGITS) {
1518 nd = (int)ndigits;
1519 nd0 = (int)ndigits - (int)fraclen;
2248 _Py_dg_dtoa(double dd, int mode, int ndigits,
2251 /* Arguments ndigits, decpt, sign are similar to those
2263 2 ==> max(1,ndigits) significant digits. This gives a
2266 3 ==> through ndigits past the decimal point. This
2269 ndigits can be negative.
2416 ndigits = 0;
2422 if (ndigits <= 0)
2423 ndigits = 1;
2424 ilim = ilim1 = i = ndigits;
2430 i = ndigits + k + 1;
2545 if (ndigits < 0 && ilim <= 0) {
2690 k = -1 - ndigits;