| /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 20 lines [all …]
|
| /linux/rust/proc-macro2/ |
| H A D | parse.rs | 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 385 while let Some((i, ch)) = chars.next() { in cooked_string() [all …]
|
| H A D | fallback.rs | 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 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); 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() 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 D | lp.h | 23 #define LP_CHAR(minor) lp_table[(minor)].chars /* busy timeout */ 37 unsigned long chars; member 49 unsigned int chars; member
|
| /linux/rust/syn/ |
| H A D | ident.rs | 40 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()
|
| H A D | token.rs | 1016 for (i, ch) in token.chars().enumerate() { in punct_helper() 1039 for (i, ch) in token.chars().enumerate() { in peek_punct() 1069 let mut chars = s.chars(); in punct() localVariable 1071 let ch = chars.next_back().unwrap(); in punct() 1073 for (ch, span) in chars.zip(spans) { in punct()
|
| H A D | whitespace.rs | 52 let ch = s.chars().next().unwrap(); in skip()
|
| /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() [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() 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() 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()
|
| /linux/arch/x86/kernel/ |
| H A D | head_32.S | 248 movl %ebx,X86_VENDOR_ID # lo 4 chars 249 movl %edx,X86_VENDOR_ID+4 # next 4 chars 250 movl %ecx,X86_VENDOR_ID+8 # last 4 chars
|
| /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/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 | 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()
|
| 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() 1058 priv->dp_port_num, chars); in digi_chars_in_buffer() 1059 return chars; in digi_chars_in_buffer()
|
| /linux/scripts/ |
| H A D | rustdoc_test_builder.rs | 46 .filter(|x| x.chars().all(|c| c.is_alphanumeric() || c == '_')) in main()
|
| /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/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 | 372 unsigned int chars; in dbc_tty_chars_in_buffer() local 375 chars = kfifo_len(&port->port.xmit_fifo); in dbc_tty_chars_in_buffer() 378 return chars; in dbc_tty_chars_in_buffer()
|
| /linux/fs/ocfs2/ |
| H A D | ocfs2_fs.h | 1577 int chars; in ocfs2_sprintf_system_inode_name() local 1585 chars = snprintf(buf, len, "%s", in ocfs2_sprintf_system_inode_name() 1588 chars = snprintf(buf, len, in ocfs2_sprintf_system_inode_name() 1592 return chars; in ocfs2_sprintf_system_inode_name()
|
| /linux/drivers/pnp/pnpbios/ |
| H A D | pnpbios.h | 146 char chars[0x21]; /* To calculate the checksum */ member
|
| /linux/rust/macros/ |
| H A D | fmt.rs | 40 if !name.is_empty() && !name.chars().all(|c| c.is_ascii_digit()) { in fmt()
|
| /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()
|