Home
last modified time | relevance | path

Searched refs:repeat (Results 1 – 25 of 241) sorted by relevance

12345678910

/linux/scripts/genksyms/
H A Dlex.l138 repeat:
165 goto repeat;
184 goto repeat;
188 goto repeat;
192 goto repeat;
207 goto repeat;
222 goto repeat;
230 goto repeat;
249 goto repeat;
257 goto repeat;
[all …]
/linux/fs/jffs2/
H A Dcompr_rtime.c89 int repeat; in jffs2_rtime_decompress() local
93 repeat = data_in[pos++]; in jffs2_rtime_decompress()
97 if (repeat) { in jffs2_rtime_decompress()
98 if (backoffs + repeat >= outpos) { in jffs2_rtime_decompress()
99 while(repeat) { in jffs2_rtime_decompress()
101 repeat--; in jffs2_rtime_decompress()
104 memcpy(&cpage_out[outpos],&cpage_out[backoffs],repeat); in jffs2_rtime_decompress()
105 outpos+=repeat; in jffs2_rtime_decompress()
/linux/sound/core/
H A Dump_convert.c33 u16 val, repeat; in upscale_7_to_16bit() local
38 repeat = src & 0x3f; in upscale_7_to_16bit()
39 return val | (repeat << 3) | (repeat >> 3); in upscale_7_to_16bit()
44 u32 val, repeat; in upscale_7_to_32bit() local
49 repeat = src & 0x3f; in upscale_7_to_32bit()
50 return val | (repeat << 19) | (repeat << 13) | in upscale_7_to_32bit()
51 (repeat << 7) | (repeat << 1) | (repeat >> 5); in upscale_7_to_32bit()
56 u32 val, repeat; in upscale_14_to_32bit() local
61 repeat = src & 0x1fff; in upscale_14_to_32bit()
62 return val | (repeat << 5) | (repeat >> 8); in upscale_14_to_32bit()
/linux/net/bpf/
H A Dtest_run.c62 u32 repeat, int *err, u32 *duration) in bpf_test_timer_continue() argument
66 if (t->i >= repeat) { in bpf_test_timer_continue()
285 u32 repeat) in xdp_test_run_batch() argument
297 batch_sz = min_t(u32, repeat, xdp->batch_size); in xdp_test_run_batch()
372 u32 repeat, u32 batch_size, u32 *time) in bpf_test_run_xdp_live() argument
379 if (!repeat) in bpf_test_run_xdp_live()
380 repeat = 1; in bpf_test_run_xdp_live()
389 ret = xdp_test_run_batch(&xdp, prog, repeat - t.i); in bpf_test_run_xdp_live()
392 } while (bpf_test_timer_continue(&t, xdp.frame_cnt, repeat, &ret, time)); in bpf_test_run_xdp_live()
399 static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat, in bpf_test_run() argument
[all …]
/linux/kernel/power/
H A Dsuspend_test.c78 repeat: in test_wakealarm()
118 goto repeat; in test_wakealarm()
153 char *repeat; in setup_test_suspend() local
162 repeat = strsep(&value, ","); in setup_test_suspend()
163 if (repeat) { in setup_test_suspend()
164 if (kstrtou32(repeat, 0, &test_repeat_count_max)) in setup_test_suspend()
/linux/tools/testing/selftests/bpf/prog_tests/
H A Drbtree.c17 .repeat = 1, in test_rbtree_add_nodes()
39 .repeat = 1, in test_rbtree_add_nodes_nested()
61 .repeat = 1, in test_rbtree_add_and_remove()
83 .repeat = 1, in test_rbtree_add_and_remove_array()
104 .repeat = 1, in test_rbtree_first_and_remove()
128 .repeat = 1, in test_rbtree_api_release_aliasing()
H A Dlocal_kptr_stash.c14 .repeat = 1, in test_local_kptr_stash_simple()
35 .repeat = 1, in test_local_kptr_stash_plain()
56 .repeat = 1, in test_local_kptr_stash_local_with_root()
77 .repeat = 1, in test_local_kptr_stash_unstash()
102 .repeat = 1, in test_refcount_acquire_without_unstash()
H A Dprog_run_opts.c31 .repeat = 1, in test_prog_run_opts()
56 run_cnt += topts.repeat; in test_prog_run_opts()
61 topts.repeat = 2; in test_prog_run_opts()
69 run_cnt += topts.repeat; in test_prog_run_opts()
H A Dksyms_module.c16 .repeat = 1, in test_ksyms_module_lskel()
43 .repeat = 1, in test_ksyms_module_libbpf()
H A Dkfunc_call.c112 topts.repeat = 1; in verify_success()
178 topts.repeat = 1; in verify_fail()
241 .repeat = 1, in test_subprog()
265 .repeat = 1, in test_subprog_lskel()
/linux/sound/usb/line6/
H A Dmidibuf.c130 int repeat = 0; in line6_midibuf_read() local
173 repeat = 1; in line6_midibuf_read()
224 memcpy(data + repeat, this->buf + this->pos_read, length); in line6_midibuf_read()
229 memcpy(data + repeat, this->buf + this->pos_read, length1); in line6_midibuf_read()
230 memcpy(data + repeat + length1, this->buf, length2); in line6_midibuf_read()
234 if (repeat) in line6_midibuf_read()
238 return length + repeat; in line6_midibuf_read()
/linux/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/arch/alpha/boot/
H A Dstdio.c136 repeat: in vsprintf()
139 case '-': flags |= LEFT; goto repeat; in vsprintf()
140 case '+': flags |= PLUS; goto repeat; in vsprintf()
141 case ' ': flags |= SPACE; goto repeat; in vsprintf()
142 case '#': flags |= SPECIAL; goto repeat; in vsprintf()
143 case '0': flags |= ZEROPAD; goto repeat; in vsprintf()
/linux/tools/testing/selftests/kvm/lib/
H A Dguest_sprintf.c147 repeat: in guest_vsnprintf()
152 goto repeat; in guest_vsnprintf()
155 goto repeat; in guest_vsnprintf()
158 goto repeat; in guest_vsnprintf()
161 goto repeat; in guest_vsnprintf()
164 goto repeat; in guest_vsnprintf()
/linux/lib/zstd/compress/
H A Dzstd_compress_literals.c102 { HUF_repeat repeat = prevHuf->repeatMode; in ZSTD_compressLiterals() local
104 if (repeat == HUF_repeat_valid && lhSize == 3) singleStream = 1; in ZSTD_compressLiterals()
109 (HUF_CElt*)nextHuf->CTable, &repeat, preferRepeat, bmi2, suspectUncompressible) : in ZSTD_compressLiterals()
113 (HUF_CElt*)nextHuf->CTable, &repeat, preferRepeat, bmi2, suspectUncompressible); in ZSTD_compressLiterals()
114 if (repeat != HUF_repeat_none) { in ZSTD_compressLiterals()
H A Dhuf_compress.c1180 HUF_CElt* oldHufTable, HUF_repeat* repeat, int preferRepeat, in HUF_compress_internal() argument
1201 if (preferRepeat && repeat && *repeat == HUF_repeat_valid) { in HUF_compress_internal()
1229 if ( repeat in HUF_compress_internal()
1230 && *repeat == HUF_repeat_check in HUF_compress_internal()
1232 *repeat = HUF_repeat_none; in HUF_compress_internal()
1235 if (preferRepeat && repeat && *repeat != HUF_repeat_none) { in HUF_compress_internal()
1260 if (repeat && *repeat != HUF_repeat_none) { in HUF_compress_internal()
1272 if (repeat) { *repeat = HUF_repeat_none; } in HUF_compress_internal()
1297 HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, in HUF_compress1X_repeat() argument
1303 repeat, preferRepeat, bmi2, suspectUncompressible); in HUF_compress1X_repeat()
[all …]
/linux/arch/powerpc/boot/
H A Dstdio.c172 repeat: in vsprintf()
175 case '-': flags |= LEFT; goto repeat; in vsprintf()
176 case '+': flags |= PLUS; goto repeat; in vsprintf()
177 case ' ': flags |= SPACE; goto repeat; in vsprintf()
178 case '#': flags |= SPECIAL; goto repeat; in vsprintf()
179 case '0': flags |= ZEROPAD; goto repeat; in vsprintf()
/linux/drivers/i2c/busses/
H A Di2c-uniphier-f.c248 bool repeat) in uniphier_fi2c_tx_init() argument
262 if (!repeat) in uniphier_fi2c_tx_init()
314 bool repeat, bool stop) in uniphier_fi2c_xfer_one() argument
339 uniphier_fi2c_tx_init(priv, msg->addr, repeat); in uniphier_fi2c_xfer_one()
346 if (!repeat) in uniphier_fi2c_xfer_one()
408 bool repeat = false; in uniphier_fi2c_xfer() local
419 ret = uniphier_fi2c_xfer_one(adap, msg, repeat, stop); in uniphier_fi2c_xfer()
423 repeat = !stop; in uniphier_fi2c_xfer()
/linux/kernel/debug/kdb/
H A Dkdb_main.c1520 int num, int repeat, int phys) in kdb_md_line() argument
1536 for (i = 0; i < num && repeat--; i++) { in kdb_md_line()
1587 int radix = 16, mdcount = 8, bytesperword = KDB_WORD_SIZE, repeat; in kdb_md() local
1603 repeat = mdcount * 16 / bytesperword; in kdb_md()
1618 repeat = mdcount * 16 / bytesperword; in kdb_md()
1623 repeat = simple_strtoul(argv[0] + 4, &p, 10); in kdb_md()
1624 mdcount = ((repeat * bytesperword) + 15) / 16; in kdb_md()
1627 last_repeat = repeat; in kdb_md()
1644 repeat = last_repeat; in kdb_md()
1646 mdcount = repeat; in kdb_md()
[all …]
/linux/drivers/gpu/drm/tegra/
H A Ddp.c622 unsigned int repeat; in drm_dp_link_clock_recovery() local
628 for (repeat = 1; repeat < 5; repeat++) { in drm_dp_link_clock_recovery()
678 unsigned int repeat; in drm_dp_link_channel_equalization() local
687 for (repeat = 1; repeat < 5; repeat++) { in drm_dp_link_channel_equalization()
/linux/arch/sparc/include/asm/
H A Dvvar.h45 repeat: in vvar_read_begin()
49 goto repeat; in vvar_read_begin()
/linux/arch/powerpc/mm/book3s64/
H A Dhash_64k.c158 repeat: in __hash_page_4K()
204 goto repeat; in __hash_page_4K()
294 repeat: in __hash_page_64K()
319 goto repeat; in __hash_page_64K()
/linux/tools/perf/bench/
H A Dbreakpoint.c88 int *repeat = (int *)arg; in breakpoint_thread() local
95 while (__atomic_fetch_sub(repeat, 1, __ATOMIC_RELAXED) > 0) { in breakpoint_thread()
115 int repeat = bench_repeat; in bench_breakpoint_thread() local
142 if (pthread_create(&parallel[i], NULL, breakpoint_thread, &repeat)) in bench_breakpoint_thread()
/linux/fs/nilfs2/
H A Dpage.c252 repeat: in nilfs_copy_dirty_pages()
286 goto repeat; in nilfs_copy_dirty_pages()
306 repeat: in nilfs_copy_back_pages()
354 goto repeat; in nilfs_copy_back_pages()
497 repeat: in nilfs_find_uncommitted_extent()
535 goto repeat; in nilfs_find_uncommitted_extent()
/linux/drivers/leds/
H A Dleds-el15203000.c141 u32 len, int repeat) in el15203000_pattern_set_S() argument
145 if (repeat > 0 || len != 2 || in el15203000_pattern_set_S()
192 u32 len, int repeat) in el15203000_pattern_set_P() argument
197 if (repeat > 0) in el15203000_pattern_set_P()

12345678910