HomeSort by relevance Sort by last modified time
    Searched defs:Counter (Results 1 - 25 of 83) sorted by null

1 2 3 4

  /external/v8/test/mjsunit/regress/
regress-crbug-306851.js 30 function Counter() {
34 Object.defineProperty(Counter.prototype, 'count', {
39 var obj = new Counter();
  /external/google-breakpad/src/testing/gtest/samples/
sample4.h 37 // A simple monotonic counter.
38 class Counter {
43 // Creates a counter that starts at 0.
44 Counter() : counter_(0) {}
46 // Returns the current counter value, and increments it.
49 // Prints the current counter value to STDOUT.
  /external/protobuf/gtest/samples/
sample4.h 37 // A simple monotonic counter.
38 class Counter {
43 // Creates a counter that starts at 0.
44 Counter() : counter_(0) {}
46 // Returns the current counter value, and increments it.
49 // Prints the current counter value to STDOUT.
  /ndk/sources/third_party/googletest/googletest/samples/
sample4.h 37 // A simple monotonic counter.
38 class Counter {
43 // Creates a counter that starts at 0.
44 Counter() : counter_(0) {}
46 // Returns the current counter value, and increments it.
49 // Prints the current counter value to STDOUT.
  /external/libcxx/test/support/
Counter.h 18 class Counter : public Counter_base
21 Counter() : data_() { ++gConstructed; }
22 Counter(const T &data) : data_(data) { ++gConstructed; }
23 Counter(const Counter& rhs) : data_(rhs.data_) { ++gConstructed; }
24 Counter& operator=(const Counter& rhs) { ++gConstructed; data_ = rhs.data_; return *this; }
26 Counter(Counter&& rhs) : data_(std::move(rhs.data_)) { ++gConstructed; }
27 Counter& operator=(Counter&& rhs) { ++gConstructed; data_ = std::move(rhs.data_); return *this;
    [all...]
  /external/javassist/sample/rmi/
Counter.java 8 public class Counter {
25 web.exportObject("counter", new Counter());
30 "Usage: java sample.rmi.Counter <port number>");
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
Counter.java 19 * $Id: Counter.java 468645 2006-10-28 06:57:24Z minchau $
37 public class Counter
61 * find a counter if the node being counted is not immediatly
79 * Construct a counter object.
86 Counter(ElemNumber numberElem, NodeSetDTM countNodes) throws TransformerException
93 * Construct a counter object.
99 Counter(ElemNumber numberElem) throws TransformerException
  /external/lldb/examples/summaries/cocoa/
metrics.py 31 class Counter:
68 self.metrics[name] = Counter()
  /external/vixl/src/vixl/a64/
instrument-a64.h 54 class Counter {
56 explicit Counter(const char* name, CounterType type = Gauge);
94 Counter* GetCounter(const char* name);
99 std::list<Counter*> counters_;
  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 33 unsigned Counter;
63 Counter = 0;
118 O << IndentStr << "static const MCPhysReg RegList" << ++Counter
127 << Counter << ")) {\n";
146 unsigned RegListNumber = ++Counter;
147 unsigned ShadowRegListNumber = ++Counter;
179 O << IndentStr << "unsigned Offset" << ++Counter
197 << Counter << ", LocVT, LocInfo));\n";
204 unsigned ShadowRegListNumber = ++Counter;
215 O << IndentStr << "unsigned Offset" << ++Counter
    [all...]
  /external/v8/src/arm64/
instrument-arm64.h 33 class Counter {
35 explicit Counter(const char* name, CounterType type = Gauge);
72 Counter* GetCounter(const char* name);
77 std::list<Counter*> counters_;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_HalfHor4x4_unsafe_s.s 87 Counter RN 11
97 MOV Counter, #2
177 SUBS Counter, Counter, #1
  /bionic/tests/
time_test.cpp 232 struct Counter {
246 Counter(void (*fn)(sigval_t)) : value(0), timer_valid(false) {
259 ~Counter() {
282 Counter* cd = reinterpret_cast<Counter*>(value.sival_ptr);
287 Counter* cd = reinterpret_cast<Counter*>(value.sival_ptr);
296 Counter counter(Counter::CountAndDisarmNotifyFunction)
    [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.h 57 /// Return the counter value of the current region.
60 /// Set the counter value for the current region. This is used to keep track
61 /// of changes to the most recent counter from control flow and non-local
66 /// counter value of zero. This is important so that subsequent regions can
100 /// Emit a coverage mapping range with a counter zero
117 /// Emit code to increment the counter at the given index
118 void emitCounterIncrement(CGBuilderTy &Builder, unsigned Counter);
120 /// Return the region counter for the given statement. This should only be
121 /// called on statements that have a dedicated counter.
128 /// Return the region count for the counter at the given index
    [all...]
  /external/llvm/lib/CodeGen/
LexicalScopes.cpp 221 unsigned Counter = 0;
233 ChildScope->setDFSIn(++Counter);
239 WS->setDFSOut(++Counter);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_ExpandFrame_I_s.s 68 Counter RN 12
92 MOV Temp, iFrameWidth ;// Outer loop counter
109 MOV Counter, iExpandPels ;// Inner loop counter
121 SUBS Counter, Counter, #8
140 MOV Counter, iExpandPels ;// Inner loop counter
152 SUBS Counter, Counter, #
    [all...]
  /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/clang/test/CXX/temp/temp.decls/temp.variadic/
sizeofpack.cpp 124 struct Counter
126 static const int count = 1 + Counter<Args...>::count;
130 struct Counter<T>
  /external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
Counter.java 26 public class Counter<T> implements Iterable<T>, Comparable<Counter<T>> {
30 public Counter() {
34 public Counter(Comparator<T> comparator) {
68 public Counter<T> add(T obj, long countValue) {
84 public Counter<T> clear() {
136 int counter = 0; local
138 count_key.add(new Entry<T>(map.get(key), key, counter++));
183 public Counter<T> addAll(Collection<T> keys, int delta) {
190 public Counter<T> addAll(Counter<T> keys)
    [all...]
  /external/lldb/test/functionalities/data-formatter/data-formatter-cpp/
main.cpp 18 typedef int Counter; // should show as int
24 typedef Counter Accumulator; // should show as int
81 Counter CTILookInt = 6;
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 493 mutable unsigned Counter;
  /external/llvm/lib/Bitcode/Writer/
ValueEnumerator.cpp 790 unsigned Counter = 0;
792 IDMap[BB] = ++Counter;
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 516 // If this is a new LastFn instruction, bump the counter.
518 ++Counter;
522 OS << Counter;
  /external/llvm/lib/Fuzzer/
FuzzerDFSan.cpp 205 size_t Counter = CSI.ResCounters[Res]++;
208 (Counter & (Counter - 1)) == 0 &&
  /external/llvm/lib/Target/PowerPC/
PPCCTRLoops.cpp 81 static int Counter;
119 int PPCCTRLoops::Counter = 0;
262 // because, although it does clobber the counter register, the
398 // On PowerPC, indirect jumps use the counter register.
438 if (Counter >= CTRLoopLimit)
440 Counter++;
444 // We don't want to spill/restore the counter register, and so we don't
445 // want to use the counter register if the loop contains calls.

Completed in 2528 milliseconds

1 2 3 4