• Home
  • Raw
  • Download

Lines Matching refs:LengthPrefixedArray

3591 LengthPrefixedArray<ArtField>* ClassLinker::AllocArtFieldArray(Thread* self,  in AllocArtFieldArray()
3599 size_t storage_size = LengthPrefixedArray<ArtField>::ComputeSize(length); in AllocArtFieldArray()
3601 auto* ret = new(array_storage) LengthPrefixedArray<ArtField>(length); in AllocArtFieldArray()
3607 LengthPrefixedArray<ArtMethod>* ClassLinker::AllocArtMethodArray(Thread* self, in AllocArtMethodArray()
3616 LengthPrefixedArray<ArtMethod>::ComputeSize(length, method_size, method_alignment); in AllocArtMethodArray()
3618 auto* ret = new (array_storage) LengthPrefixedArray<ArtMethod>(length); in AllocArtMethodArray()
3668 LengthPrefixedArray<ArtField>* sfields = AllocArtFieldArray(self, in LoadClass()
3671 LengthPrefixedArray<ArtField>* ifields = AllocArtFieldArray(self, in LoadClass()
4392 LengthPrefixedArray<ArtMethod>* new_methods) { in UpdateClassMethods()
4942 LengthPrefixedArray<ArtField>* sfields = AllocArtFieldArray(self, allocator, num_fields); in CreateProxyClass()
5010 LengthPrefixedArray<ArtMethod>* proxy_class_methods = AllocArtMethodArray( in CreateProxyClass()
7705 void ClobberOldMethods(LengthPrefixedArray<ArtMethod>* old_methods, in ClobberOldMethods()
7706 LengthPrefixedArray<ArtMethod>* methods) { in ClobberOldMethods()
7717 const size_t old_size = LengthPrefixedArray<ArtMethod>::ComputeSize(old_methods->size(), in ClobberOldMethods()
7890 LengthPrefixedArray<ArtMethod>* old_methods = klass_->GetMethodsPtr(); in ReallocMethods()
7897 const size_t old_size = LengthPrefixedArray<ArtMethod>::ComputeSize(old_method_count, in ReallocMethods()
7900 const size_t new_size = LengthPrefixedArray<ArtMethod>::ComputeSize(new_method_count, in ReallocMethods()
7904 auto* methods = reinterpret_cast<LengthPrefixedArray<ArtMethod>*>( in ReallocMethods()
8347 LengthPrefixedArray<ArtMethod>* old_methods = kIsDebugBuild ? klass->GetMethodsPtr() : nullptr; in LinkInterfaceMethods()
8349 LengthPrefixedArray<ArtMethod>* methods = kIsDebugBuild ? klass->GetMethodsPtr() : nullptr; in LinkInterfaceMethods()
8564 LengthPrefixedArray<ArtField>* const fields = is_static ? klass->GetSFieldsPtr() : in LinkFields()