| /src/external/mpl/bind/dist/bin/tests/system/statschannel/ |
| server-xml.pl | 20 my $counters = $ref->{server}->{counters}; 21 foreach $group (@$counters) {
|
| zones-xml.pl | 25 my $counters = $ref->{views}->{view}->{_default}->{zones}->{zone}->{$zone}->{counters}; 27 foreach $group (@$counters) {
|
| /src/external/gpl3/gcc/dist/libgcc/ |
| libgcov-profiler.c | 31 corresponding counter in COUNTERS. If the VALUE is above or below 32 the interval, COUNTERS[STEPS] or COUNTERS[STEPS + 1] is increased 36 __gcov_interval_profiler (gcov_type *counters, gcov_type value, 41 counters[steps + 1]++; 43 counters[steps]++; 45 counters[delta]++; 51 corresponding counter in COUNTERS. If the VALUE is above or below 52 the interval, COUNTERS[STEPS] or COUNTERS[STEPS + 1] is increase [all...] |
| libgcov-merge.c | 32 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)), 37 void __gcov_merge_ior (gcov_type *counters __attribute__ ((unused)), 42 void __gcov_merge_topn (gcov_type *counters __attribute__ ((unused)), 49 /* The profile merging function that just adds the counters. It is given 50 an array COUNTERS of N_COUNTERS old counters and it reads the same number 51 of counters from the gcov file. */ 53 __gcov_merge_add (gcov_type *counters, unsigned n_counters) 55 for (; n_counters; counters++, n_counters--) 56 *counters += gcov_get_counter () [all...] |
| /src/external/gpl3/gcc.old/dist/libgcc/ |
| libgcov-profiler.c | 31 corresponding counter in COUNTERS. If the VALUE is above or below 32 the interval, COUNTERS[STEPS] or COUNTERS[STEPS + 1] is increased 36 __gcov_interval_profiler (gcov_type *counters, gcov_type value, 41 counters[steps + 1]++; 43 counters[steps]++; 45 counters[delta]++; 51 corresponding counter in COUNTERS. If the VALUE is above or below 52 the interval, COUNTERS[STEPS] or COUNTERS[STEPS + 1] is increase [all...] |
| libgcov-merge.c | 32 void __gcov_merge_add (gcov_type *counters __attribute__ ((unused)), 37 void __gcov_merge_topn (gcov_type *counters __attribute__ ((unused)), 44 /* The profile merging function that just adds the counters. It is given 45 an array COUNTERS of N_COUNTERS old counters and it reads the same number 46 of counters from the gcov file. */ 48 __gcov_merge_add (gcov_type *counters, unsigned n_counters) 50 for (; n_counters; counters++, n_counters--) 51 *counters += gcov_get_counter (); 56 /* The profile merging function that just adds the counters. It is give [all...] |
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/ |
| csv_reporter.cc | 49 // save the names of all the user counters 51 for (const auto& cnt : run.counters) { 71 // check that all the current counters are saved in the name set 73 for (const auto& cnt : run.counters) { 77 << "All counters must be present in each run. " 124 if (run.counters.find("bytes_per_second") != run.counters.end()) { 125 Out << run.counters.at("bytes_per_second"); 128 if (run.counters.find("items_per_second") != run.counters.end()) [all...] |
| console_reporter.cc | 58 if(!run.counters.empty()) { 60 for(auto const& c : run.counters) { 80 (!internal::SameNames(run.counters, prev_counters_)); 83 prev_counters_ = run.counters; 156 for (auto& c : result.counters) {
|
| /src/external/mpl/bind/dist/lib/ns/ |
| stats.c | 33 isc_stats_t *counters; member in struct:ns_stats 57 isc_stats_detach(&stats->counters); 68 stats->counters = NULL; 72 isc_stats_create(mctx, &stats->counters, ncounters); 87 return isc_stats_increment(stats->counters, counter); 94 isc_stats_decrement(stats->counters, counter); 101 return stats->counters; 109 isc_stats_update_if_greater(stats->counters, counter, value); 116 return isc_stats_get_counter(stats->counters, counter);
|
| /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/llvm/utils/benchmark/test/ |
| user_counters_test.cc | 18 // ------------------------- Simple Counters Output ------------------------ // 24 state.counters["foo"] = 1; 25 state.counters["bar"] = 2 * (double)state.iterations(); 49 // --------------------- Counters+Items+Bytes/s Output --------------------- // 56 state.counters["foo"] = 1; 57 state.counters["bar"] = ++num_calls1; 91 // ------------------------- Rate Counters Output -------------------------- // 98 state.counters["foo"] = bm::Counter{1, bm::Counter::kIsRate}; 99 state.counters["bar"] = bm::Counter{2, bm::Counter::kIsRate}; 123 // ------------------------- Thread Counters Output ------------------------ / [all...] |
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/test/ |
| user_counters_test.cc | 22 // ------------------------- Simple Counters Output ------------------------ // 28 state.counters["foo"] = 1; 29 state.counters["bar"] = 2 * (double)state.iterations(); 56 // --------------------- Counters+Items+Bytes/s Output --------------------- // 65 state.counters["foo"] = 1; 66 state.counters["bar"] = ++num_calls1; 103 // ------------------------- Rate Counters Output -------------------------- // 110 state.counters["foo"] = bm::Counter{1, bm::Counter::kIsRate}; 111 state.counters["bar"] = bm::Counter{2, bm::Counter::kIsRate}; 139 // ------------------------- Thread Counters Output ------------------------ / [all...] |
| /src/external/mpl/bind/dist/lib/isc/ |
| stats.c | 47 isc_atomic_statscounter_t *counters; member in struct:isc_stats 70 isc_mem_cput(stats->mctx, stats->counters, stats->ncounters, 90 stats->counters = isc_mem_get(mctx, counters_alloc_size); 93 atomic_init(&stats->counters[i], 0); 107 return atomic_fetch_add_relaxed(&stats->counters[counter], 1); 115 REQUIRE(atomic_fetch_sub_release(&stats->counters[counter], 1) > 0); 117 atomic_fetch_sub_release(&stats->counters[counter], 1); 130 atomic_load_acquire(&stats->counters[i]); 143 atomic_store_release(&stats->counters[counter], val); 153 atomic_load_acquire(&stats->counters[counter]) [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| stats.c | 45 isc__atomic_statcounter_t *counters; member in struct:isc_stats 57 stats->counters = isc_mem_get(mctx, counters_alloc_size); 60 atomic_init(&stats->counters[i], 0); 91 isc_mem_put(stats->mctx, stats->counters, 117 atomic_fetch_add_relaxed(&stats->counters[counter], 1); 124 atomic_fetch_sub_release(&stats->counters[counter], 1); 135 uint32_t counter = atomic_load_acquire(&stats->counters[i]); 148 atomic_store_release(&stats->counters[counter], val); 158 atomic_load_acquire(&stats->counters[counter]); 164 &stats->counters[counter], &curr_value, value)) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| complaints.c | 31 /* Map format strings to counters. */ 33 static std::unordered_map<const char *, int> counters; variable 56 if (++counters[fmt] > stop_whining) 80 counters.clear (); 153 scoped_restore reset_counters = make_scoped_restore (&counters, tmp); 164 SELF_CHECK (counters[STR] == CNT); \ 173 SELF_CHECK (counters[STR] == CNT); \
|
| /src/external/gpl3/gdb/dist/gdb/ |
| complaints.c | 31 /* Map format strings to counters. */ 33 static gdb::unordered_map<const char *, int> counters; variable 56 if (++counters[fmt] > stop_whining) 80 counters.clear (); 153 scoped_restore reset_counters = make_scoped_restore (&counters, tmp); 164 SELF_CHECK (counters[STR] == CNT); \ 173 SELF_CHECK (counters[STR] == CNT); \
|
| /src/external/mpl/bind/dist/lib/dns/ |
| stats.c | 48 * It doesn't make sense to have 2^16 counters for all possible types since 49 * most of them won't be used. We have counters for the first 256 types. 78 * treat S = 0b11 as a special case to deal with NXDOMAIN counters. 104 * Per key we maintain 3 counters. The first is actually no counter but 117 isc_stats_t *counters; member in struct:dns_stats 161 isc_stats_detach(&stats->counters); 174 stats->counters = NULL; 177 isc_stats_create(mctx, &stats->counters, ncounters); 233 * Create two counters per key, one is the key id, the other two are 234 * the actual counters for creating and refreshing signatures [all...] |
| /src/external/mpl/dhcp/bind/dist/lib/dns/ |
| stats.c | 48 * It doesn't make sense to have 2^16 counters for all possible types since 49 * most of them won't be used. We have counters for the first 256 types. 78 * treat S = 0b11 as a special case to deal with NXDOMAIN counters. 104 * Per key we maintain 3 counters. The first is actually no counter but 119 isc_stats_t *counters; member in struct:dns_stats 163 isc_stats_detach(&stats->counters); 179 stats->counters = NULL; 182 result = isc_stats_create(mctx, &stats->counters, ncounters); 248 * Create two counters per key, one is the key id, the other two are 249 * the actual counters for creating and refreshing signatures [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| gcov-dump.cc | 77 {0, "COUNTERS", tag_counters}, 484 vector<gcov_type> counters; 486 counters.push_back (has_zeros ? 0 : gcov_read_counter ()); 488 /* Make stable sort for TOP N counters. */ 494 while (start < counters.size ()) 496 unsigned n = counters[start + 1]; 502 gcov_type key1 = counters[start + 2 * i]; 503 gcov_type value1 = counters[start + 2 * i + 1]; 504 gcov_type key2 = counters[start + 2 * j]; 505 gcov_type value2 = counters[start + 2 * j + 1] [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) 753 unsigned counters = hist->hvalue.counters[1]; local [all...] |
| /src/external/gpl3/gcc/dist/gcc/config/rs6000/ |
| rs6000-pcrel-opt.cc | 131 /* Various counters. */ 140 } counters; variable in typeref:struct:__anon13419 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/gcc/config/rs6000/ |
| rs6000-pcrel-opt.cc | 131 /* Various counters. */ 140 } counters; variable in typeref:struct:__anon15847 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/apache2/llvm/dist/llvm/utils/benchmark/src/ |
| csv_reporter.cc | 49 // save the names of all the user counters 51 for (const auto& cnt : run.counters) { 68 // check that all the current counters are saved in the name set 70 for (const auto& cnt : run.counters) { 72 << "All counters must be present in each run. " 137 // Print user counters 139 auto it = run.counters.find(ucn); 140 if(it == run.counters.end()) {
|
| console_reporter.cc | 58 if(!run.counters.empty()) { 60 for(auto const& c : run.counters) { 80 (!internal::SameNames(run.counters, prev_counters_)); 83 prev_counters_ = run.counters; 150 for (auto& c : result.counters) {
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| 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...] |