Searched refs:absn (Results 1 – 1 of 1) sorted by relevance
1171 unsigned long absn; in int_to_decimal_string() local1173 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()