Searched refs:max_chars (Results 1 – 3 of 3) sorted by relevance
/linux-4.19.296/lib/ |
D | kstrtox.h | 8 size_t max_chars);
|
D | kstrtox.c | 50 size_t max_chars) in _parse_integer_limit() argument 57 while (max_chars--) { in _parse_integer_limit()
|
D | vsprintf.c | 50 static unsigned long long simple_strntoull(const char *startp, size_t max_chars, in simple_strntoull() argument 60 if (prefix_chars < max_chars) { in simple_strntoull() 61 rv = _parse_integer_limit(cp, base, &result, max_chars - prefix_chars); in simple_strntoull() 66 cp = startp + max_chars; in simple_strntoull() 120 static long long simple_strntoll(const char *cp, size_t max_chars, char **endp, in simple_strntoll() argument 129 if (*cp == '-' && max_chars > 0) in simple_strntoll() 130 return -simple_strntoull(cp + 1, max_chars - 1, endp, base); in simple_strntoll() 132 return simple_strntoull(cp, max_chars, endp, base); in simple_strntoll()
|