Home
last modified time | relevance | path

Searched defs:CountingAllocator (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/libcxx/test/support/
H A Dcontrolled_allocators.hpp220 class CountingAllocator class
230 explicit CountingAllocator(AllocController& PP) : P(&PP) {} in CountingAllocator() function in CountingAllocator
232 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
236 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
241 CountingAllocator(CountingAllocator<U, ID> const& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function in CountingAllocator
246 CountingAllocator(CountingAllocator<U, ID>&& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function in CountingAllocator
285 class CountingAllocator<void, ID> class
296 explicit CountingAllocator(AllocController& PP) : P(&PP) {} in CountingAllocator() function in CountingAllocator
298 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
302 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function in CountingAllocator
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/test/support/
H A Dcontrolled_allocators.h33 class CountingAllocator; variable
236 explicit CountingAllocator(AllocController& PP) : P(&PP) {} in CountingAllocator() function
238 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function
242 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function
247 CountingAllocator(CountingAllocator<U, ID> const& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function
252 CountingAllocator(CountingAllocator<U, ID>&& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function
302 explicit CountingAllocator(AllocController& PP) : P(&PP) {} in CountingAllocator() function
304 CountingAllocator(CountingAllocator const& other) : P(other.P) { in CountingAllocator() function
308 CountingAllocator(CountingAllocator&& other) : P(other.P) { in CountingAllocator() function
313 CountingAllocator(CountingAllocator<U, ID> const& other) TEST_NOEXCEPT : P(other.P) { in CountingAllocator() function
[all …]
/aosp_15_r20/external/openscreen/third_party/abseil/src/absl/container/internal/
H A Dcounting_allocator.h44 explicit CountingAllocator(int64_t* bytes_used) : bytes_used_(bytes_used) {} in CountingAllocator() function
45 CountingAllocator(int64_t* bytes_used, int64_t* instance_count) in CountingAllocator() function
49 CountingAllocator(const CountingAllocator<U>& x) in CountingAllocator() function
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/container/internal/
H A Dcounting_allocator.h44 explicit CountingAllocator(int64_t* bytes_used) : bytes_used_(bytes_used) {} in CountingAllocator() function
45 CountingAllocator(int64_t* bytes_used, int64_t* instance_count) in CountingAllocator() function
49 CountingAllocator(const CountingAllocator<U>& x) in CountingAllocator() function
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/container/internal/
Dcounting_allocator.h44 explicit CountingAllocator(int64_t* bytes_used) : bytes_used_(bytes_used) {} in CountingAllocator() function
45 CountingAllocator(int64_t* bytes_used, int64_t* instance_count) in CountingAllocator() function
49 CountingAllocator(const CountingAllocator<U>& x) in CountingAllocator() function
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/absl/container/internal/
H A Dcounting_allocator.h44 explicit CountingAllocator(int64_t* bytes_used) : bytes_used_(bytes_used) {} in CountingAllocator() function
45 CountingAllocator(int64_t* bytes_used, int64_t* instance_count) in CountingAllocator() function
49 CountingAllocator(const CountingAllocator<U>& x) in CountingAllocator() function
/aosp_15_r20/external/angle/third_party/abseil-cpp/absl/container/internal/
H A Dtest_allocator.h48 explicit CountingAllocator(int64_t* bytes_used) : bytes_used_(bytes_used) {} in CountingAllocator() function
49 CountingAllocator(int64_t* bytes_used, int64_t* instance_count) in CountingAllocator() function
53 CountingAllocator(const CountingAllocator<U>& x) in CountingAllocator() function
/aosp_15_r20/external/cronet/third_party/abseil-cpp/absl/container/internal/
H A Dtest_allocator.h48 explicit CountingAllocator(int64_t* bytes_used) : bytes_used_(bytes_used) {} in CountingAllocator() function
49 CountingAllocator(int64_t* bytes_used, int64_t* instance_count) in CountingAllocator() function
53 CountingAllocator(const CountingAllocator<U>& x) in CountingAllocator() function
/aosp_15_r20/external/abseil-cpp/absl/container/internal/
H A Dtest_allocator.h48 explicit CountingAllocator(int64_t* bytes_used) : bytes_used_(bytes_used) {} in CountingAllocator() function
49 CountingAllocator(int64_t* bytes_used, int64_t* instance_count) in CountingAllocator() function
53 CountingAllocator(const CountingAllocator<U>& x) in CountingAllocator() function
/aosp_15_r20/external/cronet/net/third_party/quiche/src/quiche/common/
H A Dquiche_circular_deque_test.cc23 class CountingAllocator : public BaseAllocator<T> { class