Home
last modified time | relevance | path

Searched full:chars (Results 1 – 25 of 345) sorted by relevance

12345678910>>...14

/linux-6.15/Documentation/fb/
Dviafb.modes16 # 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 20 lines
[all …]
/linux-6.15/include/linux/
Dtty_flip.h13 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_NORMAL, size); in tty_insert_flip_string()
Dlp.h23 #define LP_CHAR(minor) lp_table[(minor)].chars /* busy timeout */
37 unsigned long chars; member
49 unsigned int chars; member
Dserial_core.h831 * uart_xmit_advance - Advance xmit buffer and account Tx'ed chars
833 * @chars: number of characters sent
836 * @chars transmitted and handles accounting of transmitted bytes (into
839 static inline void uart_xmit_advance(struct uart_port *up, unsigned int chars) in uart_xmit_advance() argument
843 kfifo_skip_count(&tport->xmit_fifo, chars); in uart_xmit_advance()
844 up->icount.tx += chars; in uart_xmit_advance()
848 unsigned char *buf, unsigned int chars) in uart_fifo_out() argument
852 chars = kfifo_out(&tport->xmit_fifo, buf, chars); in uart_fifo_out()
853 up->icount.tx += chars; in uart_fifo_out()
855 return chars; in uart_fifo_out()
[all …]
/linux-6.15/Documentation/devicetree/bindings/auxdisplay/
Dhit,hd44780.yaml54 display-height-chars:
60 display-width-chars:
69 display-width-chars for displays with more than 2 lines).
79 - display-height-chars
80 - display-width-chars
97 display-height-chars = <2>;
98 display-width-chars = <16>;
117 display-height-chars = <2>;
118 display-width-chars = <16>;
Dmodtronix,lcd2s.yaml26 display-height-chars:
32 display-width-chars:
41 - display-height-chars
42 - display-width-chars
55 display-height-chars = <4>;
56 display-width-chars = <20>;
/linux-6.15/include/uapi/linux/
Dlimits.h12 #define NAME_MAX 255 /* # chars in a file name */
13 #define PATH_MAX 4096 /* # chars in a path name including nul */
15 #define XATTR_NAME_MAX 255 /* # chars in an extended attribute name */
Dacct.h58 comp_t ac_io; /* Chars Transferred */
95 comp_t ac_io; /* Chars Transferred */
/linux-6.15/drivers/tty/
Dtty_buffer.c300 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()
542 * @chars: characters
553 const u8 *chars, size_t size) in tty_insert_flip_string_and_push_buffer() argument
559 size = tty_insert_flip_string(port, chars, size); in tty_insert_flip_string_and_push_buffer()
Dtty.h35 * signal chars. The stable lock order is slave pty, then
123 const u8 *chars, size_t cnt);
Dn_tty.c114 /* # of chars looked ahead (to find software flow control chars) */
1208 * n_tty_receive_char_flow_ctrl - receive flow control chars
1215 * In case lookahead for flow control chars already handled the character in
1648 * @cp: input chars
1649 * @fp: flags for each char (if %NULL, all chars are %TTY_NORMAL)
1650 * @count: number of input chars in @cp
1658 * Returns: the # of input chars from @cp which were processed.
1660 * In canonical mode, the maximum line length is 4096 chars (including the line
1661 * termination char); lines longer than 4096 chars are truncated. After 4095
1662 * chars, input data is still processed but not stored. Overflow processing
[all …]
/linux-6.15/fs/
Dpipe.c324 size_t chars = buf->len; in anon_pipe_read() local
328 if (chars > total_len) { in anon_pipe_read()
334 chars = total_len; in anon_pipe_read()
344 written = copy_page_to_iter(buf->page, buf->offset, chars, to); in anon_pipe_read()
345 if (unlikely(written < chars)) { in anon_pipe_read()
350 ret += chars; in anon_pipe_read()
351 buf->offset += chars; in anon_pipe_read()
352 buf->len -= chars; in anon_pipe_read()
356 total_len = chars; in anon_pipe_read()
364 total_len -= chars; in anon_pipe_read()
[all …]
/linux-6.15/drivers/tty/serial/8250/
D8250_bcm2835aux.c30 #define BCM2835_AUX_UART_CNTL_RTS3 0x00 /* RTS set until 3 chars left */
31 #define BCM2835_AUX_UART_CNTL_RTS2 0x10 /* RTS set until 2 chars left */
32 #define BCM2835_AUX_UART_CNTL_RTS1 0x20 /* RTS set until 1 chars left */
33 #define BCM2835_AUX_UART_CNTL_RTS4 0x30 /* RTS set until 4 chars left */
/linux-6.15/drivers/opp/
Ddebugfs.c61 char name[] = "icc-path-XXXXXXXXXXX"; /* Integers can take 11 chars max */ in opp_debug_create_bw()
83 char name[] = "rate_hz_XXXXXXXXXXX"; /* Integers can take 11 chars max */ in opp_debug_create_clks()
105 char name[] = "supply-XXXXXXXXXXX"; /* Integers can take 11 chars max */ in opp_debug_create_supplies()
134 char name[25]; /* 20 chars for 64 bit value + 5 (opp:\0) */ in opp_debug_create_one()
/linux-6.15/fs/smb/client/
Dunc.c24 /* skip double chars at beginning of string */ in extract_hostname()
54 /* skip double chars at the beginning */ in extract_sharename()
Dcifs_fs_sb.h20 #define CIFS_MOUNT_MAP_SPECIAL_CHR 0x20 /* remap illegal chars in filenames */
38 #define CIFS_MOUNT_MAP_SFM_CHR 0x800000 /* SFM/MAC mapping for illegal chars */
/linux-6.15/drivers/s390/char/
Dctrlchar.c3 * Unified handling of special chars.
37 * ctrlchar_handle - check for special chars at start of input
/linux-6.15/fs/ocfs2/
Docfs2_lockid.h16 * name[7-22] --> block number, expressed in hex as 16 chars
17 * name[23-30] --> i_generation, expressed in hex 8 chars
/linux-6.15/drivers/acpi/acpica/
Dutbuffer.c62 /* Print 16 hex chars */ in acpi_ut_dump_buffer()
114 * unprintable ones (printable chars are 0x20 through 0x7E) in acpi_ut_dump_buffer()
230 /* Print 16 hex chars */ in acpi_ut_dump_buffer_to_file()
282 * unprintable ones (printable chars are 0x20 through 0x7E) in acpi_ut_dump_buffer_to_file()
/linux-6.15/lib/tests/
Dstring_kunit.c246 * 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-6.15/tools/usb/
Dp9_fwd.py37 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-6.15/drivers/tty/serial/
Dpic32_uart.c131 /* wait for tx empty, otherwise chars will be lost or corrupted */ in pic32_wait_deplete_txbuf()
264 /* read all chars in rx fifo and send them to core */
339 /* fill tx fifo with chars to send, stop when fifo is about to be full
340 * or when all chars have been sent.
363 /* keep stuffing chars into uart tx buffer in pic32_uart_do_tx()
367 * (all chars have been sent) in pic32_uart_do_tx()
442 /* wait for tx empty, otherwise chars will be lost or corrupted */ in pic32_uart_dsbl_and_mask()
/linux-6.15/arch/um/include/asm/
Dsetup.h5 /* POSIX mandated with _POSIX_ARG_MAX that we can rely on 4096 chars in the
/linux-6.15/drivers/accessibility/speakup/
Dvarhandlers.c18 { "characters", CHARS, VAR_PROC, NULL, NULL },
281 * values for how: 0 clears bits of chars supplied,
282 * 1 clears allk, 2 sets bits for chars
/linux-6.15/arch/arm/boot/dts/marvell/
Dkirkwood-netgear_readynas_nv+_v2.dts126 display-height-chars = <2>;
127 display-width-chars = <16>;

12345678910>>...14