Home
last modified time | relevance | path

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

12345678

/external/pigweed/pw_containers/pw_containers_private/
Dtest_helpers.h51 struct Counter { struct
58 Counter(int val = 0) : value(val), set_to_this_when_constructed_(this) { in value() argument
63 Counter(const Counter& other) : Counter(other.value) {} in Counter() function
65 Counter(Counter&& other) in Counter() function
72 Counter& operator=(const Counter& other); argument
73 Counter& operator=(Counter&& other); argument
82 constexpr ObjectCounter() : count_(0) {} in ObjectCounter() argument
93 static ObjectCounter objects_; argument
95 Counter* set_to_this_when_constructed_; argument
/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/cronet/stable/third_party/libc++/src/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/cronet/tot/third_party/libc++/src/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/pigweed/pw_allocator/public/pw_allocator/internal/
Dmanaged_ptr_testing.h31 Counter() : Counter(num_ctor_calls_) {} in Counter() function
32 explicit Counter(size_t value) : value_(value) { ++num_ctor_calls_; } in Counter() function
34 Counter(Counter&&) {} in Counter() argument
/external/rust/android-crates-io/crates/ring/src/aead/
Dchacha.rs54 pub fn encrypt_in_place(&self, counter: Counter, in_out: &mut [u8]) { in encrypt_in_place()
78 pub fn encrypt_within(&self, counter: Counter, in_out: &mut [u8], src: RangeFrom<usize>) { in encrypt_within()
97 fn encrypt_less_safe(&self, counter: Counter, in_out: &mut [u8], src: RangeFrom<usize>) { in encrypt_less_safe()
107 counter: Counter, in encrypt_less_safe()
154 pub struct Counter([u32; 4]); struct
156 impl Counter { impl
204 fn into_counter_for_single_block_less_safe(self) -> Counter { in into_counter_for_single_block_less_safe()
260 f: impl for<'k, 'i> Fn(&'k Key, Counter, &'i mut [u8], RangeFrom<usize>), in chacha20_test() argument
305 f: &impl for<'k, 'i> Fn(&'k Key, Counter, &'i mut [u8], RangeFrom<usize>), in chacha20_test_case_inner() argument
Daes.rs103 ivec: &Counter,
108 ctr: &mut Counter,
214 ctr: &mut Counter, in ctr32_encrypt_within()
326 pub(super) struct Counter([BigEndian<u32>; 4]); struct
328 impl Counter { implementation
/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/cronet/stable/third_party/libc++/src/test/std/containers/container.adaptors/flat.map/flat.map.erasure/
Derase_if_exceptions.pass.cpp31 struct Counter { struct
42 Counter g_counter = {0, 0, 0}; argument
/external/cronet/tot/third_party/libc++/src/test/std/containers/container.adaptors/flat.map/flat.map.erasure/
Derase_if_exceptions.pass.cpp31 struct Counter { struct
42 Counter g_counter = {0, 0, 0}; argument
/external/eigen/unsupported/test/
Dcxx11_tensor_thread_local.cpp16 struct Counter { struct
31 void operator()(Counter& counter) { in operator ()() argument
/external/rust/android-crates-io/crates/crossbeam-channel/src/
Dcounter.rs10 struct Counter<C> { struct
26 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() argument
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/rust/android-crates-io/crates/textdistance/src/
Dcounter.rs6 pub struct Counter<K> { struct
10 impl<K> Counter<K> impl
/external/llvm/docs/
DCoverageMappingFormat.rst457 Counter section in Encoding
467 .. _counter-tag:
469 Tag:
498 Counter Expressions argument
585 .. _source range:
/external/tensorflow/tensorflow/python/data/experimental/ops/
Dcounter.py72 Counter = CounterV2 variable
74 Counter = CounterV1 variable
/external/rust/android-crates-io/crates/vulkano/src/pipeline/
Dlayout.rs1177 struct Counter { struct
1187 impl Counter { argument
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
DRepresentIterableTest.java50 private class Counter implements Iterator<Integer> { class in RepresentIterableTest
55 public Counter(int max) { in Counter() method in RepresentIterableTest.Counter
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h96 struct Counter { struct
99 enum CounterKind { Zero, CounterValueReference, Expression }; argument
102 static const unsigned EncodingCounterTagAndExpansionRegionTagBits = argument
109 Counter(CounterKind Kind, unsigned ID) : Kind(Kind), ID(ID) {} in Counter() argument
114 CounterKind getKind() const { return Kind; } in getKind() argument
120 unsigned getCounterID() const { return ID; } in getCounterID() argument
124 friend bool operator==(const Counter &LHS, const Counter &RHS) { argument
137 static Counter getZero() { return Counter(); } in getZero() argument
140 static Counter getCounter(unsigned CounterId) { in getCounter() argument
146 static Counter getExpression(unsigned ExpressionId) { in getExpression() argument
/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/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/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/perfetto/src/trace_processor/perfetto_sql/intrinsics/operators/
Dcounter_mipmap_operator.h55 struct Counter { struct
56 double min;
57 double max;
/external/armnn/profiling/common/include/
DCounter.hpp17 class Counter final class
21 Counter(const std::string& backendId, in Counter() function in arm::pipe::Counter
/external/pigweed/pw_async2/examples/
Dcount.cc47 class Counter { class
50 Counter(Dispatcher& dispatcher, in Counter() function in __anon308db5ab0111::Counter

12345678