/linux-6.14.4/arch/m68k/lib/ |
D | checksum.c | 27 * Zero out rest of buffer on exception in 50 "addql #2,%1\n\t" /* len was == 2, treat only rest */ in csum_partial() 87 "andw #0x1c,%3\n\t" /* number of rest longs */ in csum_partial() 92 /* loop for rest longs */ in csum_partial() 99 /* now check for rest bytes that do not fit into longs */ in csum_partial() 102 "clrl %4\n\t" /* clear tmp2 for rest bytes */ in csum_partial() 105 "movew %2@+,%4\n\t" /* have rest >= 2: get word */ in csum_partial() 110 "moveb %2@,%4\n\t" /* have odd rest: get byte */ in csum_partial() 113 "addl %4,%0\n\t" /* now add rest long to sum */ in csum_partial() 147 "addql #2,%1\n\t" /* len was == 2, treat only rest */ in csum_and_copy_from_user() [all …]
|
/linux-6.14.4/fs/proc/ |
D | bootconfig.c | 22 /* Rest size of buffer */ 23 #define rest(dst, end) ((end) > (dst) ? (end) - (dst) : 0) macro 42 ret = snprintf(dst, rest(dst, end), "%s = ", key); in copy_xbc_key_value_list() 53 ret = snprintf(dst, rest(dst, end), "%c%s%c%s", in copy_xbc_key_value_list() 60 ret = snprintf(dst, rest(dst, end), "\"\"\n"); in copy_xbc_key_value_list() 67 ret = snprintf(dst, rest(dst, end), "# Parameters from bootloader:\n# %s\n", in copy_xbc_key_value_list()
|
/linux-6.14.4/drivers/scsi/ |
D | script_asm.pl | 403 $rest = $2; 404 foreach $rest (split (/\s*,\s*/, $rest)) { 405 if ($rest =~ /^($identifier)\s*=\s*($constant)\s*$/) { 456 $rest = $1; 457 if ($rest =~ /^FROM\s+($value)\s*,\s*(WITH|WHEN)\s+($phase)\s*$/i) { 466 } elsif ($rest =~ /^($value)\s*,\s*(PTR\s+|)($value)\s*,\s*(WITH|WHEN)\s+($phase)\s*$/i) { 478 } elsif ($rest =~ /^MEMORY\s+(.*)/i) { 479 $rest = $1; 481 if ($rest =~ /^($value)\s*,\s*($value)\s*,\s*($value)\s*$/) { 504 $rest = $3; [all …]
|
/linux-6.14.4/drivers/staging/media/av7110/ |
D | dvb_filter.c | 86 int ret = 0, rest; in dvb_filter_pes2ts() local 106 rest = 183 - len; in dvb_filter_pes2ts() 107 if (rest) { in dvb_filter_pes2ts() 109 if (rest - 1) in dvb_filter_pes2ts() 110 memset(buf + 6, 0xff, rest - 1); in dvb_filter_pes2ts() 112 buf[4] = rest; in dvb_filter_pes2ts() 113 memcpy(buf + 5 + rest, pes, len); in dvb_filter_pes2ts()
|
/linux-6.14.4/scripts/ |
D | show_delta | 49 (time_str, rest) = string.split(line[1:],']',1) 53 return (time, rest) 65 (time, rest) = get_time(line) 78 return ("[%5.6f < %5.6f >]" % (time, delta)) + rest 111 (time, rest) = get_time(line) 114 if string.find(rest, base_str)==1:
|
/linux-6.14.4/drivers/media/radio/ |
D | radio-terratec.c | 86 long rest; in terratec_s_frequency() local 92 rest = freq * 10 + 10700; /* I once had understood what is going on here */ in terratec_s_frequency() 96 while (rest != 0) { in terratec_s_frequency() 97 if (rest % temp == rest) in terratec_s_frequency() 101 rest = rest - temp; in terratec_s_frequency()
|
/linux-6.14.4/rust/macros/ |
D | pin_data.rs | 16 rest, in pin_data() 26 let struct_name = rest in pin_data() 61 let mut rest = rest in pin_data() localVariable 73 let last = rest.pop(); in pin_data() 77 @sig(#(#rest)*), in pin_data()
|
D | helpers.rs | 81 /// let (Generics { decl_generics, impl_generics, ty_generics }, rest) = parse_generics(input); 110 /// Parses the given `TokenStream` into `Generics` and the rest. 112 /// The generics are not present in the rest, but a where clause might remain. 121 let mut rest = vec![]; in parse_generics() localVariable 165 0 => rest.push(tt), in parse_generics() 208 rest.extend(toks); in parse_generics() 215 rest, in parse_generics()
|
D | zeroable.rs | 13 mut rest, in derive() 16 let last = rest.pop(); in derive() 67 @sig(#(#rest)*), in derive()
|
/linux-6.14.4/drivers/media/dvb-frontends/ |
D | dib0070.c | 372 u32 FBDiv, Rest, FREF, VCOF_kHz; in dib0070_tune_digital() local 402 Rest = (VCOF_kHz / state->current_tune_table_index->presc) - FBDiv * FREF; in dib0070_tune_digital() 409 Rest = 2 * freq - FBDiv * FREF; in dib0070_tune_digital() 413 if (Rest < LPF) in dib0070_tune_digital() 414 Rest = 0; in dib0070_tune_digital() 415 else if (Rest < 2 * LPF) in dib0070_tune_digital() 416 Rest = 2 * LPF; in dib0070_tune_digital() 417 else if (Rest > (FREF - LPF)) { in dib0070_tune_digital() 418 Rest = 0; in dib0070_tune_digital() 420 } else if (Rest > (FREF - 2 * LPF)) in dib0070_tune_digital() [all …]
|
/linux-6.14.4/Documentation/admin-guide/cgroup-v1/ |
D | devices.rst | 86 B "c 1:3 rwm", "b 3:* rwm" all the rest 98 A "c 1:3 rwm", "c 1:5 r" all the rest 99 B "c 1:3 rwm", "c 1:5 r" all the rest 108 A "c *:3 rwm", "c 1:5 r" all the rest 109 B "c 1:3 rwm", "c 1:5 r" all the rest
|
/linux-6.14.4/Documentation/devicetree/bindings/clock/ |
D | arm,syscon-icst.yaml | 37 Integrator/AP 22 1 Bit 8 0, rest variable 40 Integrator/AP 46 3 Bit 8 0, rest variable 46 Integrator/CP 22 variable Bit 8 0, rest variable 49 Integrator/CP 22 variable Bit 8 0, rest variable
|
/linux-6.14.4/tools/perf/ |
D | Makefile | 85 rest := $(filter-out clean,$(MAKECMDGOALS)) macro 86 ifneq ($(rest),) 87 $(rest): clean 88 endif # rest
|
/linux-6.14.4/drivers/s390/block/ |
D | dasd_eer.c | 67 * keep track of the rest of the record. residual stores the number of bytes 68 * that are still to deliver. If the rest of the record is invalidated between 127 unsigned long rest, len; in dasd_eer_write_buffer() local 131 rest = count; in dasd_eer_write_buffer() 132 while (rest > 0) { in dasd_eer_write_buffer() 135 len = min(rest, PAGE_SIZE - localhead); in dasd_eer_write_buffer() 138 rest -= len; in dasd_eer_write_buffer() 153 unsigned long rest, len, finalcount; in dasd_eer_read_buffer() local 158 rest = finalcount; in dasd_eer_read_buffer() 159 while (rest > 0) { in dasd_eer_read_buffer() [all …]
|
/linux-6.14.4/Documentation/sphinx/ |
D | kernel_feat.py | 8 Implementation of the ``kernel-feat`` reST-directive. 29 Inserts a code-block with the *raw* reST. Sometimes it is helpful to see 30 what reST is generated. 87 'rest',
|
D | kernel_abi.py | 9 Implementation of the ``kernel-abi`` reST-directive. 30 Inserts a code-block with the *raw* reST. Sometimes it is helpful to see 31 what reST is generated. 82 'rest',
|
D | maintainers_include.py | 10 Implementation of the ``maintainers-include`` reST-directive. 15 The ``maintainers-include`` reST-directive performs extensive parsing 44 """Parse all the MAINTAINERS lines into ReST for human-readability""" 79 # Linkify all non-wildcard refs to ReST files in Documentation/. 174 """Include the MAINTAINERS file as part of this reST file."""
|
/linux-6.14.4/Documentation/userspace-api/media/v4l/ |
D | metafmt-uvc.rst | 45 * - :cspan:`1` *The rest is an exact copy of the UVC payload header:* 47 - length of the rest of the block, including this field 51 - The rest of the header, possibly including UVC PTS and SCR fields
|
/linux-6.14.4/rust/kernel/list/ |
D | arc_field.rs | 71 $($rest:tt)* 79 $crate::list::define_list_arc_field_getter!($($rest)*); 83 $($rest:tt)* 91 $crate::list::define_list_arc_field_getter!($($rest)*);
|
/linux-6.14.4/arch/x86/lib/ |
D | csum-wrappers_64.c | 75 __u64 rest, sum64; in csum_ipv6_magic() local 77 rest = (__force __u64)htonl(len) + (__force __u64)htons(proto) + in csum_ipv6_magic() 87 : "[sum]" (rest), [saddr] "r" (saddr), [daddr] "r" (daddr)); in csum_ipv6_magic()
|
/linux-6.14.4/Documentation/networking/ |
D | x25-iface.rst | 22 the rest of the skbuff, if any more information does exist. 30 This indicates that the rest of the skbuff contains data to be transmitted 54 This indicates that the rest of the skbuff contains data that has been
|
/linux-6.14.4/scripts/kconfig/ |
D | lexer.l | 307 const char *rest, *end; 325 rest = text; 326 out = expand_one_token(&rest); 329 end = rest + strlen(rest); 330 while (end > rest)
|
/linux-6.14.4/arch/hexagon/lib/ |
D | memcpy.S | 159 #define rest R8 /* length - prolog bytes */ macro 321 rest = sub(len, star3); /* whats left after the loop */ define 324 if(p0) rest = add(rest, #16); 329 p0 = cmp.gt(rest, #16); 334 rest = add(rest, #-8); define 357 rest = kernel; define 367 p3 = cmp.eq(kernel, rest); 401 rest = add(kernel, #-1); define
|
/linux-6.14.4/tools/lib/subcmd/ |
D | parse-options.c | 375 const char *rest; in parse_long_opt() local 381 rest = skip_prefix(arg, options->long_name); in parse_long_opt() 383 if (!rest) in parse_long_opt() 385 if (*rest == '=') in parse_long_opt() 387 if (*rest) in parse_long_opt() 392 if (!rest) { in parse_long_opt() 400 rest = skip_prefix(arg, options->long_name + 3); in parse_long_opt() 401 if (rest) { in parse_long_opt() 439 rest = skip_prefix(arg + 3, options->long_name); in parse_long_opt() 441 if (!rest && strstarts(options->long_name, arg + 3)) in parse_long_opt() [all …]
|
/linux-6.14.4/rust/kernel/init/ |
D | macros.rs | 547 // wants these to be structurally pinned. The rest of the fields are the 596 @fields_munch($field:ident : $($($(::)?core::)?marker::)?PhantomPinned, $($rest:tt)*), 618 @fields_munch($($rest)*), 636 @fields_munch($field:ident : $type:ty, $($rest:tt)*), 653 @fields_munch($($rest)*), 671 @fields_munch($field:ident : $type:ty, $($rest:tt)*), 688 @fields_munch($($rest)*), 706 @fields_munch(#[pin] $($rest:tt)*), 722 @fields_munch($($rest)*), 744 @fields_munch($fvis:vis $field:ident $($rest:tt)*), [all …]
|