Searched refs:max_chars (Results 1 – 3 of 3) sorted by relevance
/lib/ |
D | kstrtox.h | 8 size_t max_chars);
|
D | kstrtox.c | 51 size_t max_chars) in _parse_integer_limit() argument 58 while (max_chars--) { in _parse_integer_limit()
|
D | vsprintf.c | 61 static noinline unsigned long long simple_strntoull(const char *startp, size_t max_chars, char **en… in simple_strntoull() argument 70 if (prefix_chars < max_chars) { in simple_strntoull() 71 rv = _parse_integer_limit(cp, base, &result, max_chars - prefix_chars); in simple_strntoull() 76 cp = startp + max_chars; in simple_strntoull() 131 static long long simple_strntoll(const char *cp, size_t max_chars, char **endp, in simple_strntoll() argument 140 if (*cp == '-' && max_chars > 0) in simple_strntoll() 141 return -simple_strntoull(cp + 1, max_chars - 1, endp, base); in simple_strntoll() 143 return simple_strntoull(cp, max_chars, endp, base); in simple_strntoll()
|