Home
last modified time | relevance | path

Searched refs:bytes_used_ (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dcounting_allocator.h44 explicit CountingAllocator(int64_t* bytes_used) : bytes_used_(bytes_used) {} in CountingAllocator()
46 : bytes_used_(bytes_used), instance_count_(instance_count) {} in CountingAllocator()
50 : bytes_used_(x.bytes_used_), instance_count_(x.instance_count_) {} in CountingAllocator()
57 if (bytes_used_ != nullptr) {
58 *bytes_used_ += n * sizeof(T);
66 if (bytes_used_ != nullptr) { in deallocate()
67 *bytes_used_ -= n * sizeof(T); in deallocate()
97 return a.bytes_used_ == b.bytes_used_ &&
106 int64_t* bytes_used_ = nullptr; variable
/third_party/abseil-cpp/absl/container/internal/
Dcounting_allocator.h44 explicit CountingAllocator(int64_t* bytes_used) : bytes_used_(bytes_used) {} in CountingAllocator()
46 : bytes_used_(bytes_used), instance_count_(instance_count) {} in CountingAllocator()
50 : bytes_used_(x.bytes_used_), instance_count_(x.instance_count_) {} in CountingAllocator()
57 if (bytes_used_ != nullptr) {
58 *bytes_used_ += n * sizeof(T);
66 if (bytes_used_ != nullptr) { in deallocate()
67 *bytes_used_ -= n * sizeof(T); in deallocate()
97 return a.bytes_used_ == b.bytes_used_ &&
106 int64_t* bytes_used_ = nullptr; variable
/third_party/abseil-cpp/absl/container/
Dbtree_test.cc661 : Base(other.bytes_used_) {} in PropagatingCountingAlloc()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
Dbtree_test.cc662 : Base(other.bytes_used_) {} in PropagatingCountingAlloc()