Home
last modified time | relevance | path

Searched full:counters (Results 1 – 25 of 1378) sorted by relevance

12345678910>>...56

/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/SimplifyCFG/
Dpreserve-store-alignment.ll4 %struct.Counters = type { i64, i64, i64, [8 x i8] }
7 @counters = global %struct.Counters zeroinitializer, align 16
12 … <2 x i64>* bitcast (i64* getelementptr inbounds (%struct.Counters, %struct.Counters* @counters, i…
14 … <2 x i64>* bitcast (i64* getelementptr inbounds (%struct.Counters, %struct.Counters* @counters, i…
28 … <2 x i64>* bitcast (i64* getelementptr inbounds (%struct.Counters, %struct.Counters* @counters, i…
33 … <2 x i64>* bitcast (i64* getelementptr inbounds (%struct.Counters, %struct.Counters* @counters, i…
35 … <2 x i64>* bitcast (i64* getelementptr inbounds (%struct.Counters, %struct.Counters* @counters, i…
43 … <2 x i64>* bitcast (i64* getelementptr inbounds (%struct.Counters, %struct.Counters* @counters, i…
54 … <2 x i64>* bitcast (i64* getelementptr inbounds (%struct.Counters, %struct.Counters* @counters, i…
64 … <2 x i64>* bitcast (i64* getelementptr inbounds (%struct.Counters, %struct.Counters* @counters, i…
[all …]
/external/libxml2/xstc/
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): argument
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[self.CNT_INTERNAL] += 1
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-profdata/Inputs/
Dmultiple-profdata-merge.proftext6 # Num Counters:
17 # Num Counters:
30 # Num Counters:
40 # Num Counters:
53 # Num Counters:
61 # Num Counters:
69 # Num Counters:
77 # Num Counters:
85 # Num Counters:
93 # Num Counters:
[all …]
/external/grpc-grpc/tools/profiling/microbenchmarks/bm_diff/
Dbm_build.py16 """ Python utility to build opt and counters benchmarks """
49 argp.add_argument('--counters', dest='counters', action='store_true')
50 argp.add_argument('--no-counters', dest='counters', action='store_false')
51 argp.set_defaults(counters=True)
61 def build(name, benchmarks, jobs, counters): argument
66 if counters:
67 subprocess.check_call(_make_cmd('counters', benchmarks, jobs))
71 if counters:
72 subprocess.check_call(_make_cmd('counters', benchmarks, jobs))
81 build(args.name, args.benchmarks, args.jobs, args.counters)
Dbm_run.py16 """ Python utility to run opt and counters benchmarks and save json output """
71 argp.add_argument('--counters', dest='counters', action='store_true')
72 argp.add_argument('--no-counters', dest='counters', action='store_false')
73 argp.set_defaults(counters=True)
108 def create_jobs(name, benchmarks, loops, regex, counters): argument
113 if counters:
114 jobs_list += _collect_bm_data(bm, 'counters', name, regex, loop,
123 args.counters)
Dbm_main.py95 argp.add_argument('--counters', dest='counters', action='store_true')
96 argp.add_argument('--no-counters', dest='counters', action='store_false')
97 argp.set_defaults(counters=True)
121 bm_build.build('new', args.benchmarks, args.jobs, args.counters)
130 bm_build.build(old, args.benchmarks, args.jobs, args.counters)
137 args.regex, args.counters)
139 args.regex, args.counters)
146 args.track, old, 'new', args.counters)
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
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); in getCounters() local
63 return (null == counters) ? putElemNumber(numberElem) : counters; in getCounters()
78 Vector counters = new Vector(); in putElemNumber() local
80 this.put(numberElem, counters); in putElemNumber()
82 return counters; in putElemNumber()
86 * Place to collect new counters.
111 /** Number of counters created so far */
[all …]
/external/v8/src/
Dcounters.cc5 #include "src/counters.h"
18 StatsTable::StatsTable(Counters* counters) in StatsTable() argument
31 StatsCounterThreadSafe::StatsCounterThreadSafe(Counters* counters, in StatsCounterThreadSafe() argument
33 : StatsCounterBase(counters, name) {} in StatsCounterThreadSafe()
113 Counters::Counters(Isolate* isolate) in Counters() function in v8::internal::Counters
123 Histogram Counters::*member; in Counters()
130 {&Counters::name##_, #caption, min, max, num_buckets}, in Counters()
143 HistogramTimer Counters::*member; in Counters()
149 {&Counters::name##_, #caption, max, HistogramTimerResolution::res}, in Counters()
159 TimedHistogram Counters::*member; in Counters()
[all …]
Dcounters.h26 // counters for monitoring. Counters can be looked up and
29 class Counters; variable
83 friend class Counters;
85 explicit StatsTable(Counters* counters);
94 // Base class for stats counters.
97 Counters* counters_;
102 StatsCounterBase(Counters* counters, const char* name) in StatsCounterBase() argument
103 : counters_(counters), name_(name), ptr_(nullptr) {} in StatsCounterBase()
162 friend class Counters;
165 StatsCounter(Counters* counters, const char* name) in StatsCounter() argument
[all …]
/external/libcxx/utils/google-benchmark/src/
Dcsv_reporter.cc49 // save the names of all the user counters in ReportRuns()
51 for (const auto& cnt : run.counters) { in ReportRuns()
71 // check that all the current counters are saved in the name set in ReportRuns()
73 for (const auto& cnt : run.counters) { in ReportRuns()
77 << "All counters must be present in each run. " in ReportRuns()
124 if (run.counters.find("bytes_per_second") != run.counters.end()) { in PrintRunData()
125 Out << run.counters.at("bytes_per_second"); in PrintRunData()
128 if (run.counters.find("items_per_second") != run.counters.end()) { in PrintRunData()
129 Out << run.counters.at("items_per_second"); in PrintRunData()
141 // Print user counters in PrintRunData()
[all …]
/external/google-benchmark/src/
Dcsv_reporter.cc49 // save the names of all the user counters in ReportRuns()
51 for (const auto& cnt : run.counters) { in ReportRuns()
71 // check that all the current counters are saved in the name set in ReportRuns()
73 for (const auto& cnt : run.counters) { in ReportRuns()
77 << "All counters must be present in each run. " in ReportRuns()
124 if (run.counters.find("bytes_per_second") != run.counters.end()) { in PrintRunData()
125 Out << run.counters.at("bytes_per_second"); in PrintRunData()
128 if (run.counters.find("items_per_second") != run.counters.end()) { in PrintRunData()
129 Out << run.counters.at("items_per_second"); in PrintRunData()
141 // Print user counters in PrintRunData()
[all …]
/external/v8/tools/
Dstats-viewer.py33 The stats viewer reads counters from a binary file and displays them
55 # The magic numbers used to check if a file is not a counters file
67 data_name: the name of the file containing the counters.
73 # The handle created by mmap.mmap to the counters file. We need
81 # The counter collection used to access the counters file
97 """Mount the binary counters file as a memory-mapped file. If
136 necessary. If the same counters are present in the file as before
137 we just update the existing labels. If any counters have been added
174 counters = self.ComputeCounters()
175 self.RebuildMainWindow(counters)
[all …]
/external/swiftshader/third_party/LLVM/lib/Analysis/
DProfileInfoLoaderPass.cpp158 std::vector<unsigned> Counters = PIL.getRawEdgeCounts(); in runOnModule() local
159 if (Counters.size() > 0) { in runOnModule()
164 readEdge(getEdge(0,&F->getEntryBlock()), Counters); in runOnModule()
168 readEdge(getEdge(BB,TI->getSuccessor(s)), Counters); in runOnModule()
172 if (ReadCount != Counters.size()) { in runOnModule()
179 Counters = PIL.getRawOptimalEdgeCounts(); in runOnModule()
180 if (Counters.size() > 0) { in runOnModule()
185 readEdge(getEdge(0,&F->getEntryBlock()), Counters); in runOnModule()
189 readEdge(getEdge(BB,0), Counters); in runOnModule()
192 readEdge(getEdge(BB,TI->getSuccessor(s)), Counters); in runOnModule()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DDebugCounter.h10 /// This file provides an implementation of debug counters. Debug
11 /// counters are a tool that let you narrow down a miscompilation to a specific
67 // line option parsing. The main reason to register counters is to produce a
77 auto Result = Us.Counters.find(CounterName); in shouldExecute()
78 if (Result != Us.Counters.end()) { in shouldExecute()
84 // Negative counters always execute. in shouldExecute()
101 return instance().Counters[ID].IsSet; in isCounterSet()
104 // Return the Count for a counter. This only works for set counters.
107 auto Result = Us.Counters.find(ID); in getCounterValue()
108 assert(Result != Us.Counters.end() && "Asking about a non-set counter"); in getCounterValue()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-cov/Inputs/
Dname_whitelist.proftext4 # Num Counters:
12 # Num Counters:
20 # Num Counters:
28 # Num Counters:
36 # Num Counters:
44 # Num Counters:
52 # Num Counters:
/external/llvm/test/tools/llvm-profdata/
Dcompat.proftext14 # FUNC_COUNT_ONLY-NEXT: Counters: 1
25 # SPACES-NEXT: Counters: 2
40 # LARGENUM-NEXT: Counters: 6
51 # FORMATV2: Counters:
54 # FORMATV2-NEXT: Counters: 2
59 # FORMATV2-NEXT: Counters: 4
69 # FORMATV4: Counters:
72 # FORMATV4: Counters: 2
77 # FORMATV4: Counters: 1
82 # FORMATV4: Counters: 6
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-profdata/
Dcompat.proftext14 # FUNC_COUNT_ONLY-NEXT: Counters: 1
25 # SPACES-NEXT: Counters: 2
40 # LARGENUM-NEXT: Counters: 6
51 # FORMATV2: Counters:
54 # FORMATV2-NEXT: Counters: 2
59 # FORMATV2-NEXT: Counters: 4
70 # FORMATV4: Counters:
73 # FORMATV4: Counters: 2
78 # FORMATV4: Counters: 1
83 # FORMATV4: Counters: 6
/external/llvm/lib/Target/AMDGPU/
DSIInsertWaits.cpp35 /// \brief One variable for each of the hardware counters
44 } Counters; typedef
52 typedef Counters RegCounters[512];
64 static const Counters WaitCounts;
67 static const Counters ZeroCounts;
70 Counters WaitedOn;
74 Counters DelayedWaitOn;
77 Counters LastIssued;
100 Counters getHwCounts(MachineInstr &MI);
112 const Counters& Increment);
[all …]
/external/mesa3d/src/mesa/state_tracker/
Dst_cb_perfmon.c25 * Performance monitoring counters interface to gallium.
53 /* Determine the number of active counters. */ in init_perf_monitor()
59 /* Maximum number of counters reached. Cannot start the session. */ in init_perf_monitor()
61 debug_printf("Maximum number of counters reached. " in init_perf_monitor()
93 const struct st_perf_monitor_counter *stc = &stg->counters[cid]; in init_perf_monitor()
278 * active counter. The API allows counters to appear in any order. in st_GetPerfMonitorResult()
296 type = ctx->PerfMonitor.Groups[gid].Counters[cid].Type; in st_GetPerfMonitorResult()
370 struct gl_perf_monitor_counter *counters = NULL; in st_InitPerfMonitorGroups() local
380 counters = CALLOC(group_info.num_queries, sizeof(*counters)); in st_InitPerfMonitorGroups()
381 if (!counters) in st_InitPerfMonitorGroups()
[all …]
/external/u-boot/arch/arm/mach-tegra/
Divc.c26 * established state, indicating that has cleared the counters in our
33 * allowed to clear the counters it owns asynchronously with respect to
43 * return to the established state once it has cleared its counters.
151 * Invalid cases where the counters indicate that the queue is over in tegra_ivc_channel_full()
187 * transmit counters until we've acknowledged its synchronization in tegra_ivc_check_read()
340 * SYNC ACK reset counters; move to EST; notify
341 * SYNC SYNC reset counters; move to ACK; notify
344 * ACK SYNC reset counters; move to ACK; notify
347 * EST SYNC reset counters; move to ACK; notify
369 * Reset tx_channel counters. The remote end is in the SYNC in tegra_ivc_channel_notified()
[all …]
/external/libcxx/utils/google-benchmark/test/
Duser_counters_test.cc22 // ------------------------- Simple Counters Output ------------------------ //
28 state.counters["foo"] = 1; in BM_Counters_Simple()
29 state.counters["bar"] = 2 * (double)state.iterations(); in BM_Counters_Simple()
56 // --------------------- Counters+Items+Bytes/s Output --------------------- //
65 state.counters["foo"] = 1; in BM_Counters_WithBytesAndItemsPSec()
66 state.counters["bar"] = ++num_calls1; in BM_Counters_WithBytesAndItemsPSec()
103 // ------------------------- Rate Counters Output -------------------------- //
110 state.counters["foo"] = bm::Counter{1, bm::Counter::kIsRate}; in BM_Counters_Rate()
111 state.counters["bar"] = bm::Counter{2, bm::Counter::kIsRate}; in BM_Counters_Rate()
139 // ------------------------- Thread Counters Output ------------------------ //
[all …]
/external/google-benchmark/test/
Duser_counters_test.cc22 // ------------------------- Simple Counters Output ------------------------ //
28 state.counters["foo"] = 1; in BM_Counters_Simple()
29 state.counters["bar"] = 2 * (double)state.iterations(); in BM_Counters_Simple()
56 // --------------------- Counters+Items+Bytes/s Output --------------------- //
65 state.counters["foo"] = 1; in BM_Counters_WithBytesAndItemsPSec()
66 state.counters["bar"] = ++num_calls1; in BM_Counters_WithBytesAndItemsPSec()
103 // ------------------------- Rate Counters Output -------------------------- //
110 state.counters["foo"] = bm::Counter{1, bm::Counter::kIsRate}; in BM_Counters_Rate()
111 state.counters["bar"] = bm::Counter{2, bm::Counter::kIsRate}; in BM_Counters_Rate()
139 // ------------------------- Thread Counters Output ------------------------ //
[all …]
/external/v8/src/wasm/
Dfunction-compiler.h16 class Counters; variable
83 // If constructing from a background thread, pass in a Counters*, and ensure
84 // that the Counters live at least as long as this compilation unit (which
85 // typically means to hold a std::shared_ptr<Counters>).
86 // If used exclusively from a foreground thread, Isolate::counters() may be
87 // used by callers to pass Counters.
89 FunctionBody, WasmName, int index, Counters*,
113 Counters* counters_;
Dfunction-compiler.cc8 #include "src/counters.h"
31 void RecordStats(const WasmCode* code, Counters* counters) { in RecordStats() argument
32 counters->wasm_generated_code_size()->Increment( in RecordStats()
34 counters->wasm_reloc_size()->Increment( in RecordStats()
49 int index, Counters* counters, in WasmCompilationUnit() argument
55 counters_(counters), in WasmCompilationUnit()
159 function->func_index, isolate->counters(), mode); in CompileWasmFunction()
/external/wpa_supplicant_8/src/radius/
Dradius_server.c49 * struct radius_server_counters - RADIUS server statistics counters
117 struct radius_server_counters counters; member
309 * counters - Statistics counters for server operations
311 * These counters are the sum over all clients.
313 struct radius_server_counters counters; member
1434 data->counters.access_rejects++; in radius_server_reject()
1435 client->counters.access_rejects++; in radius_server_reject()
1546 data->counters.dup_access_requests++; in radius_server_request()
1547 client->counters.dup_access_requests++; in radius_server_request()
1577 data->counters.packets_dropped++; in radius_server_request()
[all …]

12345678910>>...56