Searched refs:repeat (Results 1 - 25 of 210) sorted by relevance

123456789

/linux-master/include/linux/platform_data/
H A Dlm8323.h26 bool repeat; member in struct:lm8323_platform_data
/linux-master/fs/jffs2/
H A Dcompr_rtime.c89 int repeat; local
93 repeat = data_in[pos++];
97 if (repeat) {
98 if (backoffs + repeat >= outpos) {
99 while(repeat) {
101 repeat--;
104 memcpy(&cpage_out[outpos],&cpage_out[backoffs],repeat);
105 outpos+=repeat;
/linux-master/tools/testing/selftests/bpf/prog_tests/
H A Dprog_run_opts.c31 .repeat = 1,
56 run_cnt += topts.repeat;
61 topts.repeat = 2;
69 run_cnt += topts.repeat;
H A Dpkt_md_access.c13 .repeat = 10,
H A Djit_probe_mem.c13 .repeat = 1,
H A Dlocal_kptr_stash.c14 .repeat = 1,
35 .repeat = 1,
56 .repeat = 1,
77 .repeat = 1,
102 .repeat = 1,
H A Dtest_skb_pkt_end.c13 .repeat = 1,
H A Dpkt_access.c13 .repeat = 100000,
H A Dxdp_perf.c15 .repeat = 1000000,
H A Drbtree.c17 .repeat = 1,
39 .repeat = 1,
61 .repeat = 1,
85 .repeat = 1,
H A Dksyms_module.c16 .repeat = 1,
43 .repeat = 1,
H A Dmap_ptr.c20 .repeat = 1,
H A Dflow_dissector_load_bytes.c34 .repeat = 1,
H A Dcb_refs.c33 .repeat = 1,
H A Drefcounted_kptr.c25 .repeat = 1,
H A Dparse_tcp_hdr_opt.c39 .repeat = 3,
69 .repeat = 3,
/linux-master/arch/sparc/include/asm/
H A Dvvar.h45 repeat:
49 goto repeat;
/linux-master/kernel/power/
H A Dsuspend_test.c78 repeat:
118 goto repeat;
153 char *repeat; local
162 repeat = strsep(&value, ",");
163 if (repeat) {
164 if (kstrtou32(repeat, 0, &test_repeat_count_max))
/linux-master/drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/
H A Dinit.h17 u32 repeat; member in struct:nvbios_init
/linux-master/sound/core/
H A Dump_convert.c33 u16 val, repeat; local
38 repeat = src & 0x3f;
39 return val | (repeat << 3) | (repeat >> 3);
44 u32 val, repeat; local
49 repeat = src & 0x3f;
50 return val | (repeat << 19) | (repeat << 13) |
51 (repeat << 7) | (repeat <<
56 u32 val, repeat; local
[all...]
/linux-master/lib/zstd/compress/
H A Dzstd_compress_literals.c102 { HUF_repeat repeat = prevHuf->repeatMode; local
104 if (repeat == HUF_repeat_valid && lhSize == 3) singleStream = 1;
109 (HUF_CElt*)nextHuf->CTable, &repeat, preferRepeat, bmi2, suspectUncompressible) :
113 (HUF_CElt*)nextHuf->CTable, &repeat, preferRepeat, bmi2, suspectUncompressible);
114 if (repeat != HUF_repeat_none) {
/linux-master/sound/usb/line6/
H A Dmidibuf.c130 int repeat = 0; local
173 repeat = 1;
224 memcpy(data + repeat, this->buf + this->pos_read, length);
229 memcpy(data + repeat, this->buf + this->pos_read, length1);
230 memcpy(data + repeat + length1, this->buf, length2);
234 if (repeat)
238 return length + repeat;
/linux-master/scripts/kconfig/
H A Dstreamline_config.pl434 my $repeat = 1;
465 $repeat = 1; # do again
533 $repeat = 1;
543 $repeat = 1;
545 while ($repeat) {
546 $repeat = 0;
585 while ($repeat) {
589 $repeat = 0;
/linux-master/arch/powerpc/boot/
H A Dstdio.c172 repeat:
175 case '-': flags |= LEFT; goto repeat;
176 case '+': flags |= PLUS; goto repeat;
177 case ' ': flags |= SPACE; goto repeat;
178 case '#': flags |= SPECIAL; goto repeat;
179 case '0': flags |= ZEROPAD; goto repeat;
/linux-master/arch/x86/boot/
H A Dprintf.c136 repeat:
141 goto repeat;
144 goto repeat;
147 goto repeat;
150 goto repeat;
153 goto repeat;

Completed in 151 milliseconds

123456789