OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kAllocatorTagCount
(Results
1 - 2
of
2
) sorted by null
/art/runtime/base/
allocator.cc
28
Atomic<uint64_t> TrackedAllocators::bytes_used_[
kAllocatorTagCount
];
29
Atomic<uint64_t> TrackedAllocators::max_bytes_used_[
kAllocatorTagCount
];
30
Atomic<uint64_t> TrackedAllocators::total_bytes_used_[
kAllocatorTagCount
];
82
for (size_t i = 0; i <
kAllocatorTagCount
; ++i) {
allocator.h
69
kAllocatorTagCount
, // Must always be last element.
87
static Atomic<uint64_t> bytes_used_[
kAllocatorTagCount
];
88
static Atomic<uint64_t> max_bytes_used_[
kAllocatorTagCount
];
89
static Atomic<uint64_t> total_bytes_used_[
kAllocatorTagCount
];
111
COMPILE_ASSERT(kTag <
kAllocatorTagCount
, must_be_less_than_count);
Completed in 889 milliseconds