Searched refs:uval (Results 1 – 2 of 2) sorted by relevance
20 char attribute_hidden *_uintmaxtostr(register char * __restrict bufend, uintmax_t uval, in _uintmaxtostr() argument36 if (uval > INTMAX_MAX) { in _uintmaxtostr()37 uval = -uval; in _uintmaxtostr()76 digit = uval % base; in _uintmaxtostr()77 uval /= base; in _uintmaxtostr()90 } while (uval); in _uintmaxtostr()100 low = (unsigned int) uval; in _uintmaxtostr()101 high = (unsigned int) (uval >> (sizeof(unsigned int) * CHAR_BIT)); in _uintmaxtostr()
91 extern char *_uintmaxtostr(char * __restrict bufend, uintmax_t uval,
Completed in 2 milliseconds