/linux-6.6.21/scripts/genksyms/ |
D | lex.l | 138 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-6.6.21/fs/jffs2/ |
D | compr_rtime.c | 89 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-6.6.21/sound/core/ |
D | ump_convert.c | 33 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-6.6.21/kernel/power/ |
D | suspend_test.c | 78 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-6.6.21/net/bpf/ |
D | test_run.c | 61 u32 repeat, int *err, u32 *duration) in bpf_test_timer_continue() argument 65 if (t->i >= repeat) { in bpf_test_timer_continue() 282 u32 repeat) in xdp_test_run_batch() argument 293 batch_sz = min_t(u32, repeat, xdp->batch_size); in xdp_test_run_batch() 365 u32 repeat, u32 batch_size, u32 *time) in bpf_test_run_xdp_live() argument 372 if (!repeat) in bpf_test_run_xdp_live() 373 repeat = 1; in bpf_test_run_xdp_live() 382 ret = xdp_test_run_batch(&xdp, prog, repeat - t.i); in bpf_test_run_xdp_live() 385 } while (bpf_test_timer_continue(&t, xdp.frame_cnt, repeat, &ret, time)); in bpf_test_run_xdp_live() 392 static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat, in bpf_test_run() argument [all …]
|
/linux-6.6.21/sound/usb/line6/ |
D | midibuf.c | 130 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-6.6.21/scripts/kconfig/ |
D | streamline_config.pl | 434 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-6.6.21/tools/testing/selftests/bpf/prog_tests/ |
D | prog_run_opts.c | 31 .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()
|
D | rbtree.c | 17 .repeat = 1, in test_rbtree_add_nodes() 39 .repeat = 1, in test_rbtree_add_and_remove() 61 .repeat = 1, in test_rbtree_first_and_remove() 85 .repeat = 1, in test_rbtree_api_release_aliasing()
|
D | local_kptr_stash.c | 14 .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_unstash()
|
D | ksyms_module.c | 16 .repeat = 1, in test_ksyms_module_lskel() 43 .repeat = 1, in test_ksyms_module_libbpf()
|
/linux-6.6.21/drivers/leds/trigger/ |
D | ledtrig-pattern.c | 31 int repeat; member 43 data->repeat--; in pattern_trig_update_patterns() 79 if (!data->is_indefinite && !data->repeat) in pattern_trig_timer_function() 129 data->npatterns, data->repeat); in pattern_trig_start_pattern() 150 int repeat; in repeat_show() local 154 repeat = data->last_repeat; in repeat_show() 158 return sysfs_emit(buf, "%d\n", repeat); in repeat_show() 183 data->last_repeat = data->repeat = res; in repeat_store() 185 if (data->repeat == -1) in repeat_store() 196 static DEVICE_ATTR_RW(repeat);
|
/linux-6.6.21/arch/x86/boot/ |
D | printf.c | 136 repeat: in vsprintf() 141 goto repeat; in vsprintf() 144 goto repeat; in vsprintf() 147 goto repeat; in vsprintf() 150 goto repeat; in vsprintf() 153 goto repeat; in vsprintf()
|
/linux-6.6.21/arch/alpha/boot/ |
D | stdio.c | 136 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-6.6.21/tools/testing/selftests/kvm/lib/ |
D | guest_sprintf.c | 147 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-6.6.21/lib/zstd/compress/ |
D | zstd_compress_literals.c | 102 { 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()
|
D | huf_compress.c | 1180 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-6.6.21/Documentation/ABI/testing/ |
D | sysfs-class-led-trigger-pattern | 29 What: /sys/class/leds/<led>/repeat 33 Specify a pattern repeat number. -1 means repeat indefinitely, 36 This file will always return the originally written repeat
|
/linux-6.6.21/arch/powerpc/boot/ |
D | stdio.c | 172 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-6.6.21/drivers/media/pci/solo6x10/ |
D | solo6x10-p2m.c | 30 int repeat, u32 ext_size) in solo_p2m_dma() argument 46 repeat, ext_size); in solo_p2m_dma() 126 int repeat, u32 ext_size) in solo_p2m_fill_desc() argument 135 if (repeat) { in solo_p2m_fill_desc() 138 SOLO_P2M_REPEAT(repeat); in solo_p2m_fill_desc() 147 int repeat, u32 ext_size) in solo_p2m_dma_t() argument 151 solo_p2m_fill_desc(&desc[1], wr, dma_addr, ext_addr, size, repeat, in solo_p2m_dma_t()
|
/linux-6.6.21/drivers/i2c/busses/ |
D | i2c-uniphier-f.c | 248 bool repeat) in uniphier_fi2c_tx_init() argument 262 if (!repeat) in uniphier_fi2c_tx_init() 314 struct i2c_msg *msg, bool repeat, in uniphier_fi2c_master_xfer_one() argument 340 uniphier_fi2c_tx_init(priv, msg->addr, repeat); in uniphier_fi2c_master_xfer_one() 347 if (!repeat) in uniphier_fi2c_master_xfer_one() 411 bool repeat = false; in uniphier_fi2c_master_xfer() local 422 ret = uniphier_fi2c_master_xfer_one(adap, msg, repeat, stop); in uniphier_fi2c_master_xfer() 426 repeat = !stop; in uniphier_fi2c_master_xfer()
|
/linux-6.6.21/fs/erofs/ |
D | utils.c | 58 repeat: in erofs_find_workgroup() 65 goto repeat; in erofs_find_workgroup() 81 repeat: in erofs_insert_workgroup() 92 goto repeat; in erofs_insert_workgroup()
|
/linux-6.6.21/kernel/debug/kdb/ |
D | kdb_main.c | 1531 int num, int repeat, int phys) in kdb_md_line() argument 1547 for (i = 0; i < num && repeat--; i++) { in kdb_md_line() 1598 int radix = 16, mdcount = 8, bytesperword = KDB_WORD_SIZE, repeat; in kdb_md() local 1614 repeat = mdcount * 16 / bytesperword; in kdb_md() 1629 repeat = mdcount * 16 / bytesperword; in kdb_md() 1634 repeat = simple_strtoul(argv[0] + 4, &p, 10); in kdb_md() 1635 mdcount = ((repeat * bytesperword) + 15) / 16; in kdb_md() 1638 last_repeat = repeat; in kdb_md() 1655 repeat = last_repeat; in kdb_md() 1657 mdcount = repeat; in kdb_md() [all …]
|
/linux-6.6.21/arch/sparc/include/asm/ |
D | vvar.h | 45 repeat: in vvar_read_begin() 49 goto repeat; in vvar_read_begin()
|
/linux-6.6.21/drivers/gpu/drm/tegra/ |
D | dp.c | 622 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()
|