Home
last modified time | relevance | path

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

12345678910>>...12

/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 20 lines
[all …]
/linux/rust/proc-macro2/
H A Dparse.rs9 use core::str::{Bytes, CharIndices, Chars};
24 off: self.off + _front.chars().count() as u32, in advance()
59 fn chars(&self) -> Chars<'a> { in chars() method
60 self.rest.chars() in chars()
115 let ch = s.chars().next().unwrap(); in skip_whitespace()
160 match input.chars().next() { in word_break()
321 let mut chars = input.char_indices(); in ident_not_raw() localVariable
323 match chars.next() { in ident_not_raw()
329 for (i, ch) in chars { in ident_not_raw()
383 let mut chars = input.char_indices(); in cooked_string() localVariable
[all …]
H A Dfallback.rs375 // chars from that point. in byte_range()
418 for ch in s.chars() { in lines_offsets()
839 let mut chars = string.chars(); in validate_ident() localVariable
840 let first = chars.next().unwrap(); in validate_ident()
844 for ch in chars { in validate_ident()
1194 let mut chars = string.chars(); in escape_utf8() localVariable
1195 while let Some(ch) = chars.next() { in escape_utf8()
1198 if chars in escape_utf8()
/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_NORMAL, size); in tty_insert_flip_string()
H A Dlp.h23 #define LP_CHAR(minor) lp_table[(minor)].chars /* busy timeout */
37 unsigned long chars; member
49 unsigned int chars; member
/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/rust/syn/
H A Dident.rs40 let mut chars = symbol.chars(); in xid_ok() localVariable
41 let first = chars.next().unwrap(); in xid_ok()
45 for ch in chars { in xid_ok()
/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, size); in tty_insert_flip_string_and_push_buffer()
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) */
1200 * n_tty_receive_char_flow_ctrl - receive flow control chars
1207 * In case lookahead for flow control chars already handled the character in
1640 * @cp: input chars
1641 * @fp: flags for each char (if %NULL, all chars are %TTY_NORMAL)
1642 * @count: number of input chars in @cp
1650 * Returns: the # of input chars from @cp which were processed.
1652 * In canonical mode, the maximum line length is 4096 chars (including the line
1653 * termination char); lines longer than 4096 chars are truncated. After 4095
1654 * chars, input data is still processed but not stored. Overflow processing
[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()
[all …]
/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/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/drivers/s390/char/
H A Dctrlchar.c3 * Unified handling of special chars.
37 * ctrlchar_handle - check for special chars at start of input
/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/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 */
/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/usb/serial/
H A Dgeneric.c253 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()
/linux/arch/powerpc/include/asm/
H A Depapr_hcalls.h274 * @count: (input) num of chars to send, (output) num chars sent
316 * @count: (input) max num of chars to receive, (output) num chars received

12345678910>>...12