Lines Matching refs:LengthPrefixedArray

3789 LengthPrefixedArray<ArtField>* ClassLinker::AllocArtFieldArray(Thread* self,  in AllocArtFieldArray()
3797 size_t storage_size = LengthPrefixedArray<ArtField>::ComputeSize(length); in AllocArtFieldArray()
3799 auto* ret = new(array_storage) LengthPrefixedArray<ArtField>(length); in AllocArtFieldArray()
3805 LengthPrefixedArray<ArtMethod>* ClassLinker::AllocArtMethodArray(Thread* self, in AllocArtMethodArray()
3814 LengthPrefixedArray<ArtMethod>::ComputeSize(length, method_size, method_alignment); in AllocArtMethodArray()
3816 auto* ret = new (array_storage) LengthPrefixedArray<ArtMethod>(length); in AllocArtMethodArray()
3866 LengthPrefixedArray<ArtField>* sfields = AllocArtFieldArray(self, in LoadClass()
3869 LengthPrefixedArray<ArtField>* ifields = AllocArtFieldArray(self, in LoadClass()
4563 LengthPrefixedArray<ArtMethod>* new_methods) { in UpdateClassMethods()
5078 LengthPrefixedArray<ArtField>* sfields = AllocArtFieldArray(self, allocator, num_fields); in CreateProxyClass()
5146 LengthPrefixedArray<ArtMethod>* proxy_class_methods = AllocArtMethodArray( in CreateProxyClass()
7750 void ClobberOldMethods(LengthPrefixedArray<ArtMethod>* old_methods, in ClobberOldMethods()
7751 LengthPrefixedArray<ArtMethod>* methods) { in ClobberOldMethods()
7762 const size_t old_size = LengthPrefixedArray<ArtMethod>::ComputeSize(old_methods->size(), in ClobberOldMethods()
7935 LengthPrefixedArray<ArtMethod>* old_methods = klass_->GetMethodsPtr(); in ReallocMethods()
7942 const size_t old_size = LengthPrefixedArray<ArtMethod>::ComputeSize(old_method_count, in ReallocMethods()
7945 const size_t new_size = LengthPrefixedArray<ArtMethod>::ComputeSize(new_method_count, in ReallocMethods()
7949 auto* methods = reinterpret_cast<LengthPrefixedArray<ArtMethod>*>( in ReallocMethods()
8387 LengthPrefixedArray<ArtMethod>* old_methods = kIsDebugBuild ? klass->GetMethodsPtr() : nullptr; in LinkInterfaceMethods()
8389 LengthPrefixedArray<ArtMethod>* methods = kIsDebugBuild ? klass->GetMethodsPtr() : nullptr; in LinkInterfaceMethods()
8466 LengthPrefixedArray<ArtField>* const fields = is_static ? klass->GetSFieldsPtr() : in LinkFields()