Searched refs:max_chars (Results 1 – 4 of 4) sorted by relevance
/linux-6.12.1/lib/ |
D | kstrtox.h | 8 size_t max_chars);
|
D | kstrtox.c | 53 size_t max_chars) in _parse_integer_limit() argument 60 while (max_chars--) { in _parse_integer_limit()
|
D | vsprintf.c | 64 …ed long long simple_strntoull(const char *startp, char **endp, unsigned int base, size_t max_chars) in simple_strntoull() argument 73 if (prefix_chars < max_chars) { in simple_strntoull() 74 rv = _parse_integer_limit(cp, base, &result, max_chars - prefix_chars); in simple_strntoull() 79 cp = startp + max_chars; in simple_strntoull() 135 static long long simple_strntoll(const char *cp, char **endp, unsigned int base, size_t max_chars) in simple_strntoll() argument 143 if (*cp == '-' && max_chars > 0) in simple_strntoll() 144 return -simple_strntoull(cp + 1, endp, base, max_chars - 1); in simple_strntoll() 146 return simple_strntoull(cp, endp, base, max_chars); in simple_strntoll()
|
/linux-6.12.1/drivers/tty/serial/ |
D | apbuart.c | 71 unsigned int max_chars = port->fifosize; in apbuart_rx_chars() local 76 while (UART_RX_DATA(status) && (max_chars--)) { in apbuart_rx_chars()
|