Home
last modified time | relevance | path

Searched full:repeat (Results 1 – 25 of 751) sorted by relevance

12345678910>>...31

/linux-6.12.1/scripts/genksyms/
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-6.12.1/fs/jffs2/
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-6.12.1/net/bpf/
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()
286 u32 repeat) in xdp_test_run_batch() argument
298 batch_sz = min_t(u32, repeat, xdp->batch_size); in xdp_test_run_batch()
373 u32 repeat, u32 batch_size, u32 *time) in bpf_test_run_xdp_live() argument
380 if (!repeat) in bpf_test_run_xdp_live()
381 repeat = 1; in bpf_test_run_xdp_live()
390 ret = xdp_test_run_batch(&xdp, prog, repeat - t.i); in bpf_test_run_xdp_live()
393 } while (bpf_test_timer_continue(&t, xdp.frame_cnt, repeat, &ret, time)); in bpf_test_run_xdp_live()
400 static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat, in bpf_test_run() argument
[all …]
/linux-6.12.1/sound/core/
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-6.12.1/drivers/media/rc/
Dmeson-ir.c101 * with @repeat_compare_enable to detect the repeat frame
102 * @repeat_check_enable: enable repeat time check for repeat detection
103 * @repeat_compare_enable: enable to compare frame for repeat frame detection.
104 * Some IR Protocol send the same data as repeat frame.
106 * @repeat_counter_enable to detect the repeat frame.
120 * @repeat_leader_max: max time for NEC repeat leader idle part. Unit: MESON_HW_TRATE
121 * @repeat_leader_min: min time for NEC repeat leader idle part. Unit: MESON_HW_TRATE
178 /* protocol, repeat counter, repeat check, repeat compare, order */
182 /* leader active max/min, leader idle max/min, repeat leader max/min */
304 * Some protocols transmit the same data frame as repeat frame in meson_ir_hw_decoder_init()
[all …]
/linux-6.12.1/drivers/leds/trigger/
Dledtrig-pattern.c38 int repeat; member
51 data->repeat--; in pattern_trig_update_patterns()
112 if (!data->is_indefinite && !data->repeat) in pattern_trig_timer_common_function()
164 if (!data->is_indefinite && !data->repeat) in pattern_trig_hrtimer_function()
179 data->npatterns, data->repeat); in pattern_trig_start_pattern()
199 int repeat; in repeat_show() local
203 repeat = data->last_repeat; in repeat_show()
207 return sysfs_emit(buf, "%d\n", repeat); in repeat_show()
232 data->last_repeat = data->repeat = res; in repeat_store()
233 /* -1 means repeat indefinitely */ in repeat_store()
[all …]
/linux-6.12.1/sound/usb/line6/
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-6.12.1/tools/testing/selftests/bpf/prog_tests/
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()
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()
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()
/linux-6.12.1/Documentation/ABI/testing/
Dsysfs-class-led-trigger-pattern39 What: /sys/class/leds/<led>/repeat
43 Specify a pattern repeat number. -1 means repeat indefinitely,
46 This file will always return the originally written repeat
/linux-6.12.1/tools/testing/selftests/powerpc/primitives/linux/
Dwordpart.h35 * REPEAT_BYTE - repeat the value @x multiple times as an unsigned long value
36 * @x: value to repeat
43 * REPEAT_BYTE_U32 - repeat the value @x multiple times as a u32 value
44 * @x: value to repeat
/linux-6.12.1/include/linux/
Dwordpart.h35 * REPEAT_BYTE - repeat the value @x multiple times as an unsigned long value
36 * @x: value to repeat
43 * REPEAT_BYTE_U32 - repeat the value @x multiple times as a u32 value
44 * @x: value to repeat
/linux-6.12.1/kernel/power/
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-6.12.1/drivers/media/rc/img-ir/
Dimg-ir-hw.h129 #define IMG_IR_REPEATCODE 1 /* repeat the previous code */
152 * @repeat: Maximum repeat interval (always in milliseconds).
158 * Returns IMG_IR_REPEATCODE to repeat previous code.
171 unsigned int repeat; member
193 * @rtimings: Processed repeat timings.
218 * @end_timer: Timer until repeat timeout.
Dimg-ir-sanyo.c26 /* a repeat code has no data */ in img_ir_sanyo_scancode()
109 /* repeat codes */
110 .repeat = 108, /* 108 ms */
118 .minlen = 0, /* repeat code has no data */
/linux-6.12.1/drivers/accel/habanalabs/include/common/
Dqman_if.h28 * BD_CTL_REPEAT_VALID tells the CP whether the repeat field in the BD CTL is
29 * valid. 1 means the repeat field is valid, 0 means not-valid,
30 * i.e. repeat == 1
/linux-6.12.1/drivers/media/pci/solo6x10/
Dsolo6x10-p2m.c30 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.12.1/drivers/usb/host/
Dxhci-mtk.h71 * (@repeat==1) scheduled within the interval
83 * @repeat: the time gap between two uframes that transfers are
92 * according to @pkts and @repeat, repeate the burst multiple
94 * according to @pkts and @repeat. normal mode is used by
117 u32 repeat; member
/linux-6.12.1/tools/testing/selftests/lkdtm/
Drun.sh59 repeat=1
63 if echo "$expect" | grep -q '^repeat:' ; then
64 repeat=$(echo "$expect" | cut -d' ' -f1 | cut -d: -f2)
92 for i in $(seq 1 $repeat); do
/linux-6.12.1/arch/x86/boot/
Dprintf.c136 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.12.1/arch/alpha/boot/
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-6.12.1/tools/testing/selftests/kvm/lib/
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-6.12.1/lib/zstd/compress/
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()
/linux-6.12.1/drivers/gpu/drm/sti/
Dsti_awg_utils.c22 REPEAT, enumerator
39 /* skip, repeat and replay arg should not exceed 1023. in awg_generate_instr()
77 case REPEAT: in awg_generate_instr()
80 /* REPEAT or REPLAY instruction not needed */ in awg_generate_instr()

12345678910>>...31