Home
last modified time | relevance | path

Searched refs:abs_exp (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython3/Python/
Ddtoa.c1441 ULong y, z, abs_exp; in _Py_dg_strtod() local
1539 abs_exp = 0; in _Py_dg_strtod()
1541 abs_exp = 10*abs_exp + (c - '0'); in _Py_dg_strtod()
1548 if (s - s1 > 9 || abs_exp > MAX_ABS_EXP) in _Py_dg_strtod()
1551 e = (int)abs_exp; in _Py_dg_strtod()
/external/python/cpython2/Python/
Ddtoa.c1514 ULong y, z, abs_exp; in _Py_dg_strtod() local
1612 abs_exp = 0; in _Py_dg_strtod()
1614 abs_exp = 10*abs_exp + (c - '0'); in _Py_dg_strtod()
1621 if (s - s1 > 9 || abs_exp > MAX_ABS_EXP) in _Py_dg_strtod()
1624 e = (int)abs_exp; in _Py_dg_strtod()