Home
last modified time | relevance | path

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

12345678910>>...12

/Linux-v4.19/drivers/scsi/
Dscript_asm.pl416 $rest = $2;
417 foreach $rest (split (/\s*,\s*/, $rest)) {
418 if ($rest =~ /^($identifier)\s*=\s*($constant)\s*$/) {
469 $rest = $1;
470 if ($rest =~ /^FROM\s+($value)\s*,\s*(WITH|WHEN)\s+($phase)\s*$/i) {
479 } elsif ($rest =~ /^($value)\s*,\s*(PTR\s+|)($value)\s*,\s*(WITH|WHEN)\s+($phase)\s*$/i) {
491 } elsif ($rest =~ /^MEMORY\s+(.*)/i) {
492 $rest = $1;
494 if ($rest =~ /^($value)\s*,\s*($value)\s*,\s*($value)\s*$/) {
517 $rest = $3;
[all …]
/Linux-v4.19/scripts/
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:
/Linux-v4.19/drivers/media/pci/ttpci/
Ddvb_filter.c87 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()
Dav7110_ipack.c136 int rest = p->size - p->count; in write_ipack() local
137 memcpy(p->buf+p->count, data, rest); in write_ipack()
138 p->count += rest; in write_ipack()
140 if (count - rest > 0) in write_ipack()
141 write_ipack(p, data + rest, count - rest); in write_ipack()
/Linux-v4.19/drivers/media/radio/
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()
97 while (rest != 0) { in terratec_s_frequency()
98 if (rest % temp == rest) in terratec_s_frequency()
102 rest = rest - temp; in terratec_s_frequency()
/Linux-v4.19/arch/hexagon/lib/
Dmemcpy.S173 #define rest R8 /* length - prolog bytes */ macro
335 rest = sub(len, star3); /* whats left after the loop */ define
338 if(p0) rest = add(rest, #16);
343 p0 = cmp.gt(rest, #16);
348 rest = add(rest, #-8); define
371 rest = kernel; define
381 p3 = cmp.eq(kernel, rest);
415 rest = add(kernel, #-1); define
/Linux-v4.19/tools/perf/
DMakefile79 rest := $(filter-out clean,$(MAKECMDGOALS)) macro
80 ifneq ($(rest),)
81 $(rest): clean
/Linux-v4.19/tools/lib/subcmd/
Dparse-options.c354 const char *rest; in parse_long_opt() local
360 rest = skip_prefix(arg, options->long_name); in parse_long_opt()
362 if (!rest) in parse_long_opt()
364 if (*rest == '=') in parse_long_opt()
366 if (*rest) in parse_long_opt()
371 if (!rest) { in parse_long_opt()
379 rest = skip_prefix(arg, options->long_name + 3); in parse_long_opt()
380 if (rest) { in parse_long_opt()
418 rest = skip_prefix(arg + 3, options->long_name); in parse_long_opt()
420 if (!rest && strstarts(options->long_name, arg + 3)) in parse_long_opt()
[all …]
/Linux-v4.19/drivers/s390/block/
Ddasd_eer.c134 unsigned long rest, len; in dasd_eer_write_buffer() local
138 rest = count; in dasd_eer_write_buffer()
139 while (rest > 0) { in dasd_eer_write_buffer()
142 len = min(rest, PAGE_SIZE - localhead); in dasd_eer_write_buffer()
145 rest -= len; in dasd_eer_write_buffer()
160 unsigned long rest, len, finalcount; in dasd_eer_read_buffer() local
165 rest = finalcount; in dasd_eer_read_buffer()
166 while (rest > 0) { in dasd_eer_read_buffer()
169 len = min(rest, PAGE_SIZE - localtail); in dasd_eer_read_buffer()
172 rest -= len; in dasd_eer_read_buffer()
/Linux-v4.19/lib/zstd/
Dentropy_common.c226 U32 const rest = total - weightTotal; in HUF_readStats_wksp() local
227 U32 const verif = 1 << BIT_highbit32(rest); in HUF_readStats_wksp()
228 U32 const lastWeight = BIT_highbit32(rest) + 1; in HUF_readStats_wksp()
229 if (verif != rest) in HUF_readStats_wksp()
/Linux-v4.19/Documentation/devicetree/bindings/clock/
Darm-syscon-icst.txt22 Integrator/AP 22 1 Bit 8 0, rest variable
25 Integrator/AP 46 3 Bit 8 0, rest variable
31 Integrator/CP 22 variable Bit 8 0, rest variable
34 Integrator/CP 22 variable Bit 8 0, rest variable
/Linux-v4.19/arch/x86/lib/
Dcsum-wrappers_64.c141 __u64 rest, sum64; in csum_ipv6_magic() local
143 rest = (__force __u64)htonl(len) + (__force __u64)htons(proto) + in csum_ipv6_magic()
153 : "[sum]" (rest), [saddr] "r" (saddr), [daddr] "r" (daddr)); in csum_ipv6_magic()
/Linux-v4.19/arch/s390/crypto/
Dprng.c100 u32 rest; member
569 if (prng_data->rest) { in prng_sha512_read()
571 p = prng_data->buf + prng_chunk_size - prng_data->rest; in prng_sha512_read()
572 n = (nbytes < prng_data->rest) ? in prng_sha512_read()
573 nbytes : prng_data->rest; in prng_sha512_read()
574 prng_data->rest -= n; in prng_sha512_read()
585 prng_data->rest = prng_chunk_size - n; in prng_sha512_read()
588 prng_data->rest = 0; in prng_sha512_read()
/Linux-v4.19/fs/squashfs/
Dxattr.c49 size_t rest = buffer_size; in squashfs_listxattr() local
75 if (prefix_size + name_size + 1 > rest) { in squashfs_listxattr()
90 rest -= prefix_size + name_size + 1; in squashfs_listxattr()
111 err = buffer_size - rest; in squashfs_listxattr()
/Linux-v4.19/Documentation/media/uapi/v4l/
Dpixfmt-meta-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-v4.19/Documentation/cgroup-v1/
Ddevices.txt77 B "c 1:3 rwm", "b 3:* rwm" all the rest
88 A "c 1:3 rwm", "c 1:5 r" all the rest
89 B "c 1:3 rwm", "c 1:5 r" all the rest
96 A "c *:3 rwm", "c 1:5 r" all the rest
97 B "c 1:3 rwm", "c 1:5 r" all the rest
/Linux-v4.19/drivers/staging/comedi/drivers/
Dme4000.c581 int rest; in me4000_ai_round_cmd_args() local
589 rest = (cmd->start_arg * 33) % 1000; in me4000_ai_round_cmd_args()
592 if (rest > 33) in me4000_ai_round_cmd_args()
595 if (rest) in me4000_ai_round_cmd_args()
602 rest = (cmd->scan_begin_arg * 33) % 1000; in me4000_ai_round_cmd_args()
605 if (rest > 33) in me4000_ai_round_cmd_args()
608 if (rest) in me4000_ai_round_cmd_args()
615 rest = (cmd->convert_arg * 33) % 1000; in me4000_ai_round_cmd_args()
618 if (rest > 33) in me4000_ai_round_cmd_args()
621 if (rest) in me4000_ai_round_cmd_args()
/Linux-v4.19/sound/pci/
Dbt87x.c243 u32 rest; in snd_bt87x_create_risc() local
245 rest = period_bytes; in snd_bt87x_create_risc()
251 if (len > rest) in snd_bt87x_create_risc()
252 len = rest; in snd_bt87x_create_risc()
254 if (rest == period_bytes) { in snd_bt87x_create_risc()
260 if (len == rest) in snd_bt87x_create_risc()
266 rest -= len; in snd_bt87x_create_risc()
267 } while (rest > 0); in snd_bt87x_create_risc()
Dvia82xx_modem.c282 unsigned int i, idx, ofs, rest; in build_via_table() local
306 rest = fragsize; in build_via_table()
323 if (rest < r) in build_via_table()
324 r = rest; in build_via_table()
325 rest -= r; in build_via_table()
326 if (! rest) { in build_via_table()
343 } while (rest > 0); in build_via_table()
/Linux-v4.19/fs/nfsd/
Dnfs3acl.c244 #define PROC(name, argt, rest, relt, cache, respsize) \ argument
248 .pc_encode = nfs3svc_encode_##rest##res, \
251 .pc_ressize = sizeof(struct nfsd3_##rest##res), \
/Linux-v4.19/tools/testing/selftests/x86/
Dmpx-dig.c94 char rest[1000]; in __pid_load_vaddrs() local
110 parsed = sscanf(linebuf, "%lx-%lx%s", &start, &end, rest); in __pid_load_vaddrs()
114 dprintf4("result[%d]: %lx-%lx<->%s\n", parsed, start, end, rest); in __pid_load_vaddrs()
/Linux-v4.19/drivers/net/hamradio/
D6pack.c934 unsigned char checksum = 0, rest = 0; in decode_std_command() local
949 rest = sp->rx_count; in decode_std_command()
950 if (rest != 0) in decode_std_command()
951 for (i = rest; i <= 3; i++) in decode_std_command()
953 if (rest == 2) in decode_std_command()
955 else if (rest == 3) in decode_std_command()
/Linux-v4.19/sound/soc/xtensa/
DKconfig7 the drivers for the rest of XTFPGA audio subsystem.
/Linux-v4.19/tools/testing/selftests/ftrace/test.d/event/
Devent-pid.tc47 read mypid rest < /proc/self/stat
/Linux-v4.19/drivers/gpu/drm/savage/
Dsavage_bci.c366 unsigned int rest = SAVAGE_DMA_PAGE_SIZE - in savage_dma_alloc() local
368 unsigned int nr_pages = (n - rest + SAVAGE_DMA_PAGE_SIZE - 1) / in savage_dma_alloc()
374 cur, dev_priv->dma_pages[cur].used, n, rest, nr_pages); in savage_dma_alloc()
379 if (n < rest) in savage_dma_alloc()
380 rest = n; in savage_dma_alloc()
381 dev_priv->dma_pages[cur].used += rest; in savage_dma_alloc()
382 n -= rest; in savage_dma_alloc()

12345678910>>...12