Home
last modified time | relevance | path

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

/OK3568_Linux_fs/u-boot/drivers/input/
H A Dinput.c407 int keycode, char output_ch[], int max_chars) in input_keycode_to_ansi364() argument
417 if (ch_count < max_chars) in input_keycode_to_ansi364()
451 int max_chars, int same) in input_keycodes_to_ascii() argument
489 if (ch_count < max_chars && ch != 0xff) in input_keycodes_to_ascii()
493 output_ch, max_chars); in input_keycodes_to_ascii()
497 if (ch_count > max_chars) { in input_keycodes_to_ascii()
499 __func__, max_chars, ch_count); in input_keycodes_to_ascii()
/OK3568_Linux_fs/kernel/lib/
H A Dkstrtox.h8 size_t max_chars);
H A Dkstrtox.c50 size_t max_chars) in _parse_integer_limit() argument
57 while (max_chars--) { in _parse_integer_limit()
H A Dvsprintf.c60 static unsigned long long simple_strntoull(const char *startp, size_t max_chars, 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()
130 static long long simple_strntoll(const char *cp, size_t max_chars, char **endp, in simple_strntoll() argument
139 if (*cp == '-' && max_chars > 0) in simple_strntoll()
140 return -simple_strntoull(cp + 1, max_chars - 1, endp, base); in simple_strntoll()
142 return simple_strntoull(cp, max_chars, endp, base); in simple_strntoll()
/OK3568_Linux_fs/kernel/drivers/tty/serial/
H 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()