Searched defs:NDIGITS_MIN (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Python/
H A Dbltinmodule.c2202 always rounds to itself. For ndigits < NDIGITS_MIN, x always
2205 #define NDIGITS_MIN (-(int)((DBL_MAX_EXP + 1) * 0.30103)) macro
2209 else if (ndigits < NDIGITS_MIN)
2217 #undef NDIGITS_MIN macro
/external/python/cpython3/Objects/
H A Dfloatobject.c1051 always rounds to itself. For ndigits < NDIGITS_MIN, x always
1054 #define NDIGITS_MIN (-(int)((DBL_MAX_EXP + 1) * 0.30103)) macro
1058 else if (ndigits < NDIGITS_MIN)
1065 #undef NDIGITS_MIN macro

Completed in 102 milliseconds