Home
last modified time | relevance | path

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

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