Searched refs:counters (Results 1 - 25 of 223) sorted by relevance

123456789

/external/v8/tools/ignition/
H A Dlinux_perf_report_test.py81 counters = ipr.calculate_samples_count_per_callchain([
87 self.assertItemsEqual(counters, [
94 counters = ipr.calculate_samples_count_per_callchain([
99 self.assertItemsEqual(counters, [
105 counters = ipr.calculate_samples_count_per_handler([
111 self.assertItemsEqual(counters, [
117 counters = ipr.calculate_samples_count_per_handler([
122 self.assertItemsEqual(counters, [("bar", 3)])
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DCountersTable.java34 * This is a table of counters, keyed by ElemNumber objects, each
50 * Get the list of counters that corresponds to
55 * @return the list of counters that corresponds to
61 Vector counters = (Vector) this.get(numberElem);
63 return (null == counters) ? putElemNumber(numberElem) : counters;
78 Vector counters = new Vector();
80 this.put(numberElem, counters);
82 return counters;
86 * Place to collect new counters
[all...]
/external/valgrind/cachegrind/
H A Dcg_branchpred.c68 counters. Given the address of the branch instruction, the array
91 static UChar counters[N_COUNTERS]; /* Counter array; presumably auto-zeroed */ variable
112 predicted_taken = counters[ indx ] >= 2;
122 if (counters[indx] < 3)
123 counters[indx]++;
125 if (counters[indx] > 0)
126 counters[indx]--;
129 tl_assert(counters[indx] <= 3);
/external/libxml2/xstc/
H A Dxstc.py471 self.counters = self.createCounters()
478 counters = {self.CNT_TOTAL:0, self.CNT_RAN:0, self.CNT_SUCCEEDED:0,
483 return counters
495 def updateCounters(self, test, counters):
497 counters[self.CNT_MEMLEAK] += 1
499 counters[self.CNT_SUCCEEDED] +=1
501 counters[self.CNT_FAILED] += 1
503 counters[self.CNT_BAD] += 1
505 counters[self.CNT_UNIMPLEMENTED] += 1
507 counters[sel
[all...]
/external/netperf/src/
H A Dnetcpu_kstat10.c57 print_cpu_time_counters(char *name, int instance, cpu_time_counters_t *counters) argument
66 counters[instance].idle,
67 counters[instance].user,
68 counters[instance].kernel,
69 counters[instance].interrupt);
153 get_cpu_counters(int cpu_num, cpu_time_counters_t *counters) argument
177 counters[cpu_num].idle = knp->value.ui64;
181 counters[cpu_num].user = knp->value.ui64;
185 counters[cpu_num].kernel = knp->value.ui64;
218 "get_cpu_counters could not find one or more of the expected counters!\
247 get_interrupt_counters(int cpu_num, cpu_time_counters_t *counters) argument
321 get_cpu_time_counters(cpu_time_counters_t *counters) argument
[all...]
/external/swiftshader/third_party/LLVM/runtime/libprofile/
H A DGCDAProfiling.c130 /* Given an array of pointers to counters (counters), increment the n-th one,
134 uint64_t **counters) {
141 counter = counters[pred];
149 printf("llvmgcda: increment_indirect_counter counters=%x, pred=%u\n",
168 void llvm_gcda_emit_arcs(uint32_t num_counters, uint64_t *counters) { argument
174 write_int64(counters[i]);
180 printf("llvmgcda: %llu\n", (unsigned long long)counters[i]);
133 llvm_gcda_increment_indirect_counter(uint32_t *predecessor, uint64_t **counters) argument
/external/wpa_supplicant_8/hostapd/src/radius/
H A Dradius_server.c49 * struct radius_server_counters - RADIUS server statistics counters
113 struct radius_server_counters counters; member in struct:radius_client
295 * counters - Statistics counters for server operations
297 * These counters are the sum over all clients.
299 struct radius_server_counters counters; member in struct:radius_server_data
978 data->counters.access_rejects++;
979 client->counters.access_rejects++;
1045 data->counters.dup_access_requests++;
1046 client->counters
[all...]
/external/wpa_supplicant_8/src/radius/
H A Dradius_server.c49 * struct radius_server_counters - RADIUS server statistics counters
113 struct radius_server_counters counters; member in struct:radius_client
295 * counters - Statistics counters for server operations
297 * These counters are the sum over all clients.
299 struct radius_server_counters counters; member in struct:radius_server_data
978 data->counters.access_rejects++;
979 client->counters.access_rejects++;
1045 data->counters.dup_access_requests++;
1046 client->counters
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/radius/
H A Dradius_server.c49 * struct radius_server_counters - RADIUS server statistics counters
113 struct radius_server_counters counters; member in struct:radius_client
295 * counters - Statistics counters for server operations
297 * These counters are the sum over all clients.
299 struct radius_server_counters counters; member in struct:radius_server_data
978 data->counters.access_rejects++;
979 client->counters.access_rejects++;
1045 data->counters.dup_access_requests++;
1046 client->counters
[all...]
/external/iproute2/include/
H A Dip6tables.h16 void print_rule6(const struct ip6t_entry *e, struct xtc_handle *h, const char *chain, int counters);
H A Diptables.h19 struct xtc_handle *handle, const char *chain, int counters);
/external/iptables/include/
H A Dip6tables.h16 void print_rule6(const struct ip6t_entry *e, struct xtc_handle *h, const char *chain, int counters);
H A Diptables.h19 struct xtc_handle *handle, const char *chain, int counters);
/external/v8/src/
H A Dcounters-inl.h8 #include "src/counters.h"
16 Initialize(isolate->counters()->runtime_call_stats(), counter_id);
/external/v8/src/extensions/
H A Dstatistics-extension.cc7 #include "src/counters.h"
75 Counters* counters = isolate->counters(); local
84 { counters->name(), #name } \
90 { counters->count_of_##name(), "count_of_" #name } \
91 , {counters->size_of_##name(), "size_of_" #name},
96 { counters->count_of_CODE_TYPE_##name(), "count_of_CODE_TYPE_" #name } \
97 , {counters->size_of_CODE_TYPE_##name(), "size_of_CODE_TYPE_" #name},
102 { counters->count_of_FIXED_ARRAY_##name(), "count_of_FIXED_ARRAY_" #name } \
103 , {counters
[all...]
/external/v8/src/tracing/
H A Dtrace-event.cc9 #include "src/counters.h"
25 p_data_->isolate->counters()->runtime_call_stats()->Dump(value.get());
46 RuntimeCallStats* table = isolate->counters()->runtime_call_stats();
/external/webrtc/talk/app/webrtc/
H A Dfakemetricsobserver.cc51 auto& counters = counters_[type]; local
52 ++counters[counter];
/external/autotest/client/cros/
H A Dmemory_bandwidth_logger.py48 counters = [ variable
134 Since the counters are monotonically increasing, we
146 too high, your results might be nonsense because the counters
150 raw: True if you want to dump raw counters. These will simply
153 seconds_period: Duration to wait before dumping counters again.
172 # set up the output formatting. raw counters don't have any
195 * rate_factor for c in counters }
197 output = list((c.name, output_dict[c.name]) for c in counters)
199 total_rate = sum(mb_diff[c.name] for c in counters if c.total)
231 for c in counters }
[all...]
/external/chromium-trace/catapult/telemetry/telemetry/timeline/
H A Dprocess.py38 def counters(self): member in class:Process
68 if counter_id in self.counters:
69 return self.counters[counter_id]
/external/iproute2/include/libiptc/
H A Dlibip6tc.h53 struct xt_counters *counters,
105 /* Zeroes the counters in a chain. */
125 struct xt_counters *counters,
132 /* read packet and byte counters for a specific rule */
137 /* zero packet and byte counters for a specific rule */
142 /* set packet and byte counters for a specific rule */
145 struct xt_counters *counters,
/external/iptables/include/libiptc/
H A Dlibip6tc.h53 struct xt_counters *counters,
105 /* Zeroes the counters in a chain. */
125 struct xt_counters *counters,
132 /* read packet and byte counters for a specific rule */
137 /* zero packet and byte counters for a specific rule */
142 /* set packet and byte counters for a specific rule */
145 struct xt_counters *counters,
/external/iptables/iptables/
H A Dxtables-save.c31 {.name = "counters", .has_arg = false, .val = 'c'},
41 do_output(struct nft_handle *h, const char *tablename, bool counters) argument
46 return nft_for_each_table(h, do_output, counters);
64 nft_rule_save(h, tablename, counters);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_stoptheworld_test.cc99 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) !=
/external/valgrind/exp-bbv/tests/amd64-linux/
H A Dcomplex_rep.S5 # Performance counters give us 8207 insns
H A Drep_prefix.S5 # The answer is validated to hw perf counters.

Completed in 717 milliseconds

123456789