/linux/Documentation/fb/ |
H A D | viafb.modes | 16 # 12 chars 2 lines 18 # 2 chars 10 lines 20 # 6 chars 33 lines 22 # 80 chars 480 lines 24 # 20 chars 45 lines 41 # 8 chars 3 lines 43 # 2 chars 1 lines 45 # 15 chars 16 lines 47 # 80 chars 480 lines 49 # 25 chars 2 [all...] |
/linux/include/linux/ |
H A D | tty_flip.h | 13 size_t __tty_insert_flip_string_flags(struct tty_port *port, const u8 *chars, 16 size_t tty_prepare_flip_string(struct tty_port *port, u8 **chars, size_t size); 22 * @chars: characters 32 const u8 *chars, u8 flag, in tty_insert_flip_string_fixed_flag() argument 35 return __tty_insert_flip_string_flags(port, chars, &flag, false, size); in tty_insert_flip_string_fixed_flag() 41 * @chars: characters 51 const u8 *chars, in tty_insert_flip_string_flags() argument 54 return __tty_insert_flip_string_flags(port, chars, flags, true, size); in tty_insert_flip_string_flags() 81 const u8 *chars, size_t size) in tty_insert_flip_string() argument 83 return tty_insert_flip_string_fixed_flag(port, chars, TTY_NORMA in tty_insert_flip_string() [all...] |
H A D | lp.h | 23 #define LP_CHAR(minor) lp_table[(minor)].chars /* busy timeout */ 37 unsigned long chars; member 49 unsigned int chars; member
|
H A D | serial_core.h | 833 * uart_xmit_advance - Advance xmit buffer and account Tx'ed chars 835 * @chars: number of characters sent 838 * @chars transmitted and handles accounting of transmitted bytes (into 841 static inline void uart_xmit_advance(struct uart_port *up, unsigned int chars) in uart_xmit_advance() argument 845 kfifo_skip_count(&tport->xmit_fifo, chars); in uart_xmit_advance() 846 up->icount.tx += chars; in uart_xmit_advance() 850 unsigned char *buf, unsigned int chars) in uart_fifo_out() argument 854 chars = kfifo_out(&tport->xmit_fifo, buf, chars); in uart_fifo_out() 855 up->icount.tx += chars; in uart_fifo_out() 864 unsigned int chars; uart_fifo_get() local [all...] |
/linux/fs/ |
H A D | pipe.c | 323 size_t chars = buf->len; in anon_pipe_read() local 327 if (chars > total_len) { in anon_pipe_read() 333 chars = total_len; in anon_pipe_read() 343 written = copy_page_to_iter(buf->page, buf->offset, chars, to); in anon_pipe_read() 344 if (unlikely(written < chars)) { in anon_pipe_read() 349 ret += chars; in anon_pipe_read() 350 buf->offset += chars; in anon_pipe_read() 351 buf->len -= chars; in anon_pipe_read() 355 total_len = chars; in anon_pipe_read() 363 total_len -= chars; in anon_pipe_read() 438 ssize_t chars; anon_pipe_write() local [all...] |
/linux/drivers/tty/ |
H A D | tty_buffer.c | 300 size_t __tty_insert_flip_string_flags(struct tty_port *port, const u8 *chars, in __tty_insert_flip_string_flags() argument 315 memcpy(char_buf_ptr(tb, tb->used), chars, space); in __tty_insert_flip_string_flags() 329 chars += space; in __tty_insert_flip_string_flags() 343 * @chars: return pointer for character write area 351 * Returns: the length available and buffer pointer (@chars) to the space which 354 size_t tty_prepare_flip_string(struct tty_port *port, u8 **chars, size_t size) in tty_prepare_flip_string() argument 361 *chars = char_buf_ptr(tb, tb->used); in tty_prepare_flip_string() 541 * @chars: characters 552 const u8 *chars, size_t size) in tty_insert_flip_string_and_push_buffer() argument 558 size = tty_insert_flip_string(port, chars, siz in tty_insert_flip_string_and_push_buffer() [all...] |
H A D | tty.h | 35 * signal chars. The stable lock order is slave pty, then 123 const u8 *chars, size_t cnt);
|
/linux/tools/usb/ |
H A D | p9_fwd.py | 37 chars = data[c : c + L] 38 dump = " ".join(f"{x:02x}" for x in chars) 39 printable = "".join(HEXDUMP_FILTER[x] for x in chars)
|
/linux/scripts/ |
H A D | rustdoc_test_builder.rs | 46 .filter(|x| x.chars().all(|c| c.is_alphanumeric() || c == '_')) in main()
|
/linux/drivers/usb/serial/ |
H A D | generic.c | 253 unsigned int chars; in usb_serial_generic_chars_in_buffer() local 259 chars = kfifo_len(&port->write_fifo) + port->tx_bytes; in usb_serial_generic_chars_in_buffer() 262 dev_dbg(&port->dev, "%s - returns %u\n", __func__, chars); in usb_serial_generic_chars_in_buffer() 263 return chars; in usb_serial_generic_chars_in_buffer()
|
H A D | sierra.c | 638 unsigned int chars; in sierra_chars_in_buffer() local 642 chars = portdata->outstanding_urbs * MAX_TRANSFER; in sierra_chars_in_buffer() 645 dev_dbg(&port->dev, "%s - %u\n", __func__, chars); in sierra_chars_in_buffer() 647 return chars; in sierra_chars_in_buffer()
|
H A D | cp210x.c | 1141 struct cp210x_special_chars chars; in cp210x_set_flow_control() local 1168 memset(&chars, 0, sizeof(chars)); in cp210x_set_flow_control() 1170 chars.bXonChar = START_CHAR(tty); in cp210x_set_flow_control() 1171 chars.bXoffChar = STOP_CHAR(tty); in cp210x_set_flow_control() 1173 ret = cp210x_write_reg_block(port, CP210X_SET_CHARS, &chars, in cp210x_set_flow_control() 1174 sizeof(chars)); in cp210x_set_flow_control() 1176 dev_err(&port->dev, "failed to set special chars: %d\n", in cp210x_set_flow_control()
|
H A D | digi_acceleport.c | 1048 unsigned int chars; in digi_chars_in_buffer() local 1052 chars = port->bulk_out_size - 2; in digi_chars_in_buffer() 1054 chars = priv->dp_out_buf_len; in digi_chars_in_buffer() 1057 dev_dbg(&port->dev, "%s: port=%d, chars=%d\n", __func__, in digi_chars_in_buffer() 1058 priv->dp_port_num, chars); in digi_chars_in_buffer() 1059 return chars; in digi_chars_in_buffer()
|
H A D | oti6858.c | 382 unsigned int chars; in oti6858_chars_in_buffer() local 386 chars = kfifo_len(&port->write_fifo); in oti6858_chars_in_buffer() 389 return chars; in oti6858_chars_in_buffer()
|
H A D | cypress_m8.c | 961 unsigned int chars; in cypress_chars_in_buffer() local 965 chars = kfifo_len(&priv->write_fifo); in cypress_chars_in_buffer() 968 dev_dbg(&port->dev, "%s - returns %u\n", __func__, chars); in cypress_chars_in_buffer() 969 return chars; in cypress_chars_in_buffer()
|
/linux/arch/x86/pci/ |
H A D | pcbios.c | 85 char chars[16]; member 328 sum += check->chars[i]; in pci_find_bios()
|
/linux/arch/arm/boot/dts/marvell/ |
H A D | kirkwood-netgear_readynas_nv+_v2.dts | 126 display-height-chars = <2>; 127 display-width-chars = <16>;
|
H A D | armada-370-netgear-rn104.dts | 156 display-height-chars = <2>; 157 display-width-chars = <16>;
|
/linux/lib/tests/ |
H A D | string_kunit.c | 246 * of prefix chars, the result is 'equal' in string_test_strncmp() 301 /* strncasecmp should check 'count' chars only */ in string_test_strncasecmp() 335 * @chars: Number of characters from the src string expected to be 345 int expected, int chars, int terminator, int pad) in strscpy_check() argument 379 for (i = 0; i < chars; i++) in strscpy_check() 388 index = chars + terminator + i; in strscpy_check() 393 nr_bytes_poison = sizeof(buf) - chars - terminator - pad; in strscpy_check() 414 /* strscpy_check(test, src, count, expected, chars, terminator, pad) */ in string_test_strscpy()
|
/linux/Documentation/devicetree/bindings/ |
H A D | .yamllint | 10 # 80 chars should be enough, but don't fail if a line is longer
|
/linux/tools/perf/util/ |
H A D | trace-event-scripting.c | 405 const char *chars = PERF_IP_FLAG_CHARS; in perf_sample__sprintf_flags() local 416 str[pos++] = chars[i]; in perf_sample__sprintf_flags()
|
/linux/arch/arm64/boot/dts/freescale/ |
H A D | imx8mn-rve-gateway.dts | 41 display-height-chars = <2>; 42 display-width-chars = <20>;
|
/linux/drivers/usb/host/ |
H A D | xhci-dbgtty.c | 357 unsigned int chars; in dbc_tty_chars_in_buffer() local 360 chars = kfifo_len(&port->port.xmit_fifo); in dbc_tty_chars_in_buffer() 363 return chars; in dbc_tty_chars_in_buffer()
|
/linux/drivers/pnp/pnpbios/ |
H A D | pnpbios.h | 146 char chars[0x21]; /* To calculate the checksum */ member
|
/linux/drivers/staging/greybus/ |
H A D | uart.c | 463 unsigned int chars; in gb_tty_chars_in_buffer() local 466 chars = kfifo_len(&gb_tty->write_fifo); in gb_tty_chars_in_buffer() 468 chars += GB_UART_FIRMWARE_CREDITS - gb_tty->credits; in gb_tty_chars_in_buffer() 471 return chars; in gb_tty_chars_in_buffer()
|