Home
last modified time | relevance | path

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

/external/python/cpython3/Objects/
Dfloatobject.c1281 const char *s, *coeff_start, *s_store, *coeff_end, *exp_start, *s_end; in float_fromhex() local
1344 x = _Py_parse_inf_or_nan(s, (char **)&coeff_end); in float_fromhex()
1345 if (coeff_end != s) { in float_fromhex()
1346 s = coeff_end; in float_fromhex()
1377 coeff_end = s-1; in float_fromhex()
1380 coeff_end = s; in float_fromhex()
1383 ndigits = coeff_end - coeff_start; in float_fromhex()
1384 fdigits = coeff_end - s_store; in float_fromhex()
1409 coeff_end-(j) : \ in float_fromhex()
1410 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()