Home
last modified time | relevance | path

Searched full:runs (Results 1 – 25 of 1438) sorted by relevance

12345678910>>...58

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DLinePrinter.cpp145 std::vector<Run> Runs; in computeBlockRuns() local
147 return Runs; in computeBlockRuns()
153 Runs.emplace_back(CurrentBlock); in computeBlockRuns()
155 Run *CurrentRun = &Runs.back(); in computeBlockRuns()
158 Runs.emplace_back(NextBlock); in computeBlockRuns()
159 CurrentRun = &Runs.back(); in computeBlockRuns()
168 return Runs; in computeBlockRuns()
171 static std::pair<Run, uint64_t> findRun(uint64_t Offset, ArrayRef<Run> Runs) { in findRun() argument
172 for (const auto &R : Runs) { in findRun()
223 auto Runs = computeBlockRuns(File.getBlockSize(), Stream); in formatMsfStreamData() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DError.cpp57 // The following call runs the file cleanup handlers. in PrintFatalNote()
64 // The following call runs the file cleanup handlers. in PrintFatalNote()
73 // The following call runs the file cleanup handlers. in PrintFatalNote()
82 // The following call runs the file cleanup handlers. in PrintFatalNote()
127 // The following call runs the file cleanup handlers. in PrintFatalError()
134 // The following call runs the file cleanup handlers. in PrintFatalError()
143 // The following call runs the file cleanup handlers. in PrintFatalError()
152 // The following call runs the file cleanup handlers. in PrintFatalError()
/freebsd/tools/tools/sortbench/
H A Dsort_bench.c156 run_bench(enum sort s, enum test t, int runs, int elts) in run_bench() argument
158 for (int i = 0; i < runs; i++) { in run_bench()
215 printf("\t%s: [alg] [test] [runs] [elt_power]\n", progname); in usage()
229 printf("Run the algorithm [runs] times with 2^[elt_power] elements\n"); in usage()
234 * Runs a sorting algorithm with a provided data configuration according to
241 int runs, elts; in main() local
253 runs = atoi(argv[3]); in main()
256 run_bench(s, t, runs, elts); in main()
/freebsd/sys/contrib/openzfs/.github/workflows/
H A Dlabels.yml12 runs-on: ubuntu-latest
22 runs-on: ubuntu-latest
32 runs-on: ubuntu-latest
42 runs-on: ubuntu-latest
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DSarif.cpp251 assert(!Runs.empty() && "There are no runs associated with the document!"); in getCurrentTool()
253 return *Runs.back().getAsObject()->get("tool")->getAsObject(); in getCurrentTool()
270 assert(!Runs.empty() && "There are no runs associated with the document!"); in endRun()
364 Runs.emplace_back(std::move(TheRun)); in createRun()
375 assert(!Runs.empty() && "There are no runs associated with the document!"); in getCurrentRun()
376 return *Runs.back().getAsObject(); in getCurrentRun()
421 if (!Runs.empty()) in createDocument()
422 Doc["runs"] = json::Array(Runs); in createDocument()
/freebsd/contrib/tcp_wrappers/
H A Dmisc.c88 int runs = 0; in dot_quad_addr() local
91 /* Count the number of runs of non-dot characters. */ in dot_quad_addr()
98 runs++; in dot_quad_addr()
102 return (runs == 4 ? inet_addr(str) : INADDR_NONE); in dot_quad_addr()
/freebsd/contrib/googletest/.github/workflows/
H A Dgtest-ci.yml12 runs-on: ubuntu-latest
23 runs-on: macos-latest
35 runs-on: windows-latest
/freebsd/contrib/unbound/doc/
H A DREADME.tests3 For a quick test that runs unit tests and state machine tests, use
29 do-tests.sh : runs all the tests in the testdata directory.
30 testbed.sh : compiles on a set of (user specific) hosts and runs do-tests.
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/perf/regression/
H A Dsequential_reads_arc_cached_clone.ksh20 # Trigger fio runs using the sequential_reads job file. The number of runs and
25 # for all fio runs. This test will exercise cached read performance from
27 # a snapshot and clone are created. All the performance runs are then
H A Drandom_readwrite_fixed.ksh19 # Trigger fio runs using the random_readwrite_fixed job file. The number of runs and
24 # and used for all fio runs. The ARC is cleared with `zinject -a` prior to
H A Dsequential_reads_arc_cached.ksh20 # Trigger fio runs using the sequential_reads job file. The number of runs and
25 # for all fio runs. The ARC is not cleared to ensure that all data is cached.
H A Dsequential_reads_dbuf_cached.ksh20 # Trigger fio runs using the sequential_reads job file. The number of runs and
25 # for all fio runs. The ARC is not cleared to ensure that all data is cached.
H A Drandom_reads.ksh20 # Trigger fio runs using the random_reads job file. The number of runs and
25 # for all fio runs. The ARC is cleared with `zinject -a` prior to each run
H A Drandom_readwrite.ksh20 # Trigger fio runs using the random_readwrite job file. The number of runs and
25 # and used for all fio runs. The ARC is cleared with `zinject -a` prior to
H A Dsequential_reads.ksh20 # Trigger fio runs using the sequential_reads job file. The number of runs and
25 # for all fio runs. The ARC is cleared with `zinject -a` prior to each run
/freebsd/tests/sys/cddl/zfs/tests/hotspare/
H A Dhotspare_import_001_pos.ksh38 # should runs successfully, and the data should keep integrity
48 # 3. Verify the export/import runs successfully,
134 log_assert "'zpool export/import <pool>' should runs successfully regardless the hotspare is only i…
162 log_pass "'zpool export/import <pool>' should runs successfully regardless the hotspare is only in …
H A Dhotspare_scrub_001_pos.ksh45 # 4. Verify the scrub runs successfully.
98 log_assert "'zpool scrub <pool>' should runs successfully regardless " \
114 log_pass "'zpool scrub <pool>' runs successfully regardless " \
/freebsd/sys/kern/
H A Dkern_clocksource.c161 int done, runs; in handleevents() local
176 runs = 0; in handleevents()
179 runs++; in handleevents()
181 if (runs) { in handleevents()
185 hardclock(runs, usermode); in handleevents()
189 runs = 0; in handleevents()
192 runs++; in handleevents()
194 if (runs && fake < 2) { in handleevents()
195 statclock(runs, usermode); in handleevents()
199 runs = 0; in handleevents()
[all …]
/freebsd/contrib/googletest/googletest/test/
H A Dgoogletest-filter-unittest.py193 """Runs the test program and returns its output."""
201 """Runs the test program and returns its exit code and a list of tests run."""
220 """Runs the test program and returns tests that printed a disabled banner."""
231 """Runs the given function and arguments in a modified environment."""
242 """Runs a test program shard and returns exit code and a list of tests run."""
287 """Checks that the binary runs correct set of tests for a given filter."""
324 """Checks that binary runs correct tests for the given filter and shard.
326 Runs all shards of googletest-filter-unittest_ with the given filter, and
362 """Checks that the binary runs correct set of tests for the given filter.
364 Runs googletest-filter-unittest_ with the given filter, and enables
H A Dgtest_environment_test.cc97 // Runs the tests. Return true if and only if successful.
119 // Verifies that RUN_ALL_TESTS() runs the tests when the global
133 // Verifies that RUN_ALL_TESTS() runs the tests when the global
147 // Verifies that RUN_ALL_TESTS() runs no test when the global set-up
/freebsd/contrib/ntp/sntp/libevent/cmake/
H A DCodeCoverage.cmake47 # which runs your test executable and produces a lcov code coverage report:
51 # test_driver # Name of the test driver executable that runs the tests.
89 # Param _testrunner The name of the target which runs the tests.
134 # Param _testrunner The name of the target which runs the tests
/freebsd/contrib/libevent/cmake/
H A DCodeCoverage.cmake47 # which runs your test executable and produces a lcov code coverage report:
51 # test_driver # Name of the test driver executable that runs the tests.
89 # Param _testrunner The name of the target which runs the tests.
134 # Param _testrunner The name of the target which runs the tests
/freebsd/contrib/kyua/model/
H A Dtest_program_test.cpp116 /// Runs a ctor_and_getters test.
169 /// Runs a find_ok test.
202 /// Runs a find_missing test.
234 /// Runs a metadata_inheritance test.
307 /// Runs a operators_eq_and_ne__copy test.
338 /// Runs a operators_eq_and_ne__not_copy test.
478 /// Runs a operator_lt test.
529 /// Runs a output__no_test_cases test.
571 /// Runs a output__some_test_cases test.
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTOBackend.h36 /// Runs middle-end LTO optimizations on \p Mod.
42 /// Runs a regular LTO backend. The regular LTO backend can also act as the
48 /// Runs a ThinLTO backend.
/freebsd/crypto/openssl/test/
H A DREADME-external.md11 This python test suite runs cryptographic tests with a local OpenSSL build as
37 Much like the PYCA/Cryptography test suite, this builds and runs the krb5
71 Much like the PYCA/Cryptography test suite, this builds and runs the GOST engine

12345678910>>...58