Home
last modified time | relevance | path

Searched defs:Counter (Results 1 – 25 of 172) sorted by relevance

1234567

/external/llvm-project/libcxx/test/support/
DCounter.h22 Counter() : data_() { ++gConstructed; } in Counter() function
23 Counter(const T &data) : data_(data) { ++gConstructed; } in Counter() function
24 Counter(const Counter& rhs) : data_(rhs.data_) { ++gConstructed; } in Counter() function
27 Counter(Counter&& rhs) : data_(std::move(rhs.data_)) { ++gConstructed; } in Counter() function
/external/libcxx/test/support/
DCounter.h23 Counter() : data_() { ++gConstructed; } in Counter() function
24 Counter(const T &data) : data_(data) { ++gConstructed; } in Counter() function
25 Counter(const Counter& rhs) : data_(rhs.data_) { ++gConstructed; } in Counter() function
28 Counter(Counter&& rhs) : data_(std::move(rhs.data_)) { ++gConstructed; } in Counter() function
/external/pigweed/pw_containers/
Dvector_test.cc59 struct Counter { struct
60 static int created;
61 static int destroyed;
62 static int moved;
64 static void Reset() { created = destroyed = moved = 0; } in Reset()
66 Counter() : value(0) { created += 1; } in Counter() argument
68 Counter(int val) : value(val) { created += 1; } in Counter() function
70 Counter(const Counter& other) : value(other.value) { created += 1; } in Counter() argument
72 Counter(Counter&& other) : value(other.value) { in Counter() function
77 ~Counter() { destroyed += 1; } in ~Counter()
[all …]
/external/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h84 struct Counter { struct
85 enum CounterKind { Zero, CounterValueReference, Expression }; argument
88 static const unsigned EncodingCounterTagAndExpansionRegionTagBits = argument
95 Counter(CounterKind Kind, unsigned ID) : Kind(Kind), ID(ID) {} in Counter() argument
98 Counter() : Kind(Zero), ID(0) {} in Counter() function
100 CounterKind getKind() const { return Kind; } in getKind() argument
106 unsigned getCounterID() const { return ID; } in getCounterID() argument
110 friend bool operator==(const Counter &LHS, const Counter &RHS) { argument
123 static Counter getZero() { return Counter(); } in getZero() argument
126 static Counter getCounter(unsigned CounterId) { in getCounter() argument
[all …]
/external/rust/crates/ring/src/aead/
Dcounter.rs26 pub struct Counter<U32> { struct
32 impl<U32> Counter<U32> argument
98 impl<U32> Into<Iv> for Counter<U32> implementation
Dchacha.rs31 pub fn encrypt_in_place(&self, counter: Counter, in_out: &mut [u8]) { in encrypt_in_place()
71 pub fn encrypt_overlapping(&self, counter: Counter, in_out: &mut [u8], in_prefix_len: usize) { in encrypt_overlapping()
126 pub type Counter = counter::Counter<LittleEndian<u32>>; typedef
129 Counter(Counter), enumerator
/external/rust/crates/crossbeam-channel/src/
Dcounter.rs9 struct Counter<C> { struct
25 let counter = Box::into_raw(Box::new(Counter { in new() argument
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h90 struct Counter { struct
91 enum CounterKind { Zero, CounterValueReference, Expression }; argument
94 static const unsigned EncodingCounterTagAndExpansionRegionTagBits = argument
101 Counter(CounterKind Kind, unsigned ID) : Kind(Kind), ID(ID) {} in Counter() function
106 CounterKind getKind() const { return Kind; } in getKind() argument
112 unsigned getCounterID() const { return ID; } in getCounterID() argument
116 friend bool operator==(const Counter &LHS, const Counter &RHS) { argument
129 static Counter getZero() { return Counter(); } in getZero() argument
132 static Counter getCounter(unsigned CounterId) { in getCounter() argument
138 static Counter getExpression(unsigned ExpressionId) { in getExpression() argument
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dcounter.py75 Counter = CounterV2 variable
77 Counter = CounterV1 variable
/external/llvm/docs/
DCoverageMappingFormat.rst457 Counter section in Encoding
467 .. _counter-tag:
469 Tag:
498 Counter Expressions argument
585 .. _source range:
/external/llvm-project/llvm/docs/
DCoverageMappingFormat.rst420 Counter section in Encoding
430 .. _counter-tag:
432 Tag:
461 Counter Expressions argument
548 .. _source range:
/external/llvm-project/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h92 struct Counter { struct
93 enum CounterKind { Zero, CounterValueReference, Expression }; argument
96 static const unsigned EncodingCounterTagAndExpansionRegionTagBits = argument
103 Counter(CounterKind Kind, unsigned ID) : Kind(Kind), ID(ID) {} in Counter() argument
108 CounterKind getKind() const { return Kind; } in getKind() argument
114 unsigned getCounterID() const { return ID; } in getCounterID() argument
118 friend bool operator==(const Counter &LHS, const Counter &RHS) { argument
131 static Counter getZero() { return Counter(); } in getZero() argument
134 static Counter getCounter(unsigned CounterId) { in getCounter() argument
140 static Counter getExpression(unsigned ExpressionId) { in getExpression() argument
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
DRepresentIterableTest.java53 private class Counter implements Iterator<Integer> { class in RepresentIterableTest
57 public Counter(int max) { in Counter() method in RepresentIterableTest.Counter
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DCounter.java37 public class Counter class
86 Counter(ElemNumber numberElem, NodeSetDTM countNodes) throws TransformerException in Counter() method in Counter
/external/rust/crates/hashlink/tests/
Dlinked_hash_map.rs355 struct Counter<'a>(&'a mut usize); in test_into_iter_drop() struct
357 impl<'a> Drop for Counter<'a> { in test_into_iter_drop() implementation
387 struct Counter(Rc<Cell<u32>>); in test_drain() struct
389 impl<'a> Drop for Counter { in test_drain() implementation
477 struct Counter(Rc<Cell<u32>>); in test_retain() struct
479 impl<'a> Drop for Counter { in test_retain() implementation
/external/opencensus-java/impl/src/test/java/io/opencensus/impl/internal/
DDisruptorEventQueueTest.java32 private static class Counter { class in DisruptorEventQueueTest
36 public Counter() { in Counter() method in DisruptorEventQueueTest.Counter
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dsizeofpack.cpp124 struct Counter struct
126 static const int count = 1 + Counter<Args...>::count;
130 struct Counter<T> struct
132 static const int count = 1;
/external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/
Dsizeofpack.cpp124 struct Counter struct
126 static const int count = 1 + Counter<Args...>::count;
130 struct Counter<T> struct
132 static const int count = 1;
/external/llvm-project/compiler-rt/lib/gwp_asan/tests/
Dmutex_test.cpp55 unsigned *Counter, in synchronousIncrementTask()
73 unsigned Counter = 0; in runSynchronisedTest() local
/external/gwp_asan/gwp_asan/tests/
Dmutex_test.cpp55 unsigned *Counter, in synchronousIncrementTask()
73 unsigned Counter = 0; in runSynchronisedTest() local
/external/llvm-project/llvm/lib/Support/
DDebugCounter.cpp96 CounterInfo &Counter = Counters[CounterID]; in push_back() local
109 CounterInfo &Counter = Counters[CounterID]; in push_back() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DDebugCounter.cpp96 CounterInfo &Counter = Counters[CounterID]; in push_back() local
109 CounterInfo &Counter = Counters[CounterID]; in push_back() local
/external/rust/crates/quiche/deps/boringssl/src/third_party/googletest/samples/
Dsample4.h41 Counter() : counter_(0) {} in Counter() function
/external/googletest/googletest/samples/
Dsample4.h41 Counter() : counter_(0) {} in Counter() function
/external/llvm-project/clang/test/CodeGen/
Dwindows-seh-abnormal-exits.c9 void seh_abnormal_exits(int *Counter) { in seh_abnormal_exits()

1234567