HomeSort by: relevance | last modified time | path
    Searched defs:counters (Results 1 - 25 of 32) sorted by relevancy

1 2

  /src/sys/net/
net_stats.c 45 u_int ctx_ncounters; /* number of counters in array */
66 * that are gathered per-CPU. Statistics counters are assumed
74 uint64_t *counters; local
80 counters = kmem_zalloc(countersize, KM_SLEEP);
81 ctx.ctx_counters = counters;
88 node.sysctl_data = counters;
92 kmem_free(counters, countersize);
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
benchmark_api_internal.h 29 UserCounters counters; member in struct:benchmark::internal::BenchmarkInstance
thread_manager.h 49 UserCounters counters; member in struct:benchmark::internal::ThreadManager::Result
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
benchmark_api_internal.h 27 UserCounters counters; member in struct:benchmark::internal::Benchmark::Instance
thread_manager.h 51 UserCounters counters; member in struct:benchmark::internal::ThreadManager::Result
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_stoptheworld_test.cc 99 volatile int counters[kThreadCount]; member in struct:__sanitizer::AdvancedCallbackArgument
132 __sync_fetch_and_add(&callback_argument->counters[this_thread_index], 1);
150 counters_at_init[j] = __sync_fetch_and_add(&callback_argument->counters[j],
155 if (__sync_fetch_and_add(&callback_argument->counters[j], 0) !=
  /src/external/gpl3/gcc.old/dist/gcc/
value-prof.h 51 gcov_type *counters; /* Pointer to first counter. */
55 unsigned n_counters; /* Number of required counters. */
50 gcov_type *counters; \/* Pointer to first counter. *\/ member in struct:histogram_value_t::__anon11470
profile.cc 72 /* Map from BBs/edges to gcov counters. */
841 int counters = hist->hvalue.counters[1];
842 for (int i = 0; i < counters - 1; i++)
851 for (int j = 0; j < counters - 1 - i; j++)
853 gcov_type *p = &hist->hvalue.counters[2 * j + 2];
919 /* TOP N counter uses variable number of counters. */
929 hist->hvalue.counters = XNEWVEC (gcov_type, hist->n_counters);
932 hist->hvalue.counters[j] = act_count[t][j];
934 hist->hvalue.counters[j] = 0
840 int counters = hist->hvalue.counters[1]; local
    [all...]
value-prof.cc 73 collects the values to profile in a vec, and adds the number of counters
202 free (hist->hvalue.counters);
230 if (hist->hvalue.counters)
242 (int64_t) hist->hvalue.counters[i]);
247 (int64_t) hist->hvalue.counters[i]);
252 if (hist->hvalue.counters)
255 (int64_t) hist->hvalue.counters[1],
256 (int64_t) hist->hvalue.counters[0]);
261 if (hist->hvalue.counters)
266 if (hist->hvalue.counters)
765 unsigned counters = hist->hvalue.counters[1]; local
    [all...]
  /src/sys/dev/ic/
intersil7170reg.h 62 struct intersil_dt counters; member in struct:intersil7170
  /src/sys/external/mit/xen-include-public/dist/xen/include/public/arch-x86/
pmu.h 34 uint32_t counters; member in struct:xen_pmu_amd_ctxt
  /src/external/gpl3/gcc.old/dist/gcc/config/rs6000/
rs6000-pcrel-opt.cc 131 /* Various counters. */
140 } counters; variable in typeref:struct:__anon10881
354 counters.failed_loads++;
364 counters.loads++;
366 counters.adjacent_loads++;
508 counters.failed_stores++;
518 counters.stores++;
520 counters.adjacent_stores++;
616 counters.extern_addrs++;
804 memset (&counters, 0, sizeof (counters))
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/
libgcov-driver.c 244 /* This function merges counters in GI_PTR to an existing gcda file.
343 /* Merging with all zero counters does not make sense. */
415 /* Store all TOP N counters where each has a dynamic length. */
425 unsigned counters = n_counts / GCOV_TOPN_MEM_COUNTERS; local
428 /* It can happen in a multi-threaded environment that number of counters is
435 if (list_sizes == NULL || counters > list_size_length)
437 list_size_length = MAX (LIST_SIZE_MIN_LENGTH, 2 * counters);
452 for (unsigned i = 0; i < counters; i++)
465 unsigned disk_size = GCOV_TOPN_DISK_COUNTERS * counters + 2 * pair_total;
469 for (unsigned i = 0; i < counters; i++
    [all...]
libgcov.h 201 /* Information about counters for a single function. */
204 gcov_unsigned_t num; /* number of counters. */
209 idiom. The number of counters is determined from the merge pointer
220 struct gcov_ctr_info ctrs[1]; /* instrumented counters */
223 /* Type of function used to merge counters. */
273 /* Pointer to counters. */
274 gcov_type *counters; member in struct:indirect_call_tuple
292 /* Function to reset all counters to 0. Both externally visible (and
305 /* The merge function that just sums the counters. */
314 /* The merge function that just ors the counters together. *
    [all...]
  /src/external/bsd/openldap/dist/tests/progs/
slapd-watcher.c 97 typedef struct counters { struct
101 } counters; typedef in typeref:struct:counters
124 counters c_prev;
125 counters c_curr;
349 counters *c )
  /src/sys/dev/tprof/
tprof.c 353 * Unconfigured counters are ignored.
438 /* All counters have stopped? */
582 /* update counters bitmasks */
591 /* counters with less than 64bits also require overflow handling */
607 uint64_t *counters = arg2; local
616 counters[c] = counters_offset[c] +
620 counters[c] = 0;
  /src/usr.sbin/tprof/
