Home
last modified time | relevance | path

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

12345678910>>...13

/linux/Documentation/fb/
H A 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 2
[all...]
/linux/include/linux/
H A 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_NORMA in tty_insert_flip_string()
[all...]
H A Dlp.h23 #define LP_CHAR(minor) lp_table[(minor)].chars /* busy timeout */
37 unsigned long chars; member
49 unsigned int chars; member
H A Dserial_core.h833 * 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/Documentation/devicetree/bindings/auxdisplay/
H A 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>;
H A 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/include/uapi/linux/
H A 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 */
H A Dacct.h58 comp_t ac_io; /* Chars Transferred */
95 comp_t ac_io; /* Chars Transferred */
/linux/drivers/tty/
H A 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()
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 Dtty.h35 * signal chars. The stable lock order is slave pty, then
123 const u8 *chars, size_t cnt);
H A 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 ar
[all...]
/linux/fs/
H A Dpipe.c323 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/opp/
H A 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/drivers/tty/serial/8250/
H A 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/fs/smb/client/
H A Dunc.c24 /* skip double chars at beginning of string */ in extract_hostname()
54 /* skip double chars at the beginning */ in extract_sharename()
H A 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/drivers/s390/char/
H A Dctrlchar.c3 * Unified handling of special chars.
37 * ctrlchar_handle - check for special chars at start of input
/linux/fs/ocfs2/
H A 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/drivers/acpi/acpica/
H A 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/lib/tests/
H A 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/tools/usb/
H A 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/arch/um/include/asm/
H A Dsetup.h5 /* POSIX mandated with _POSIX_ARG_MAX that we can rely on 4096 chars in the
/linux/drivers/accessibility/speakup/
H A 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/arch/arm/boot/dts/marvell/
H A Dkirkwood-netgear_readynas_nv+_v2.dts126 display-height-chars = <2>;
127 display-width-chars = <16>;
/linux/arch/mips/include/uapi/asm/
H A Dioctls.h58 #define TIOCGLTC 0x7474 /* get special local chars */
59 #define TIOCSLTC 0x7475 /* set special local chars */

12345678910>>...13