HomeSort by relevance Sort by last modified time
    Searched refs:Counter (Results 76 - 100 of 211) sorted by null

1 2 34 5 6 7 8 9

  /external/netperf/src/
netcpu_ntperf.c 64 LARGE_INTEGER Counter;
65 QueryPerformanceCounter(&Counter);
67 return(Counter);
97 // Open the performance counter interface
428 This routine cleans up the performance counter APIs.
  /external/autotest/scheduler/
rdb_utils.py 134 return sorted(collections.Counter(requests).items(), key=sort_function,
pidfile_monitor.py 112 autotest_stats.Counter('autoserv_died_without_writing_exit_code',
  /external/autotest/server/hosts/
servo_host.py 489 autotest_stats.Counter(
620 autotest_stats.Counter(counter_prefix + 'SUCCEEDED').increment()
624 autotest_stats.Counter(counter_prefix + 'RepairNA').increment()
628 autotest_stats.Counter(counter_prefix + 'FAILED').increment()
630 autotest_stats.Counter('servo_host_repair.Full_Repair_Failed'). \
ssh_host.py 107 autotest_stats.Counter('dns_retry_hack.fail').increment()
110 autotest_stats.Counter('dns_retry_hack.pass').increment()
cros_host.py     [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
counter_unittest.py 8 from telemetry.timeline import counter as counter_module
19 self.counter = counter_module.Counter(parent, 'cat', 'name')
26 self.assertIsEmptyIterator(self.counter.IterEventsInThisContainer(
31 self.counter.timestamps = [111, 222]
32 self.assertIsEmptyIterator(self.counter.IterEventsInThisContainer(
37 self.counter.timestamps = [111, 222]
38 self.assertIsEmptyIterator(self.counter.IterEventsInThisContainer(
43 self.counter.timestamps = [111, 222]
44 self.counter.samples = [100, 200
    [all...]
process.py 5 import telemetry.timeline.counter as tracing_counter
43 for counter in self._counters.itervalues():
44 yield counter
70 'Counter %s not found in process with id %s.' % (counter_id,
76 ctr = tracing_counter.Counter(self, category, name)
99 for counter in self._counters.itervalues():
100 counter.FinalizeImport()
  /external/llvm/lib/Fuzzer/
FuzzerDriver.cpp 162 static void WorkerThread(const std::string &Cmd, std::atomic<int> *Counter,
165 int C = (*Counter)++;
183 std::atomic<int> Counter(0);
195 V.push_back(std::thread(WorkerThread, Cmd, &Counter, NumJobs, &HasErrors));
  /external/v8/test/cctest/compiler/
test-loop-analysis.cc 209 struct Counter {
215 Counter(While& w, int32_t b, int32_t k)
220 Counter(While& w, Node* b, Node* k) : base(b), inc(k) { Build(w); }
284 // One loop with a counter.
287 Counter c(w, 0, 1);
319 Counter c1(w, 0, 1);
320 Counter c2(w, 1, 1);
365 Counter c1(w1, 0, 1);
366 Counter c2(w2, 0, 1);
396 Counter c1(w1, 0, 1)
    [all...]
  /external/autotest/client/common_lib/cros/
dev_server.py 294 autotest_stats.Counter(server_name +
303 counter = '.devserver_healthy' if disk_ok else '.devserver_not_healthy'
304 # This counter indicates the load of a devserver. By comparing the
305 # value of this counter for all devservers, we can evaluate the
307 autotest_stats.Counter(server_name + counter).increment()
514 autotest_stats.Counter(stats_key).increment()
566 stats.Timer, stats.Counter, etc.
738 autotest_stats.Counter(counter_key, metadata=metadata).increment()
757 autotest_stats.Counter(timeout_key
    [all...]
  /external/autotest/site_utils/
gmail_lib.py 164 autotest_stats.Counter(EMAIL_COUNT_KEY % 'total').increment()
170 autotest_stats.Counter(EMAIL_COUNT_KEY % 'fail').increment()
  /external/clang/test/SemaCXX/
nested-name-spec.cpp 197 class Counter { public: static int count; };
198 typedef Counter counter; typedef in namespace:test1::ns
200 using ns::counter;
204 counter c;
206 counter::count++;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
AlphabeticIndexTest.java 348 Counter<AlphabeticIndex.Bucket.LabelType> counter = new Counter(); local
351 counter.add(labelType, 1);
354 assertEquals(LabelType.UNDERFLOW + "\t" + printList, 1, counter.get(LabelType.UNDERFLOW));
355 assertEquals(LabelType.INFLOW + "\t" + printList, expected, counter.get(LabelType.INFLOW));
356 if (expected != counter.get(LabelType.INFLOW)) {
369 assertEquals(LabelType.OVERFLOW + "\t" + printList, 1, counter.get(LabelType.OVERFLOW));
379 int counter = 0; local
380 Counter<String> itemCount = new Counter()
    [all...]
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
AlphabeticIndexTest.java 344 Counter<AlphabeticIndex.Bucket.LabelType> counter = new Counter(); local
347 counter.add(labelType, 1);
350 assertEquals(LabelType.UNDERFLOW + "\t" + printList, 1, counter.get(LabelType.UNDERFLOW));
351 assertEquals(LabelType.INFLOW + "\t" + printList, expected, counter.get(LabelType.INFLOW));
352 if (expected != counter.get(LabelType.INFLOW)) {
365 assertEquals(LabelType.OVERFLOW + "\t" + printList, 1, counter.get(LabelType.OVERFLOW));
375 int counter = 0; local
376 Counter<String> itemCount = new Counter()
    [all...]
  /external/clang/lib/AST/
Stmt.cpp 33 unsigned Counter;
70 sum += StmtClassInfo[i].Counter;
76 if (StmtClassInfo[i].Counter == 0) continue;
77 llvm::errs() << " " << StmtClassInfo[i].Counter << " "
79 << " each (" << StmtClassInfo[i].Counter*StmtClassInfo[i].Size
81 sum += StmtClassInfo[i].Counter*StmtClassInfo[i].Size;
88 ++getStmtInfoTableEntry(s).Counter;
    [all...]
  /external/llvm/include/llvm/Support/
GCOV.h 315 : Parent(P), Number(N), Counter(0), DstEdgesAreSorted(true), SrcEdges(),
322 uint64_t getCount() const { return Counter; }
357 uint64_t Counter;
  /external/autotest/contrib/
sheriff_host_utils.py 102 ranking = collections.Counter([name[name.rfind('/')+1:] for name in names])
  /external/autotest/frontend/afe/json_rpc/
serviceHandler.py 105 autotest_stats.Counter('rpc').increment(methName)
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 191 // Set the current block counter to being empty.
217 // Set the current block counter.
326 // Increment the block counter.
329 BlockCounter Counter = WList->getBlockCounter();
330 Counter = BCounterFactory.IncrementCount(Counter, LC->getCurrentStackFrame(),
332 WList->setBlockCounter(Counter);
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 81 static int Counter;
120 int PPCCTRLoops::Counter = 0;
277 // because, although it does clobber the counter register, the
414 // On PowerPC, indirect jumps use the counter register.
455 if (Counter >= CTRLoopLimit)
457 Counter++;
461 // We don't want to spill/restore the counter register, and so we don't
462 // want to use the counter register if the loop contains calls.
  /external/v8/test/unittests/compiler/
loop-peeling-unittest.cc 44 struct Counter {
134 Counter NewCounter(While* w, int32_t b, int32_t k) {
169 Counter c = NewCounter(&w, 0, 1);
199 Counter c = NewCounter(&outer, 0, 1);
238 Counter c = NewCounter(&outer, 0, 1);
273 Counter c = NewCounter(&inner, 0, 1);
  /external/guice/core/test/com/google/inject/
BindingTest.java 129 bind(Integer.class).toProvider(Counter.class).asEagerSingleton();
130 bind(Number.class).toProvider(Counter.class).asEagerSingleton();
137 static class Counter implements Provider<Integer> {
  /external/llvm/lib/IR/
GCOV.cpp 373 /// addCount - Add to block counter while storing the edge count. If the
378 Counter += N;
380 DstEdges[DstEdgeNo]->Dst.Counter += N;
401 dbgs() << "Block : " << Number << " Counter : " << Counter << "\n";
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 518 // If this is a new LastFn instruction, bump the counter.
520 ++Counter;
524 OS << Counter;

Completed in 1867 milliseconds

1 2 34 5 6 7 8 9