Home
last modified time | relevance | path

Searched refs:rest (Results 1 – 25 of 369) sorted by relevance

12345678910>>...15

/linux/drivers/scsi/
A Dscript_asm.pl403 $rest = $2;
404 foreach $rest (split (/\s*,\s*/, $rest)) {
456 $rest = $1;
479 $rest = $1;
504 $rest = $3;
554 $rest = $2;
563 $rest = $1;
619 $rest = $2;
650 $rest = $1;
697 $rest = $2;
[all …]
/linux/scripts/
A Dshow_delta49 (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:
A Dgenerate_rust_target.rs34 if let [ref rest @ .., ref last] = seq[..] { in comma_sep()
35 for v in rest { in comma_sep()
120 if let [ref rest @ .., ref last] = self.0[..] { in fmt()
121 for (key, value) in rest { in fmt()
/linux/drivers/media/radio/
A Dradio-terratec.c86 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/drivers/staging/media/av7110/
A Ddvb_filter.c86 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()
A Dav7110_ipack.c129 int rest = p->size - p->count; in write_ipack() local
131 memcpy(p->buf + p->count, data, rest); in write_ipack()
132 p->count += rest; in write_ipack()
134 if (count - rest > 0) in write_ipack()
135 write_ipack(p, data + rest, count - rest); in write_ipack()
/linux/rust/kernel/init/
A Dmacros.rs617 @fields_munch($($rest)*),
652 @fields_munch($($rest)*),
687 @fields_munch($($rest)*),
721 @fields_munch($($rest)*),
793 @fields_munch($($rest)*),
969 @pinned_drop($($rest:tt)*),
973 stringify!($($rest)*),
1102 @munch_fields($($rest)*),
1220 @munch_fields($($rest)*),
1348 @munch_fields($($rest)*),
[all …]
/linux/fs/proc/
A Dbootconfig.c23 #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/rust/macros/
A Dpin_data.rs16 rest, in pin_data()
26 let struct_name = rest in pin_data()
61 let mut rest = rest in pin_data() variables
73 let last = rest.pop(); in pin_data()
77 @sig(#(#rest)*), in pin_data()
A Dzeroable.rs13 mut rest, in derive()
16 let last = rest.pop(); in derive()
67 @sig(#(#rest)*), in derive()
A Dhelpers.rs121 let mut rest = vec![]; in parse_generics() variables
165 0 => rest.push(tt), in parse_generics()
208 rest.extend(toks); in parse_generics()
215 rest, in parse_generics()
/linux/rust/kernel/list/
A Darc_field.rs71 $($rest:tt)*
79 $crate::list::define_list_arc_field_getter!($($rest)*);
83 $($rest:tt)*
91 $crate::list::define_list_arc_field_getter!($($rest)*);
/linux/arch/hexagon/lib/
A Dmemcpy.S159 #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/arch/x86/lib/
A Dcsum-wrappers_64.c75 __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/tools/perf/
A DMakefile85 rest := $(filter-out clean,$(MAKECMDGOALS)) macro
86 ifneq ($(rest),)
87 $(rest): clean
/linux/drivers/s390/block/
A Ddasd_eer.c127 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()
162 len = min(rest, PAGE_SIZE - localtail); in dasd_eer_read_buffer()
165 rest -= len; in dasd_eer_read_buffer()
/linux/tools/lib/subcmd/
A Dparse-options.c375 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()
401 if (rest) { in parse_long_opt()
443 if (!rest) in parse_long_opt()
447 if (*rest) { in parse_long_opt()
448 if (*rest != '=') in parse_long_opt()
[all …]
/linux/tools/testing/selftests/arm64/fp/
A Dvlset.c43 char *rest; in parse_options() local
72 vl = strtoul(argv[optind], &rest, 0); in parse_options()
73 if (*rest) { in parse_options()
/linux/arch/s390/crypto/
A Dprng.c101 u32 rest; member
621 if (prng_data->rest) { in prng_sha512_read()
623 p = prng_data->buf + prng_chunk_size - prng_data->rest; in prng_sha512_read()
624 n = (nbytes < prng_data->rest) ? in prng_sha512_read()
625 nbytes : prng_data->rest; in prng_sha512_read()
626 prng_data->rest -= n; in prng_sha512_read()
637 prng_data->rest = prng_chunk_size - n; in prng_sha512_read()
640 prng_data->rest = 0; in prng_sha512_read()
/linux/tools/perf/tests/shell/
A Dstat+shadow_stat.sh19 while read num evt _ ipc rest
58 while read cpu num evt _ ipc rest
/linux/include/linux/
A Dsockptr.h89 size_t rest = max(ksize, usize) - size; in copy_struct_from_sockptr() local
95 memset(dst + size, 0, rest); in copy_struct_from_sockptr()
99 while (rest--) { in copy_struct_from_sockptr()
/linux/fs/squashfs/
A Dxattr.c36 size_t rest = buffer_size; in squashfs_listxattr() local
62 if (prefix_size + name_size + 1 > rest) { in squashfs_listxattr()
77 rest -= prefix_size + name_size + 1; in squashfs_listxattr()
98 err = buffer_size - rest; in squashfs_listxattr()
/linux/Documentation/userspace-api/media/v4l/
A Dmetafmt-uvc.rst45 * - :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/drivers/staging/media/atomisp/pci/isp/kernels/s3a/s3a_1.0/
A Dia_css_s3a.host.c334 int out_width, out_height, chunk, rest, kmax, y, x, k, elm_start, elm, ofs; in ia_css_s3a_vmem_decode() local
354 rest = out_width; in ia_css_s3a_vmem_decode()
357 kmax = (rest > chunk) ? chunk : rest; in ia_css_s3a_vmem_decode()
379 rest -= chunk; in ia_css_s3a_vmem_decode()
/linux/Documentation/devicetree/bindings/clock/
A Darm,syscon-icst.yaml37 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

Completed in 24 milliseconds

12345678910>>...15