tprof_top.c 119 static uint64_t *counters; /* counters[2][ncpu][nevent] */ variable
591 size_t sz = 2 * ncpu * nevent * sizeof(*counters);
592 counters = ecalloc(1, sz);
603 cn[0] = counters;
604 cn[1] = counters + ncpu * nevent;
937 "counters can be used.", ncounters);
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/include/benchmark/
benchmark.h 357 // This class is used for user-defined counters.
384 // This is the container for the user-defined counters.
624 // Container for user-defined counters.
625 UserCounters counters; member in class:benchmark::State
1286 counters() {}
1329 UserCounters counters;
  /src/external/bsd/openldap/dist/servers/lloadd/
monitor.c 376 lload_counters_t *counters = (lload_counters_t *)priv; local
380 UI2BV( &a->a_vals[0], counters->lc_ops_received );
384 UI2BV( &a->a_vals[0], counters->lc_ops_forwarded );
388 UI2BV( &a->a_vals[0], counters->lc_ops_rejected );
392 UI2BV( &a->a_vals[0], counters->lc_ops_completed );
396 UI2BV( &a->a_vals[0], counters->lc_ops_failed );
523 cb->mc_private = &lload_stats.counters[i];
1171 tmp_stats.counters[i].lc_ops_completed +=
1173 tmp_stats.counters[i].lc_ops_failed +=
1184 lload_stats.counters[i].lc_ops_completed
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_win.cc 760 PROCESS_MEMORY_COUNTERS counters; local
761 if (!GetProcessMemoryInfo(GetCurrentProcess(), &counters, sizeof(counters)))
763 return counters.WorkingSetSize;
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/include/benchmark/
benchmark.h 349 // This class is used for user-defined counters.
403 // This is the container for the user-defined counters.
557 counters["bytes_per_second"] =
563 if (counters.find("bytes_per_second") != counters.end())
564 return static_cast<int64_t>(counters.at("bytes_per_second"));
587 counters["items_per_second"] =
593 if (counters.find("items_per_second") != counters.end())
594 return static_cast<int64_t>(counters.at("items_per_second"))
663 UserCounters counters; member in class:benchmark::internal::State
1382 UserCounters counters; member in struct:benchmark::BenchmarkReporter::Run
    [all...]
  /src/external/bsd/wpa/dist/src/radius/
radius_server.c 44 * struct radius_server_counters - RADIUS server statistics counters
112 struct radius_server_counters counters; member in struct:radius_client
174 * counters - Statistics counters for server operations
176 * These counters are the sum over all clients.
178 struct radius_server_counters counters; member in struct:radius_server_data
1297 data->counters.access_rejects++;
1298 client->counters.access_rejects++;
1409 data->counters.dup_access_requests++;
1410 client->counters.dup_access_requests++
    [all...]
  /src/external/gpl3/binutils/dist/libctf/
ctf-dedup.c 1535 ctf_dedup_type_counter_t counters = { fp, inputs, 0 }; local
1537 ctf_dynhash_iter_find (name_counts, ctf_dedup_count_types, &counters);
1543 if (counters.num_non_forwards > 1)
  /src/external/gpl3/binutils.old/dist/libctf/
ctf-dedup.c 1535 ctf_dedup_type_counter_t counters = { fp, inputs, 0 }; local
1537 ctf_dynhash_iter_find (name_counts, ctf_dedup_count_types, &counters);
1543 if (counters.num_non_forwards > 1)
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtOpenMP.h 98 /// logical iteration counters used by the OpenMPIRBuilder which is
782 /// Counters Loop counters.
783 SmallVector<Expr *, 4> Counters;
784 /// PrivateCounters Loop counters.
786 /// Expressions for loop counters inits for CodeGen.
788 /// Expressions for loop counters update for CodeGen.
792 /// List of counters required for the generation of the non-rectangular
817 /// counters/finals/updates/dependent_counters/dependent_inits/finals_conditions
839 Counters.resize(Size)
1379 ArrayRef<Expr *> counters() { return getCounters(); } function in class:clang::OMPLoopDirective
1381 ArrayRef<Expr *> counters() const { function in class:clang::OMPLoopDirective
    [all...]

Completed in 92 milliseconds

1 2