Home
last modified time | relevance | path

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

/external/python/cpython2/Objects/
Dintobject.c1171 unsigned long absn; in int_to_decimal_string() local
1173 absn = n < 0 ? 0UL - n : n; in int_to_decimal_string()
1175 *--p = '0' + (char)(absn % 10); in int_to_decimal_string()
1176 absn /= 10; in int_to_decimal_string()
1177 } while (absn); in int_to_decimal_string()