Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dfloatobject.c1260 const char *s, *coeff_start, *s_store, *coeff_end, *exp_start, *s_end; in float_fromhex() local
1323 x = _Py_parse_inf_or_nan(s, (char **)&coeff_end); in float_fromhex()
1324 if (coeff_end != s) { in float_fromhex()
1325 s = coeff_end; in float_fromhex()
1356 coeff_end = s-1; in float_fromhex()
1359 coeff_end = s; in float_fromhex()
1362 ndigits = coeff_end - coeff_start; in float_fromhex()
1363 fdigits = coeff_end - s_store; in float_fromhex()
1388 coeff_end-(j) : \ in float_fromhex()
1389 coeff_end-1-(j))) in float_fromhex()
/external/python/cpython2/Objects/
Dfloatobject.c1455 char *s, *coeff_start, *s_store, *coeff_end, *exp_start, *s_end; in float_fromhex() local
1559 coeff_end = s-1; in float_fromhex()
1562 coeff_end = s; in float_fromhex()
1565 ndigits = coeff_end - coeff_start; in float_fromhex()
1566 fdigits = coeff_end - s_store; in float_fromhex()
1591 coeff_end-(j) : \ in float_fromhex()
1592 coeff_end-1-(j))) in float_fromhex()