Searched defs:max_size (Results 1 - 6 of 6) sorted by relevance

/art/openjdkjvmti/
H A Djvmti_allocator.h106 size_type max_size() const { function in class:openjdkjvmti::JvmtiAllocator
114 DCHECK_LE(n, max_size());
/art/runtime/base/
H A Darena_containers.h190 size_type max_size() const { function in class:art::ArenaAllocatorAdapter
199 DCHECK_LE(n, max_size());
H A Dscoped_arena_containers.h166 size_type max_size() const { function in class:art::ScopedArenaAllocatorAdapter
175 DCHECK_LE(n, max_size());
/art/compiler/utils/
H A Dswap_space.h171 size_type max_size() const { function in class:art::SwapAllocator
179 DCHECK_LE(n, max_size());
H A Dintrusive_forward_list.h176 size_t max_size() { return static_cast<size_t>(-1); } function in class:art::IntrusiveForwardList
/art/runtime/
H A Dreference_table.cc40 ReferenceTable::ReferenceTable(const char* name, size_t initial_size, size_t max_size) argument
41 : name_(name), max_size_(max_size) {
42 CHECK_LE(initial_size, max_size);

Completed in 231 milliseconds