Searched refs:repeat (Results 126 - 150 of 210) sorted by path

123456789

/linux-master/kernel/
H A Dexit.c247 repeat:
289 goto repeat;
H A Dkthread.c816 repeat:
852 goto repeat;
H A Dstop_machine.c491 repeat:
522 goto repeat;
H A Dworkqueue.c2209 repeat:
2214 goto repeat;
2239 goto repeat;
2379 * repeat pwq selection. Note that unbound pwqs never die without
3482 repeat:
3580 goto repeat;
3649 bool repeat; local
3666 repeat = need_more_worker(pool);
3674 if (repeat) {
4084 * flusher and repeat cascadin
[all...]
/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/kernel/rcu/
H A Drefscale.c819 repeat:
870 goto repeat;
/linux-master/lib/
H A Ddebugobjects.c976 repeat:
991 goto repeat;
H A Dtest_xarray.c792 repeat:
796 goto repeat;
/linux-master/lib/zstd/common/
H A Dhuf.h200 * Same as HUF_compress4X_wksp(), but considers using hufTable if *repeat != HUF_repeat_none.
201 * If it uses hufTable it does not modify hufTable or repeat.
202 * If it doesn't, it sets *repeat = HUF_repeat_none, and it sets hufTable to the table used.
209 HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2, unsigned suspectUncompressible);
306 * Same as HUF_compress1X_wksp(), but considers using hufTable if *repeat != HUF_repeat_none.
307 * If it uses hufTable it does not modify hufTable or repeat.
308 * If it doesn't, it sets *repeat = HUF_repeat_none, and it sets hufTable to the table used.
315 HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2, unsigned suspectUncompressible);
/linux-master/lib/zstd/compress/
H A Dhuf_compress.c1180 HUF_CElt* oldHufTable, HUF_repeat* repeat, int preferRepeat,
1201 if (preferRepeat && repeat && *repeat == HUF_repeat_valid) {
1229 if ( repeat
1230 && *repeat == HUF_repeat_check
1232 *repeat = HUF_repeat_none;
1235 if (preferRepeat && repeat && *repeat != HUF_repeat_none) {
1260 if (repeat && *repeat !
1175 HUF_compress_internal(void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned huffLog, HUF_nbStreams_e nbStreams, void* workSpace, size_t wkspSize, HUF_CElt* oldHufTable, HUF_repeat* repeat, int preferRepeat, const int bmi2, unsigned suspectUncompressible) argument
1293 HUF_compress1X_repeat(void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned huffLog, void* workSpace, size_t wkspSize, HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2, unsigned suspectUncompressible) argument
1324 HUF_compress4X_repeat(void* dst, size_t dstSize, const void* src, size_t srcSize, unsigned maxSymbolValue, unsigned huffLog, void* workSpace, size_t wkspSize, HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2, unsigned suspectUncompressible) argument
[all...]
H A Dzstd_compress.c2959 * Stores literals block type (raw, rle, compressed, repeat) and
2979 HUF_repeat repeat = prevHuf->repeatMode; local
3019 if (repeat == HUF_repeat_check && !HUF_validateCTable((HUF_CElt const*)prevHuf->CTable, countWksp, maxSymbolValue)) {
3020 repeat = HUF_repeat_none;
3039 if (repeat != HUF_repeat_none) {
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) {
H A Dzstd_compress_superblock.c155 * The following sub-blocks will always have repeat mode.
203 const U32 repeat = set_repeat; local
204 *seqHead = (BYTE)((repeat<<6) + (repeat<<4) + (repeat<<2));
241 * with repeat mode where sequences section body size can be 1 byte.
421 * The following blocks will use repeat mode to compress.
/linux-master/mm/
H A Dfilemap.c1227 repeat:
1302 goto repeat;
1814 repeat:
1818 goto repeat;
1827 goto repeat;
1831 goto repeat;
1860 repeat:
1881 goto repeat;
1942 goto repeat;
3708 repeat
[all...]
H A Dmemblock.c622 repeat:
678 * If this was the first round, resize array and repeat for actual
686 goto repeat;
H A Dshmem.c1974 repeat:
1994 goto repeat;
2007 goto repeat;
2052 goto repeat;
2059 goto repeat;
H A Dswap_slots.c332 repeat:
338 goto repeat;
H A Dvmalloc.c1053 repeat:
1068 * repeat the search because a VA has been removed concurrently and we
1081 goto repeat;
1688 * triggered to repeat one more time. See more details
/linux-master/net/bpf/
H A Dtest_run.c62 u32 repeat, int *err, u32 *duration)
66 if (t->i >= repeat) {
284 u32 repeat)
295 batch_sz = min_t(u32, repeat, xdp->batch_size);
367 u32 repeat, u32 batch_size, u32 *time)
374 if (!repeat)
375 repeat = 1;
384 ret = xdp_test_run_batch(&xdp, prog, repeat - t.i);
387 } while (bpf_test_timer_continue(&t, xdp.frame_cnt, repeat, &ret, time));
394 static int bpf_test_run(struct bpf_prog *prog, void *ctx, u32 repeat, argument
283 xdp_test_run_batch(struct xdp_test_data *xdp, struct bpf_prog *prog, u32 repeat) argument
366 bpf_test_run_xdp_live(struct bpf_prog *prog, struct xdp_buff *ctx, u32 repeat, u32 batch_size, u32 *time) argument
963 u32 repeat = kattr->test.repeat; local
1159 u32 repeat = kattr->test.repeat; local
1319 u32 repeat = kattr->test.repeat; local
1387 u32 repeat = kattr->test.repeat; local
1590 u32 repeat = kattr->test.repeat; local
[all...]
/linux-master/net/core/
H A Dnetpoll.c295 repeat:
304 goto repeat;
/linux-master/net/netfilter/ipvs/
H A Dip_vs_ctl.c248 unsigned long delay = HZ / 10; /* repeat startups after failure */
249 bool repeat = false; local
270 repeat = true;
276 if (repeat)
/linux-master/net/netfilter/
H A Dnf_conntrack_core.c1995 repeat:
2024 goto repeat;
H A Dnfnetlink_queue.c238 repeat:
244 goto repeat;
/linux-master/net/sched/
H A Dact_api.c1099 repeat:
1103 goto 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;

Completed in 354 milliseconds

123456789