Lines Matching refs:ImtConflictTable
6653 ImtConflictTable* current_table = conflict_method->GetImtConflictTable(kRuntimePointerSize); in AddMethodToConflictTable()
6678 ImtConflictTable::ComputeSizeWithOneMoreEntry(current_table, image_pointer_size_), in AddMethodToConflictTable()
6684 ImtConflictTable* new_table = new (data) ImtConflictTable(current_table, in AddMethodToConflictTable()
6769 ImtConflictTable* table1 = method->GetImtConflictTable(image_pointer_size_); in FillIMTAndConflictTables()
6770 ImtConflictTable* table2 = super_method->GetImtConflictTable(image_pointer_size_); in FillIMTAndConflictTables()
6789 ImtConflictTable* ClassLinker::CreateImtConflictTable(size_t count, in CreateImtConflictTable()
6793 ImtConflictTable::ComputeSize(count, image_pointer_size), in CreateImtConflictTable()
6795 return (data != nullptr) ? new (data) ImtConflictTable(count, image_pointer_size) : nullptr; in CreateImtConflictTable()
6798 ImtConflictTable* ClassLinker::CreateImtConflictTable(size_t count, LinearAlloc* linear_alloc) { in CreateImtConflictTable()
6863 ImtConflictTable* new_table = CreateImtConflictTable(conflicts, linear_alloc); in FillIMTFromIfTable()
6900 ImtConflictTable* table = imt[imt_index]->GetImtConflictTable(image_pointer_size_); in FillIMTFromIfTable()