HomeSort by: relevance | last modified time | path
    Searched refs:iters (Results 1 - 25 of 38) sorted by relevancy

1 2

  /src/sys/arch/mips/mips/
mips_mcclock.c 55 unsigned mips_mcclock_to_mhz(unsigned iters);
83 int iters = 0; local
108 iters = (*tickpollfn)(mcclock_addr, clockmask);
121 mips_options.mips_cpu_mhz = mips_mcclock_to_mhz(iters);
124 printf("mcclock: iters %d computed MHz %d, instrs per usec=%d\n",
125 iters, mips_options.mips_cpu_mhz, cpuspeed);
127 return (iters);
143 int iters; local
162 iters = mips_mcclock_loop_with_clock(clockmask);
164 iters = mips_mcclock_loop_without_clock(clockmask)
    [all...]
mips_mcclock_loop.S 50 move s0, zero # iters = 0;
60 addu s0, 1 # iters++;
65 move v0, s0 # return iters
77 move s0, zero # iters = 0;
85 addu s0, 1 # iters++;
90 move v0, s0 # return iters
  /src/external/bsd/jemalloc.old/dist/test/stress/
hookbench.c 20 malloc_free_loop(int iters) {
21 for (int i = 0; i < iters; i++) {
28 test_hooked(int iters) {
43 malloc_free_loop(iters);
56 test_unhooked(int iters) {
59 malloc_free_loop(iters);
69 int iters = 10 * 1000 * 1000; local
70 malloc_printf("Benchmarking hooks with %d iterations:\n", iters);
71 test_hooked(iters);
72 test_unhooked(iters);
    [all...]
  /src/external/bsd/jemalloc/dist/test/stress/
hookbench.c 17 malloc_free_loop(int iters) {
18 for (int i = 0; i < iters; i++) {
25 test_hooked(int iters) {
40 malloc_free_loop(iters);
53 test_unhooked(int iters) {
56 malloc_free_loop(iters);
66 int iters = 10 * 1000 * 1000; local
67 malloc_printf("Benchmarking hooks with %d iterations:\n", iters);
68 test_hooked(iters);
69 test_unhooked(iters);
    [all...]
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark_api_internal.cc 7 size_t iters, int thread_id, internal::ThreadTimer* timer,
9 State st(iters, arg, thread_id, threads, timer, manager);
benchmark_runner.cc 108 void RunInThread(const BenchmarkInstance* b, size_t iters, int thread_id,
111 State st = b->Run(iters, thread_id, &timer, manager);
138 iters(has_explicit_iteration_count ? b.iterations : 1) {
184 size_t iters; // preserved between repetitions! member in class:benchmark::internal::__anon3652::BenchmarkRunner
190 size_t iters; member in struct:benchmark::internal::__anon3652::BenchmarkRunner::IterationResults
194 VLOG(2) << "Running " << b.name << " for " << iters << "\n";
201 pool[ti] = std::thread(&RunInThread, &b, iters, static_cast<int>(ti + 1),
207 RunInThread(&b, iters, 0, manager.get());
231 i.iters = iters;
    [all...]
benchmark_api_internal.h 37 State Run(size_t iters, int thread_id, internal::ThreadTimer* timer,
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.trace/
tspeed.c 44 int iters; variable
70 iters = init_iters;
81 if (iters > max_iters)
92 iters *= 2;
93 printf ("Doubled iterations to %d\n", iters);
122 for (i = 0; i < iters; ++i)
136 for (i = 0; i < iters; ++i)
155 total1, total2, idelta, iters);
166 nsdelta = (((unsigned long long) idelta) * 1000) / iters;
171 ((int) (((unsigned long long) total1) * 1000) / iters));
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.trace/
tspeed.c 44 int iters; variable
70 iters = init_iters;
81 if (iters > max_iters)
92 iters *= 2;
93 printf ("Doubled iterations to %d\n", iters);
122 for (i = 0; i < iters; ++i)
136 for (i = 0; i < iters; ++i)
155 total1, total2, idelta, iters);
166 nsdelta = (((unsigned long long) idelta) * 1000) / iters;
171 ((int) (((unsigned long long) total1) * 1000) / iters));
    [all...]
  /src/tests/kernel/
t_filedesc.c 74 int i, iters; local
87 if (atf_tc_has_config_var(tc, "iters"))
88 iters = atoi(atf_tc_get_config_var(tc, "iters"));
90 iters = DEFAULT_ITERATIONS;
93 for (i = 0; i < iters; i++) {
  /src/external/mpl/bind/dist/lib/isc/include/isc/
pause.h 41 #define isc_pause_n(iters) \
42 for (size_t __pause = 0; __pause < iters; __pause++) { \
  /src/external/bsd/jemalloc.old/dist/test/include/test/
bench.h 19 fmt_nsecs(uint64_t usec, uint64_t iters, char *buf) {
23 uint64_t nsecs_per_iter1000 = nsec1000 / iters;
  /src/external/mpl/bind/dist/bin/tools/
nsec3hash.c 73 nsec3printer(unsigned int algo, unsigned int flags, unsigned int iters,
144 nsec3hash_print(unsigned int algo, unsigned int flags, unsigned int iters,
150 saltstr, algo, iters);
154 nsec3hash_rdata_print(unsigned int algo, unsigned int flags, unsigned int iters,
157 fprintf(stdout, "%s NSEC3 %u %u %u %s %s\n", domain, algo, flags, iters,
  /src/external/mit/libuv/dist/test/
test-iouring-pollhup.c 38 static int iters; variable
68 if (++iters == 1) {
  /src/external/bsd/jemalloc/dist/test/include/test/
bench.h 19 fmt_nsecs(uint64_t usec, uint64_t iters, char *buf) {
23 uint64_t nsecs_per_iter1000 = nsec1000 / iters;
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
benchmark.cc 162 size_t iters, int thread_id,
165 State st(iters, b->arg, thread_id, b->threads, &timer, manager);
190 size_t iters = has_explicit_iteration_count ? b.iterations : 1; local
203 VLOG(2) << "Running " << b.name << " for " << iters << "\n";
207 pool[ti] = std::thread(&RunInThread, &b, iters,
210 RunInThread(&b, iters, 0, manager.get());
242 || iters >= kMaxIterations // No chance to try again, we hit the limit.
268 double next_iters = std::max(multiplier * iters, iters + 1.0);
272 VLOG(3) << "Next iters: " << next_iters << ", " << multiplier << "\n"
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/bpf/
bpf.cc 1238 unsigned iters, unsigned remainder)
1243 for (unsigned int i = 0; i < iters; i++)
1326 unsigned iters = size_bytes >> ceil_log2 (align); local
1345 emit_move_loop (src, dst, mode, size_bytes, -inc, iters, remainder);
1352 emit_move_loop (src, dst, mode, 0, inc, iters, remainder);
1410 unsigned iters = size_bytes >> ceil_log2 (align); local
1415 for (unsigned int i = 0; i < iters; i++)
  /src/external/gpl3/gcc/dist/gcc/fortran/
frontend-passes.cc 1205 gfc_iterator *iters[GFC_MAX_DIMENSIONS]; local
1278 if (iters[j] && iters[j]->var->symtree == start->symtree)
1281 iters[i] = NULL;
1285 iters[i] = stack_top->iter;
1291 iters[i] = NULL;
1310 iters[i] = stack_top->iter;
1326 if (iters[i])
1328 gfc_expr *var = iters[i]->var;
1331 if (iters[j
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
frontend-passes.cc 1205 gfc_iterator *iters[GFC_MAX_DIMENSIONS]; local
1278 if (iters[j] && iters[j]->var->symtree == start->symtree)
1281 iters[i] = NULL;
1285 iters[i] = stack_top->iter;
1291 iters[i] = NULL;
1310 iters[i] = stack_top->iter;
1326 if (iters[i])
1328 gfc_expr *var = iters[i]->var;
1331 if (iters[j
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_disk_entry_from_file.c 855 int count, do_fiemap, iters; local
892 for (iters = 0; ; ++iters) {
903 if (iters == 0) {
  /src/external/gpl3/gcc/dist/gcc/
tree-vect-loop-manip.cc 1091 /* Build the constant to compare the remaining iters against,
2509 tree iters, iters_name;
2522 iters = build_int_cst (niters_type, npeel);
2544 iters = fold_build2 (MINUS_EXPR, type, misalign_in_elems,
2547 iters = fold_build2 (MINUS_EXPR, type, align_in_elems_tree,
2549 iters = fold_build2 (BIT_AND_EXPR, type, iters, align_in_elems_minus_1);
2550 iters = fold_convert (niters_type, iters);
2560 "niters for prolog loop: %T\n", iters);
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
tree-vect-loop-manip.cc 1720 tree iters, iters_name;
1733 iters = build_int_cst (niters_type, npeel);
1755 iters = fold_build2 (MINUS_EXPR, type, misalign_in_elems,
1758 iters = fold_build2 (MINUS_EXPR, type, align_in_elems_tree,
1760 iters = fold_build2 (BIT_AND_EXPR, type, iters, align_in_elems_minus_1);
1761 iters = fold_convert (niters_type, iters);
1771 "niters for prolog loop: %T\n", iters);
1774 iters_name = force_gimple_operand (iters, &new_stmts, false, var)
    [all...]
  /src/external/bsd/zstd/dist/lib/decompress/
huf_decompress.c 757 /* We can safely run iters iterations before running bounds checks */
758 size_t const iters = MIN(oiters, iiters); local
759 size_t const symbols = iters * 5;
763 * iters iterations, which only happens when op[3] == olimit.
1565 * iters loops before running out of input.
1567 size_t iters = (size_t)(ip[0] - ilowest) / 7; local
1574 iters = MIN(iters, oiters);
1578 * op[3] crosses olimit, we know we haven't executed iters
1579 * iterations yet. This saves us maintaining an iters counter
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i810/
i810_dma.c 250 int iters = 0; local
266 iters++;
276 return iters;
  /src/crypto/external/bsd/openssh/dist/
umac.c 577 UWORD iters = num_bytes / bpw; local
583 } while (--iters);
592 } while (--iters);

Completed in 69 milliseconds

1 2