Home
last modified time | relevance | path

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

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