| /linux/tools/include/nolibc/ |
| H A D | stdlib.h | 193 * trailing zero (17 bytes for "ffffffffffffffff" or 9 for "ffffffff"). The 195 * (not counting the trailing zero) is returned. The function is constructed 233 * trailing zero (21 bytes for 18446744073709551615 in 64-bit, 11 for 235 * number of characters emitted (not counting the trailing zero) is returned. 264 * trailing zero (21 bytes for -9223372036854775808 in 64-bit, 12 for 266 * number of characters emitted (not counting the trailing zero) is returned. 325 * trailing zero (17 bytes for "ffffffffffffffff"). The buffer is filled from 327 * trailing zero) is returned. The function is constructed in a way to optimize 369 * trailing zero (21 bytes for 18446744073709551615). The buffer is filled from 371 * trailing zero) is returned. The function is constructed in a way to optimize [all …]
|
| /linux/tools/testing/selftests/net/ |
| H A D | proc_net_pktgen.c | 203 /* complete command string without/with trailing '\0' */ in TEST_F() 222 /* with trailing '\0' */ in TEST_F() 226 /* without trailing '\0' */ in TEST_F() 230 /* with trailing '\0' */ in TEST_F() 234 /* without trailing '\0' */ in TEST_F() 238 /* with trailing '\0' */ in TEST_F() 242 /* without trailing '\0' */ in TEST_F() 292 /* with trailing '\0' */ in TEST_F() 297 /* without trailing '\0' */ in TEST_F() 302 /* with trailing '\0' */ in TEST_F() [all …]
|
| /linux/include/linux/ |
| H A D | stddef.h | 51 * struct_group_attr() - Create a struct_group() with trailing attributes 97 * __TRAILING_OVERLAP() - Overlap a flexible-array member with trailing 107 * @MEMBERS: Trailing overlapping members. 119 * TRAILING_OVERLAP() - Overlap a flexible-array member with trailing members. 127 * @MEMBERS: Trailing overlapping members.
|
| H A D | overflow.h | 424 * struct_size() - Calculate size of structure with trailing flexible array. 440 * struct_size_t() - Calculate size of structure with trailing flexible array 469 * Enables caller macro to pass arbitrary trailing expressions 475 * @trailer: Trailing expressions for attributes and/or initializers. 500 * DEFINE_RAW_FLEX() - Define an on-stack instance of structure with a trailing 508 * Define a zeroed, on-stack, instance of @type structure with a trailing 519 * DEFINE_FLEX() - Define an on-stack instance of structure with a trailing 528 * Define a zeroed, on-stack, instance of @TYPE structure with a trailing
|
| H A D | count_zeros.h | 2 /* Count leading and trailing zeros functions 37 * Count the number of trailing zeros from the LSB going towards the MSB in @x.
|
| H A D | uaccess.h | 384 * newer kernel. The rest of the trailing bytes in @dst (@ksize - @usize) 387 * older kernel. The trailing bytes unknown to the kernel (@usize - @ksize) 391 * * -E2BIG: (@usize > @ksize) and there are non-zero trailing bytes in @src. 405 /* Deal with trailing bytes. */ in copy_struct_from_user() 482 * any of the trailing (@ksize - @usize) bytes are non-zero). 486 * trailing (@usize - @ksize) bytes. 502 /* Deal with trailing bytes. */ in copy_struct_to_user()
|
| /linux/rust/syn/ |
| H A D | punctuated.rs | 169 /// sequence must already have a trailing punctuation, or be empty. 172 /// have trailing punctuation. 178 /// Panics if the sequence is nonempty and does not already have a trailing 183 … "Punctuated::push_value: cannot push value if Punctuated is missing trailing punctuation", in push_value() 189 /// Appends a trailing punctuation onto the end of this punctuated sequence. 190 /// The sequence must be non-empty and must not already have trailing 195 /// Panics if the sequence is empty or already has a trailing punctuation. 199 …d::push_punct: cannot push punctuation if Punctuated is empty or already has trailing punctuation", in push_punct() 216 /// Removes the trailing punctuation from this punctuated sequence, or 228 /// Determines whether this punctuated sequence ends with a trailing [all …]
|
| /linux/net/ipv6/ |
| H A D | seg6.c | 30 int trailing; in seg6_validate_srh() local 52 trailing = len - tlv_offset; in seg6_validate_srh() 53 if (trailing < 0) in seg6_validate_srh() 56 while (trailing) { in seg6_validate_srh() 60 if (trailing < sizeof(*tlv)) in seg6_validate_srh() 66 trailing -= tlv_len; in seg6_validate_srh() 67 if (trailing < 0) in seg6_validate_srh()
|
| /linux/arch/alpha/lib/ |
| H A D | ev6-memset.S | 18 * The algorithm for the leading and trailing quadwords remains the same, 104 and $18,7,$18 # E : Number of trailing bytes to write 193 * Simple loop for trailing quadwords, or for small amounts 204 * Write 0..7 trailing bytes. 282 and $18,7,$18 # E : Number of trailing bytes to write 371 * Simple loop for trailing quadwords, or for small amounts 382 * Write 0..7 trailing bytes. 470 and $18,7,$18 # E : Number of trailing bytes to write 559 * Simple loop for trailing quadwords, or for small amounts 570 * Write 0..7 trailing bytes.
|
| /linux/drivers/acpi/acpica/ |
| H A D | nsnames.c | 121 * no_trailing - Remove trailing '_' for each name 177 * no_trailing - Remove trailing '_' from each name segment 180 * of pathname + 1) which means the 'FullPath' contains a trailing 262 /* Append the trailing null */ in acpi_ns_build_normalized_path() 277 * no_trailing - Remove trailing '_' from each name segment 284 * for error and debug statements. All trailing '_' will be 364 /* Merge the prefix path and the path. 2 is for one dot and trailing null */ in acpi_ns_build_prefixed_pathname() 404 * DESCRIPTION: Remove trailing underscores from each element of a path.
|
| /linux/drivers/spi/ |
| H A D | spi-bitbang-txrx.h | 59 /* setup MSB (to slave) on trailing edge */ in bitbang_txrx_be_cpha0() 104 /* sample MSB (from slave) on trailing edge */ in bitbang_txrx_be_cpha1() 124 /* setup LSB (to slave) on trailing edge */ in bitbang_txrx_le_cpha0() 170 /* sample LSB (from slave) on trailing edge */ in bitbang_txrx_le_cpha1()
|
| /linux/tools/rcu/ |
| H A D | extract-stall.sh | 7 echo initial line of the stall warning but trailing-lines includes it. 9 echo Usage: $(basename $0) dmesg-file [ preceding-lines [ trailing-lines ] ]
|
| /linux/tools/testing/selftests/bpf/prog_tests/ |
| H A D | probe_read_user_str.c | 35 /* Now check that no extra trailing bytes were copied */ in test_one_str() 38 if (CHECK(err, "memcmp", "trailing bytes were not stripped")) in test_one_str()
|
| /linux/scripts/ |
| H A D | decodecode | 150 # add trailing space 195 # trailing space. 197 # a byte is 2 chars, ate_opcodes is also the number of trailing
|
| /linux/Documentation/rust/ |
| H A D | coding-guidelines.rst | 77 The trailing empty comment allows to preserve this formatting. Not only that, 93 The trailing empty comment works for nested imports, as shown above, as well as 103 The trailing empty comment works in any of the lines within the braces, but it 105 trailing comma in other formatters. Sometimes it may be simpler to avoid moving 113 a similar one) automatically in a stable release without requiring the trailing
|
| /linux/rust/kernel/ |
| H A D | std_vendor.rs | 125 /// However, a single argument with a trailing comma will still not be treated 126 /// as a tuple, following the convention of ignoring trailing commas in macro 131 /// assert_eq!(1, dbg!(1u32,)); // trailing comma ignored
|
| /linux/arch/x86/lib/ |
| H A D | copy_mc_64.S | 60 /* Any trailing bytes? */ 65 /* Copy trailing bytes */
|
| /linux/lib/ |
| H A D | seq_buf.c | 130 /* No trailing LF */ in seq_buf_do_printk() 188 /* Add 1 to len for the trailing null byte which must be there */ in seq_buf_puts() 193 /* Don't count the trailing null byte against the capacity */ in seq_buf_puts() 382 * caller supplies trailing spaces for alignment if desired
|
| H A D | glob.c | 53 * on mismatch, or true after matching the trailing nul bytes. in glob_match() 65 if (*pat == '\0') /* Optimize trailing * case */ in glob_match()
|
| /linux/security/tomoyo/ |
| H A D | realpath.c | 92 * If dentry is a directory, trailing '/' is appended. 123 * If dentry is a directory, trailing '/' is appended. 229 * If dentry is a directory, trailing '/' is appended.
|
| /linux/drivers/gpu/drm/sti/ |
| H A D | sti_awg_utils.c | 128 /* skip trailing pixel */ in awg_generate_line_signal() 162 /* skip trailing lines */ in sti_awg_generate_code_data_enable_mode()
|
| /linux/fs/ |
| H A D | binfmt_script.c | 48 * (though the buffer will have trailing NUL padding when the in load_script() 72 /* Trim any trailing spaces/tabs from i_end */ in load_script()
|
| /linux/Documentation/mm/ |
| H A D | vmalloced-kernel-stacks.rst | 123 Leading and trailing guard pages help detect stack overflows. When the stack 135 and trailing guard page? The following lkdtm tests can help detect any
|
| /linux/tools/lib/ |
| H A D | string.c | 132 * strim - Removes leading and trailing whitespace from @s. 135 * Note that the first trailing whitespace is replaced with a %NUL-terminator
|
| /linux/arch/xtensa/lib/ |
| H A D | checksum.S | 278 here, except for perhaps a trailing odd byte. It's 304 /* This section processes a possible trailing odd byte. */ 347 j 4b /* process the possible trailing odd byte */
|