Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dintobject.c1175 unsigned long absn; in int_to_decimal_string() local
1177 absn = n < 0 ? 0UL - n : n; in int_to_decimal_string()
1179 *--p = '0' + (char)(absn % 10); in int_to_decimal_string()
1180 absn /= 10; in int_to_decimal_string()
1181 } while (absn); in int_to_decimal_string()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dintobject.c1149 unsigned long absn; in int_to_decimal_string() local
1151 absn = n < 0 ? 0UL - n : n; in int_to_decimal_string()
1153 *--p = '0' + (char)(absn % 10); in int_to_decimal_string()
1154 absn /= 10; in int_to_decimal_string()
1155 } while (absn); in int_to_decimal_string()