Searched refs:simple_strntoull (Results 1 - 1 of 1) sorted by relevance

/linux-master/lib/
H A Dvsprintf.c64 static unsigned long long simple_strntoull(const char *startp, char **endp, unsigned int base, size_t max_chars) function
99 return simple_strntoull(cp, endp, base, INT_MAX);
138 * simple_strntoull() safely handles receiving max_chars==0 in the
140 * If max_chars == 0 we can drop through and pass it to simple_strntoull()
144 return -simple_strntoull(cp + 1, endp, base, max_chars - 1);
146 return simple_strntoull(cp, endp, base, max_chars);
3660 val.u = simple_strntoull(str, &next, base,

Completed in 295 milliseconds