Searched refs:kMaxChunkLists (Results 1 - 2 of 2) sorted by relevance

/art/runtime/
H A Dmonitor_pool.h200 static constexpr size_t kMaxChunkLists = 8; // Dictated by 3 bit index. Don't increase above 8. member in class:art::MonitorPool
201 static_assert(IsPowerOfTwo(kMaxChunkLists), "kMaxChunkLists must be power of 2");
202 static constexpr size_t kMaxListSize = kInitialChunkStorage << (kMaxChunkLists - 1);
224 uintptr_t* monitor_chunks_[kMaxChunkLists]; // uintptr_t is really a Monitor* .
H A Dmonitor_pool.cc33 for (size_t i = 0; i < kMaxChunkLists; ++i) {
48 CHECK_LT(current_chunk_list_index_, kMaxChunkLists) << "Out of space for inflated monitors";

Completed in 59 milliseconds