Home | History | Annotate | Download | only in runtime

Lines Matching refs:propertyStorageCapacity

288     ASSERT(m_structure->propertyStorageCapacity() == inlineStorageCapacity);
331 return (propertyStorageCapacity() == JSObject::inlineStorageCapacity);
449 size_t currentCapacity = m_structure->propertyStorageCapacity();
451 if (currentCapacity != m_structure->propertyStorageCapacity())
452 allocatePropertyStorage(currentCapacity, m_structure->propertyStorageCapacity());
454 ASSERT(offset < m_structure->propertyStorageCapacity());
463 size_t currentCapacity = m_structure->propertyStorageCapacity();
465 if (currentCapacity != structure->propertyStorageCapacity())
466 allocatePropertyStorage(currentCapacity, structure->propertyStorageCapacity());
468 ASSERT(offset < structure->propertyStorageCapacity());
507 if (currentCapacity != structure->propertyStorageCapacity())
508 allocatePropertyStorage(currentCapacity, structure->propertyStorageCapacity());
510 ASSERT(offset < structure->propertyStorageCapacity());
559 size_t currentCapacity = m_structure->propertyStorageCapacity();
561 if (currentCapacity != m_structure->propertyStorageCapacity())
562 allocatePropertyStorage(currentCapacity, m_structure->propertyStorageCapacity());
568 size_t currentCapacity = m_structure->propertyStorageCapacity();
570 if (currentCapacity != m_structure->propertyStorageCapacity())
571 allocatePropertyStorage(currentCapacity, m_structure->propertyStorageCapacity());
577 if (m_structure->propertyStorageCapacity() != newStructure->propertyStorageCapacity())
578 allocatePropertyStorage(m_structure->propertyStorageCapacity(), newStructure->propertyStorageCapacity());