/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/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:
|
/kernel/linux/linux-5.10/drivers/media/pci/ttpci/ |
D | dvb_filter.c | 87 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()
|
D | av7110_ipack.c | 136 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()
|
/kernel/linux/linux-5.10/drivers/media/radio/ |
D | radio-terratec.c | 87 long rest; in terratec_s_frequency() local 93 rest = freq * 10 + 10700; /* I once had understood what is going on here */ in terratec_s_frequency() 98 while (rest != 0) { in terratec_s_frequency() 99 if (rest % temp == rest) in terratec_s_frequency() 103 rest = rest - temp; in terratec_s_frequency()
|
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/sc/sc_1.0/ |
D | ia_css_sc.host.c | 85 u32 slice, rest, i; in ia_css_sc_config() local 90 rest = internal_org_x_bqs; in ia_css_sc_config() 92 slice = min(rest, ((uint32_t)ISP_SLICE_NELEMS)); in ia_css_sc_config() 93 rest = rest - slice; in ia_css_sc_config()
|
/kernel/linux/linux-5.10/fs/proc/ |
D | bootconfig.c | 23 #define rest(dst, end) ((end) > (dst) ? (end) - (dst) : 0) macro 40 ret = snprintf(dst, rest(dst, end), "%s = ", key); in copy_xbc_key_value_list() 51 ret = snprintf(dst, rest(dst, end), "%c%s%c%s", in copy_xbc_key_value_list() 58 ret = snprintf(dst, rest(dst, end), "\"\"\n"); in copy_xbc_key_value_list()
|
/kernel/linux/linux-5.10/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
|
/kernel/linux/linux-5.10/arch/x86/lib/ |
D | csum-wrappers_64.c | 82 __u64 rest, sum64; in csum_ipv6_magic() local 84 rest = (__force __u64)htonl(len) + (__force __u64)htons(proto) + in csum_ipv6_magic() 94 : "[sum]" (rest), [saddr] "r" (saddr), [daddr] "r" (daddr)); in csum_ipv6_magic()
|
/kernel/linux/linux-5.10/tools/perf/ |
D | Makefile | 79 rest := $(filter-out clean,$(MAKECMDGOALS)) macro 80 ifneq ($(rest),) 81 $(rest): clean
|
/kernel/linux/linux-5.10/drivers/s390/block/ |
D | dasd_eer.c | 134 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()
|
/kernel/linux/linux-5.10/tools/testing/selftests/arm64/fp/ |
D | vlset.c | 40 char *rest; in parse_options() local 66 vl = strtoul(argv[optind], &rest, 0); in parse_options() 67 if (*rest) { in parse_options()
|
/kernel/linux/linux-5.10/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 …]
|
/kernel/linux/linux-5.10/lib/zstd/ |
D | entropy_common.c | 226 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()
|
/kernel/linux/linux-5.10/arch/s390/crypto/ |
D | prng.c | 101 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()
|
/kernel/linux/linux-5.10/fs/squashfs/ |
D | xattr.c | 36 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()
|
/kernel/linux/linux-5.10/Documentation/userspace-api/media/v4l/ |
D | pixfmt-meta-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
|
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/s3a/s3a_1.0/ |
D | ia_css_s3a.host.c | 339 int out_width, out_height, chunk, rest, kmax, y, x, k, elm_start, elm, ofs; in ia_css_s3a_vmem_decode() local 359 rest = out_width; in ia_css_s3a_vmem_decode() 362 kmax = (rest > chunk) ? chunk : rest; in ia_css_s3a_vmem_decode() 384 rest -= chunk; in ia_css_s3a_vmem_decode()
|
/kernel/linux/linux-5.10/tools/testing/selftests/net/mptcp/ |
D | mptcp_connect.sh | 409 … ${listener_ns} nstat -z -a MPTcpExtMPCapableSYNRX | while read a count c rest ;do echo $count;do… 410 … ${listener_ns} nstat -z -a MPTcpExtMPCapableACKRX | while read a count c rest ;do echo $count;do… 411 …ec ${listener_ns} nstat -z -a TcpExtSyncookiesSent | while read a count c rest ;do echo $count;do… 412 …ec ${listener_ns} nstat -z -a TcpExtSyncookiesRecv | while read a count c rest ;do echo $count;do… 457 …${listener_ns} nstat -z -a MPTcpExtMPCapableSYNRX | while read a count c rest ;do echo $count;do… 458 …${listener_ns} nstat -z -a MPTcpExtMPCapableACKRX | while read a count c rest ;do echo $count;do… 460 …ec ${listener_ns} nstat -z -a TcpExtSyncookiesSent | while read a count c rest ;do echo $count;do… 461 …ec ${listener_ns} nstat -z -a TcpExtSyncookiesRecv | while read a count c rest ;do echo $count;do…
|
/kernel/linux/linux-5.10/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
|
/kernel/linux/linux-5.10/scripts/dtc/ |
D | srcpos.c | 314 char *pos_str, *fname, *first, *rest; in srcpos_string_comment() local 352 rest = srcpos_string_comment(pos->next, first_line, level); in srcpos_string_comment() 353 xasprintf(&pos_str, "%s, %s", first, rest); in srcpos_string_comment() 355 free(rest); in srcpos_string_comment()
|
/kernel/linux/linux-5.10/include/linux/ |
D | uaccess.h | 349 size_t rest = max(ksize, usize) - size; in copy_struct_from_user() local 353 memset(dst + size, 0, rest); in copy_struct_from_user() 355 int ret = check_zeroed_user(src + size, rest); in copy_struct_from_user()
|
/kernel/linux/linux-5.10/drivers/staging/comedi/drivers/ |
D | me4000.c | 581 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()
|
/kernel/linux/linux-5.10/sound/pci/ |
D | bt87x.c | 229 u32 rest; in snd_bt87x_create_risc() local 231 rest = period_bytes; in snd_bt87x_create_risc() 237 if (len > rest) in snd_bt87x_create_risc() 238 len = rest; in snd_bt87x_create_risc() 240 if (rest == period_bytes) { in snd_bt87x_create_risc() 246 if (len == rest) in snd_bt87x_create_risc() 252 rest -= len; in snd_bt87x_create_risc() 253 } while (rest > 0); in snd_bt87x_create_risc()
|
/kernel/linux/linux-5.10/drivers/net/hamradio/ |
D | 6pack.c | 913 unsigned char checksum = 0, rest = 0; in decode_std_command() local 928 rest = sp->rx_count; in decode_std_command() 929 if (rest != 0) in decode_std_command() 930 for (i = rest; i <= 3; i++) in decode_std_command() 932 if (rest == 2) in decode_std_command() 934 else if (rest == 3) in decode_std_command()
|