/kernel/linux/linux-6.6/drivers/video/fbdev/core/ |
H A D | fb_io_fops.c | 13 unsigned long total_size, trailing; in fb_io_read() local 49 trailing = copy_to_user(buf, buffer, c); in fb_io_read() 50 if (trailing == c) { in fb_io_read() 54 c -= trailing; in fb_io_read() 74 unsigned long total_size, trailing; in fb_io_write() local 113 trailing = copy_from_user(src, buf, c); in fb_io_write() 114 if (trailing == c) { in fb_io_write() 118 c -= trailing; in fb_io_write()
|
/kernel/linux/linux-6.6/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 ] ]
|
/kernel/linux/linux-5.10/net/ipv6/ |
H A D | seg6.c | 32 int trailing; in seg6_validate_srh() local 54 trailing = len - tlv_offset; in seg6_validate_srh() 55 if (trailing < 0) in seg6_validate_srh() 58 while (trailing) { in seg6_validate_srh() 62 if (trailing < sizeof(*tlv)) in seg6_validate_srh() 68 trailing -= tlv_len; in seg6_validate_srh() 69 if (trailing < 0) in seg6_validate_srh()
|
/kernel/linux/linux-6.6/net/ipv6/ |
H A D | seg6.c | 32 int trailing; in seg6_validate_srh() local 54 trailing = len - tlv_offset; in seg6_validate_srh() 55 if (trailing < 0) in seg6_validate_srh() 58 while (trailing) { in seg6_validate_srh() 62 if (trailing < sizeof(*tlv)) in seg6_validate_srh() 68 trailing -= tlv_len; in seg6_validate_srh() 69 if (trailing < 0) in seg6_validate_srh()
|
/kernel/linux/linux-5.10/tools/memory-model/scripts/ |
H A D | parseargs.sh | 103 echo $1 trailing characters "'$trailchars'"
|
/kernel/linux/linux-6.6/tools/memory-model/scripts/ |
H A D | parseargs.sh | 110 echo $1 trailing characters "'$trailchars'"
|
/kernel/linux/linux-5.10/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 byte [all...] |
H A D | ev6-clear_user.S | 82 * $2 is number of trailing bytes (0..7) ($2 never used...) 171 # zero to 16 quadwords left to store, plus any trailing bytes
|
H A D | ev6-memcpy.S | 158 addq $18, 8, $18 # E : add back for trailing bytes
|
H A D | stxncpy.S | 160 mskql t0, a0, t0 # e0 : mask trailing garbage in dst
|
H A D | ev6-stxncpy.S | 199 mskql t0, a0, t0 # U : mask trailing garbage in dst
|
/kernel/linux/linux-6.6/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 byte [all...] |
H A D | ev6-clear_user.S | 82 * $2 is number of trailing bytes (0..7) ($2 never used...) 171 # zero to 16 quadwords left to store, plus any trailing bytes
|
H A D | ev6-memcpy.S | 158 addq $18, 8, $18 # E : add back for trailing bytes
|
H A D | stxncpy.S | 160 mskql t0, a0, t0 # e0 : mask trailing garbage in dst
|
H A D | ev6-stxncpy.S | 199 mskql t0, a0, t0 # U : mask trailing garbage in dst
|
/kernel/linux/linux-5.10/arch/m68k/fpsp040/ |
H A D | decbin.S | 36 | A3. Count the number of leading/trailing zeros in the 38 | if negative, count the trailing zeros. Set the adjusted
|
/kernel/linux/linux-6.6/arch/m68k/fpsp040/ |
H A D | decbin.S | 36 | A3. Count the number of leading/trailing zeros in the 38 | if negative, count the trailing zeros. Set the adjusted
|
/kernel/linux/linux-5.10/arch/sparc/lib/ |
H A D | checksum_32.S | 53 andcc %o1, 3, %o1 ! check for trailing bytes 58 andcc %o1, 3, %g0 ! check again for trailing bytes 59 1: be 1f ! no trailing bytes, return
|
H A D | M7memcpy.S | 714 ! Handle trailing bytes, 64 to 127
|
/kernel/linux/linux-6.6/arch/sparc/lib/ |
H A D | checksum_32.S | 53 andcc %o1, 3, %o1 ! check for trailing bytes 58 andcc %o1, 3, %g0 ! check again for trailing bytes 59 1: be 1f ! no trailing bytes, return
|
H A D | M7memcpy.S | 714 ! Handle trailing bytes, 64 to 127
|
/kernel/linux/linux-5.10/scripts/ |
H A D | checkpatch.pl | 1175 # leading and trailing angle brackets, the address 3090 #trailing whitespace 3101 "trailing whitespace\n" . $herevet) && 3514 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */ 3521 # Block comments use */ on trailing lines 3522 if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */ 3524 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/ 3527 "Block comments use a trailing */ on a separate line\n" . $herecurr); 3535 $prevrawline !~ /\*\/[ \t]*$/) || #no trailing */ 3842 "trailing semicolo [all...] |
/kernel/linux/linux-6.6/scripts/ |
H A D | checkpatch.pl | 1414 # leading and trailing angle brackets, the address 1455 $address =~ s/(?:\.|\,|\")+$//; ##trailing commas, dots or quotes 3215 # Always strip leading/trailing parens then double quotes if existing 3354 # Always strip leading/trailing parens then double quotes if existing 3566 #trailing whitespace 3577 "trailing whitespace\n" . $herevet) && 4012 $prevrawline !~ /\*\/[ \t]*$/ && #no trailing */ 4019 # Block comments use */ on trailing lines 4020 if ($rawline !~ m@^\+[ \t]*\*/[ \t]*$@ && #trailing */ 4022 $rawline !~ m@^\+.*\*{2,}/[ \t]*$@ && #trailing **/ [all...] |
/kernel/linux/linux-5.10/arch/m68k/ifpsp060/src/ |
H A D | fpsp.S | 8960 # where L1, L2 are the leading and trailing parts of # 23020 # A3. Count the number of leading/trailing zeros in the # 23022 # if negative, count the trailing zeros. Set the adjusted #
|