Home
last modified time | relevance | path

Searched refs:max_chars (Results 1 – 4 of 4) sorted by relevance

/linux/lib/
A Dkstrtox.h8 size_t max_chars);
A Dkstrtox.c51 size_t max_chars) in _parse_integer_limit() argument
58 while (max_chars--) { in _parse_integer_limit()
A Dvsprintf.c56 static noinline unsigned long long simple_strntoull(const char *startp, size_t max_chars, char **en… in simple_strntoull() argument
65 if (prefix_chars < max_chars) { in simple_strntoull()
66 rv = _parse_integer_limit(cp, base, &result, max_chars - prefix_chars); in simple_strntoull()
71 cp = startp + max_chars; in simple_strntoull()
126 static long long simple_strntoll(const char *cp, size_t max_chars, char **endp, in simple_strntoll() argument
135 if (*cp == '-' && max_chars > 0) in simple_strntoll()
136 return -simple_strntoull(cp + 1, max_chars - 1, endp, base); in simple_strntoll()
138 return simple_strntoull(cp, max_chars, endp, base); in simple_strntoll()
/linux/drivers/tty/serial/
A Dapbuart.c74 unsigned int max_chars = port->fifosize; in apbuart_rx_chars() local
78 while (UART_RX_DATA(status) && (max_chars--)) { in apbuart_rx_chars()

Completed in 18 milliseconds