Home
last modified time | relevance | path

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

123456789

/freebsd-14.2/contrib/googletest/googletest/test/
H A Dgtest_repeat_test.cc140 void TestRepeat(int repeat) { in TestRepeat() argument
141 GTEST_FLAG_SET(repeat, repeat); in TestRepeat()
146 CheckCounts(repeat); in TestRepeat()
151 void TestRepeatWithEmptyFilter(int repeat) { in TestRepeatWithEmptyFilter() argument
152 GTEST_FLAG_SET(repeat, repeat); in TestRepeatWithEmptyFilter()
164 GTEST_FLAG_SET(repeat, repeat); in TestRepeatWithFilterForSuccessfulTests()
173 GTEST_CHECK_INT_EQ_(repeat, g_should_pass_count); in TestRepeatWithFilterForSuccessfulTests()
174 GTEST_CHECK_INT_EQ_(repeat, g_death_test_count); in TestRepeatWithFilterForSuccessfulTests()
180 void TestRepeatWithFilterForFailedTests(int repeat) { in TestRepeatWithFilterForFailedTests() argument
181 GTEST_FLAG_SET(repeat, repeat); in TestRepeatWithFilterForFailedTests()
[all …]
/freebsd-14.2/contrib/netbsd-tests/lib/libc/regex/data/att/
H A Dcategorization.dat29 |B a\(b\)*\1 abab (0,2)(1,2) # BUG=repeat-any
38 |B a\(b\)*\1 abab (0,2)(1,2) BUG=repeat-any
39 ; BUG=repeat-any-UNKNOWN
42 |E (a*)* ax (0,1)(0,1) BUG=repeat-null-unknown
43 |E (a*)* a (0,1)(1,1) BUG=repeat-null
44 ; BUG=repeat-null-UNKNOWN
47 |E (aba|a*b)* ababa (0,5)(3,4) BUG=repeat-short
49 ; BUG=repeat-short-UNKNOWN
52 |E (a(b)?)+ aba (0,3)(2,3)(1,2) BUG=repeat-artifact
53 ; BUG=repeat-artifact-UNKNOWN
[all …]
/freebsd-14.2/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_literals.c101 { HUF_repeat repeat = prevHuf->repeatMode; in ZSTD_compressLiterals() local
103 if (repeat == HUF_repeat_valid && lhSize == 3) singleStream = 1; in ZSTD_compressLiterals()
108 (HUF_CElt*)nextHuf->CTable, &repeat, preferRepeat, bmi2) : in ZSTD_compressLiterals()
112 (HUF_CElt*)nextHuf->CTable, &repeat, preferRepeat, bmi2); in ZSTD_compressLiterals()
113 if (repeat != HUF_repeat_none) { in ZSTD_compressLiterals()
H A Dhuf_compress.c643 HUF_CElt* oldHufTable, HUF_repeat* repeat, int preferRepeat, in HUF_compress_internal() argument
665 if (preferRepeat && repeat && *repeat == HUF_repeat_valid) { in HUF_compress_internal()
678 if ( repeat in HUF_compress_internal()
679 && *repeat == HUF_repeat_check in HUF_compress_internal()
681 *repeat = HUF_repeat_none; in HUF_compress_internal()
684 if (preferRepeat && repeat && *repeat != HUF_repeat_none) { in HUF_compress_internal()
705 if (repeat && *repeat != HUF_repeat_none) { in HUF_compress_internal()
717 if (repeat) { *repeat = HUF_repeat_none; } in HUF_compress_internal()
742 HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, int bmi2) in HUF_compress1X_repeat() argument
747 repeat, preferRepeat, bmi2); in HUF_compress1X_repeat()
[all …]
/freebsd-14.2/sys/contrib/zstd/lib/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.c1183 HUF_CElt* oldHufTable, HUF_repeat* repeat, int preferRepeat, in HUF_compress_internal() argument
1204 if (preferRepeat && repeat && *repeat == HUF_repeat_valid) { in HUF_compress_internal()
1232 if ( repeat in HUF_compress_internal()
1233 && *repeat == HUF_repeat_check in HUF_compress_internal()
1235 *repeat = HUF_repeat_none; in HUF_compress_internal()
1238 if (preferRepeat && repeat && *repeat != HUF_repeat_none) { in HUF_compress_internal()
1263 if (repeat && *repeat != HUF_repeat_none) { in HUF_compress_internal()
1275 if (repeat) { *repeat = HUF_repeat_none; } in HUF_compress_internal()
1300 HUF_CElt* hufTable, HUF_repeat* repeat, int preferRepeat, in HUF_compress1X_repeat() argument
1306 repeat, preferRepeat, bmi2, suspectUncompressible); in HUF_compress1X_repeat()
[all …]
/freebsd-14.2/contrib/lib9p/pytest/
H A Dsequencer.py415 def __init__(self, repeat, name, sub, aux=None): argument
417 self.repeat = repeat
424 self.repeat, self.name, self.sub)
426 self.repeat, self.name, self.sub, self.aux)
432 num = vdict[self.repeat]
444 num = vdict[self.repeat]
/freebsd-14.2/contrib/libbegemot/
H A Drpoll.h45 int poll_start_timer(u_int msecs, int repeat, timer_f func, void *arg);
46 int poll_start_utimer(unsigned long long usecs, int repeat, timer_f func,
H A Drpoll.c163 int repeat; /* one shot or repeat? */ member
363 poll_start_timer(u_int msecs, int repeat, timer_f func, void *arg) in poll_start_timer() argument
366 repeat, func, arg)); in poll_start_timer()
370 poll_start_utimer(unsigned long long usecs, int repeat, timer_f func, void *arg) in poll_start_utimer() argument
392 p->repeat = repeat; in poll_start_utimer()
403 usecs, repeat, (void *)func, (void *)arg, p - tims); in poll_start_utimer()
624 if(tims[tfd[i]].repeat) in poll_dispatch()
/freebsd-14.2/crypto/heimdal/doc/doxyout/hcrypto/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
33 background : url("tab_r.gif") no-repeat right top;
55 background : url("tab_l.gif") no-repeat left top;
/freebsd-14.2/crypto/heimdal/doc/doxyout/hdb/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
33 background : url("tab_r.gif") no-repeat right top;
55 background : url("tab_l.gif") no-repeat left top;
/freebsd-14.2/crypto/heimdal/doc/doxyout/hx509/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
33 background : url("tab_r.gif") no-repeat right top;
55 background : url("tab_l.gif") no-repeat left top;
/freebsd-14.2/crypto/heimdal/doc/doxyout/ntlm/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
33 background : url("tab_r.gif") no-repeat right top;
55 background : url("tab_l.gif") no-repeat left top;
/freebsd-14.2/crypto/heimdal/doc/doxyout/gssapi/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
33 background : url("tab_r.gif") no-repeat right top;
55 background : url("tab_l.gif") no-repeat left top;
/freebsd-14.2/crypto/heimdal/doc/doxyout/krb5/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
33 background : url("tab_r.gif") no-repeat right top;
55 background : url("tab_l.gif") no-repeat left top;
/freebsd-14.2/crypto/heimdal/doc/doxyout/wind/html/
H A Dtabs.css7 background : url("tab_b.gif") repeat-x bottom;
33 background : url("tab_r.gif") no-repeat right top;
55 background : url("tab_l.gif") no-repeat left top;
/freebsd-14.2/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_value_prf.c240 u_long repeat, bits; in bhnd_nvram_val_vprintf() local
257 repeat = 1; in bhnd_nvram_val_vprintf()
280 repeat = bhnd_nvram_val_nelem(value); in bhnd_nvram_val_vprintf()
283 repeat = va_arg(ap, size_t); in bhnd_nvram_val_vprintf()
289 repeat = strtoul(p, &endp, 10); in bhnd_nvram_val_vprintf()
520 for (u_long n = 0; n < repeat; n++) { in bhnd_nvram_val_vprintf()
/freebsd-14.2/usr.bin/vgrind/
H A Dvgrindefs.src50 read readln readonly record recursive rem rep repeat res\
62 program record repeat set then to type until var while with oct hex\
67 neq next not or otherwise repeat restart resume sr0 sr1 srd srr sl0 sl1\
81 glob goto history if logout nice nohup onintr repeat set\
102 repeat return static suspend then to until using while\
114 real repeat return select string subroutine substr until:
117 :bb=\d(begin|case|for|if|loop|record|repeat|while|with)\d:\
127 record repeat return set then to type\
/freebsd-14.2/stand/ficl/softwords/
H A Dficllocal.fr27 repeat
41 repeat
H A Djhlocal.fr65 repeat
83 repeat
96 repeat
/freebsd-14.2/stand/forth/
H A Dsupport.4th188 repeat
207 repeat
264 repeat
291 repeat
418 repeat
433 repeat
499 repeat
577 repeat
586 repeat
620 repeat
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/__ranges/
H A Dtake_view.h312 …noexcept(noexcept(views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:…
313 …-> decltype( views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:…
314 …{ return views::repeat(*__range.__value_, std::min<_Dist>(ranges::distance(__range), std:…
323 noexcept(noexcept(views::repeat(*__range.__value_, static_cast<_Dist>(__n))))
324 -> decltype( views::repeat(*__range.__value_, static_cast<_Dist>(__n)))
325 { return views::repeat(*__range.__value_, static_cast<_Dist>(__n)); }
/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DInterpreterProperties.td39 def RepeatPreviousCommand: Property<"repeat-previous-command", "Boolean">,
42 …Desc<"If true, LLDB will repeat the previous command if no command was passed to the interpreter. …
/freebsd-14.2/sbin/ddb/
H A Dddb_script.c65 repeat: in ddb_list_scripts()
80 goto repeat; in ddb_list_scripts()
/freebsd-14.2/usr.sbin/bsdconfig/console/include/
H A Dmessages.subr28 hline_choose_a_keyboard_repeat_rate="Choose a keyboard repeat rate"
69 msg_default_desc="Use default keyboard repeat rate"
84 msg_fast_desc="Fast keyboard repeat rate"
171 msg_normal_desc="\"Normal\" keyboard repeat rate"
184 msg_repeat_menu_text="This menu allows you to set the speed at which keys repeat\nwhen held down."
191 msg_set_repeat_rate="Set the rate at which keys repeat"
197 msg_slow_desc="Slow keyboard repeat rate"
246 msg_unknown_repeat_rate="Unknown repeat rate"

123456789