Lines Matching refs:LengthPrefixedArray
3602 LengthPrefixedArray<ArtField>* ClassLinker::AllocArtFieldArray(Thread* self, in AllocArtFieldArray()
3610 size_t storage_size = LengthPrefixedArray<ArtField>::ComputeSize(length); in AllocArtFieldArray()
3612 auto* ret = new(array_storage) LengthPrefixedArray<ArtField>(length); in AllocArtFieldArray()
3618 LengthPrefixedArray<ArtMethod>* ClassLinker::AllocArtMethodArray(Thread* self, in AllocArtMethodArray()
3627 LengthPrefixedArray<ArtMethod>::ComputeSize(length, method_size, method_alignment); in AllocArtMethodArray()
3629 auto* ret = new (array_storage) LengthPrefixedArray<ArtMethod>(length); in AllocArtMethodArray()
3679 LengthPrefixedArray<ArtField>* sfields = AllocArtFieldArray(self, in LoadClass()
3682 LengthPrefixedArray<ArtField>* ifields = AllocArtFieldArray(self, in LoadClass()
4403 LengthPrefixedArray<ArtMethod>* new_methods) { in UpdateClassMethods()
4953 LengthPrefixedArray<ArtField>* sfields = AllocArtFieldArray(self, allocator, num_fields); in CreateProxyClass()
5021 LengthPrefixedArray<ArtMethod>* proxy_class_methods = AllocArtMethodArray( in CreateProxyClass()
7716 void ClobberOldMethods(LengthPrefixedArray<ArtMethod>* old_methods, in ClobberOldMethods()
7717 LengthPrefixedArray<ArtMethod>* methods) { in ClobberOldMethods()
7728 const size_t old_size = LengthPrefixedArray<ArtMethod>::ComputeSize(old_methods->size(), in ClobberOldMethods()
7901 LengthPrefixedArray<ArtMethod>* old_methods = klass_->GetMethodsPtr(); in ReallocMethods()
7908 const size_t old_size = LengthPrefixedArray<ArtMethod>::ComputeSize(old_method_count, in ReallocMethods()
7911 const size_t new_size = LengthPrefixedArray<ArtMethod>::ComputeSize(new_method_count, in ReallocMethods()
7915 auto* methods = reinterpret_cast<LengthPrefixedArray<ArtMethod>*>( in ReallocMethods()
8358 LengthPrefixedArray<ArtMethod>* old_methods = kIsDebugBuild ? klass->GetMethodsPtr() : nullptr; in LinkInterfaceMethods()
8360 LengthPrefixedArray<ArtMethod>* methods = kIsDebugBuild ? klass->GetMethodsPtr() : nullptr; in LinkInterfaceMethods()
8575 LengthPrefixedArray<ArtField>* const fields = is_static ? klass->GetSFieldsPtr() : in LinkFields()