Home
last modified time | relevance | path

Searched refs:number_of_all_descriptors (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/objects/
Ddescriptor-array.tq22 const number_of_all_descriptors: uint16;
27 descriptors[number_of_all_descriptors]: DescriptorEntry;
Ddescriptor-array-inl.h32 RELAXED_INT16_ACCESSORS(DescriptorArray, number_of_all_descriptors, in TQ_OBJECT_CONSTRUCTORS_IMPL()
41 return number_of_all_descriptors() - number_of_descriptors(); in TQ_OBJECT_CONSTRUCTORS_IMPL()
104 DCHECK_LE(descriptor, number_of_all_descriptors()); in GetDescriptorSlot()
222 DCHECK_LE(descriptor_number + 1, number_of_all_descriptors()); in Append()
Ddescriptor-array.h58 DECL_INT16_ACCESSORS(number_of_all_descriptors)
158 static constexpr int SizeFor(int number_of_all_descriptors) { in SizeFor() argument
159 return OffsetOfDescriptorAt(number_of_all_descriptors); in SizeFor()
Dmap-updater.cc516 DCHECK(new_descriptors->number_of_all_descriptors() > in BuildDescriptorArray()
517 target_descriptors->number_of_all_descriptors() || in BuildDescriptorArray()
Dobjects.cc2250 DescriptorArray::unchecked_cast(*this).number_of_all_descriptors()); in SizeFromMap()
4339 number_of_all_descriptors() * kEntrySize); in Initialize()
4473 if (number_of_all_descriptors() != other.number_of_all_descriptors()) { in IsEqualTo()
/external/v8/src/heap/
Dfactory-base.cc725 int number_of_all_descriptors = number_of_descriptors + slack; in NewDescriptorArray() local
727 DCHECK_LT(0, number_of_all_descriptors); in NewDescriptorArray()
728 int size = DescriptorArray::SizeFor(number_of_all_descriptors); in NewDescriptorArray()
Dmark-compact.cc2343 int old_nof_all_descriptors = array.number_of_all_descriptors(); in RightTrimDescriptorArray()
2369 descriptors.number_of_all_descriptors() - number_of_own_descriptors; in TrimDescriptorArray()
/external/v8/src/diagnostics/
Dobjects-debug.cc596 if (number_of_all_descriptors() == 0) { in DescriptorArrayVerify()
598 CHECK_EQ(0, number_of_all_descriptors()); in DescriptorArrayVerify()
602 CHECK_LT(0, number_of_all_descriptors()); in DescriptorArrayVerify()
603 CHECK_LE(number_of_descriptors(), number_of_all_descriptors()); in DescriptorArrayVerify()
/external/v8/src/profiler/
Dheap-snapshot-generator.cc1298 array.GetDescriptorSlot(array.number_of_all_descriptors())); in ExtractDescriptorArrayReferences()