Home
last modified time | relevance | path

Searched refs:max_count (Results 1 – 6 of 6) sorted by relevance

/art/runtime/
Dindirect_reference_table.cc66 IndirectReferenceTable::IndirectReferenceTable(size_t max_count, in IndirectReferenceTable() argument
72 max_entries_(max_count), in IndirectReferenceTable()
79 CHECK_LE(max_count, kMaxTableSizeInBytes / sizeof(IrtEntry)); in IndirectReferenceTable()
81 const size_t table_bytes = max_count * sizeof(IrtEntry); in IndirectReferenceTable()
Dindirect_reference_table.h233 IndirectReferenceTable(size_t max_count,
Dclass_linker.cc6553 const size_t max_count = num_virtual_methods + super_vtable_length; in LinkVirtualMethods() local
6558 vtable = hs.NewHandle(AllocPointerArray(self, max_count)); in LinkVirtualMethods()
6587 mirror::Array::CopyOf(super_vtable, self, max_count))); in LinkVirtualMethods()
6721 CHECK_LE(actual_count, max_count); in LinkVirtualMethods()
6722 if (actual_count < max_count) { in LinkVirtualMethods()
/art/tools/dexanalyze/
Ddexanalyze_bytecode.cc72 size_t max_count, in PrintMostUsed() argument
86 if (max_count > 0) {
90 --max_count;
/art/runtime/gc/
Dheap.h402 int32_t max_count,
410 int32_t max_count,
Dheap.cc1990 int32_t max_count, in GetInstances() argument
1992 DCHECK_GE(max_count, 0); in GetInstances()
1995 if (max_count == 0 || instances.size() < static_cast<size_t>(max_count)) { in GetInstances()
2005 int32_t max_count, in GetReferringObjects() argument
2041 ReferringObjectsFinder finder(scope, o, max_count, referring_objects); in GetReferringObjects()