Searched refs:digit (Results 1 – 1 of 1) sorted by relevance
30 char c, digit; in strtoul_hex() local52 digit = hex_digit_value(c); in strtoul_hex()53 while (digit >= 0) { in strtoul_hex()54 if ((acc > cutoff) || ((acc == cutoff) && ((uint64_t)digit > cutlim))) { in strtoul_hex()59 acc += (uint64_t)digit; in strtoul_hex()64 digit = hex_digit_value(c); in strtoul_hex()
Completed in 5 milliseconds