Searched refs:max_chars (Results 1 – 3 of 3) sorted by relevance
| /lib/ |
| A D | kstrtox.h | 8 size_t max_chars);
|
| A D | kstrtox.c | 53 size_t max_chars) in _parse_integer_limit() argument 60 while (max_chars--) { in _parse_integer_limit()
|
| A D | vsprintf.c | 78 …ed long long simple_strntoull(const char *startp, char **endp, unsigned int base, size_t max_chars) in simple_strntoull() argument 87 if (prefix_chars < max_chars) { in simple_strntoull() 88 rv = _parse_integer_limit(cp, base, &result, max_chars - prefix_chars); in simple_strntoull() 93 cp = startp + max_chars; in simple_strntoull() 132 size_t max_chars) in simple_strntoul() argument 134 return simple_strntoull(cp, endp, base, max_chars); in simple_strntoul() 156 static long long simple_strntoll(const char *cp, char **endp, unsigned int base, size_t max_chars) in simple_strntoll() argument 164 if (*cp == '-' && max_chars > 0) in simple_strntoll() 165 return -simple_strntoull(cp + 1, endp, base, max_chars - 1); in simple_strntoll() 167 return simple_strntoull(cp, endp, base, max_chars); in simple_strntoll()
|
Completed in 15 milliseconds