HomeSort by relevance Sort by last modified time
    Searched refs:propertyStorageCapacity (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
JSObject.h 342 ASSERT(this->structure()->propertyStorageCapacity() == JSNonFinalObject_inlineStorageCapacity);
370 ASSERT(this->structure()->propertyStorageCapacity() == JSFinalObject_inlineStorageCapacity);
410 ASSERT(m_structure->propertyStorageCapacity() < baseExternalStorageCapacity);
463 return propertyStorageCapacity() < JSObject::baseExternalStorageCapacity;
593 size_t currentCapacity = m_structure->propertyStorageCapacity();
595 if (currentCapacity != m_structure->propertyStorageCapacity())
596 allocatePropertyStorage(currentCapacity, m_structure->propertyStorageCapacity());
598 ASSERT(offset < m_structure->propertyStorageCapacity());
607 size_t currentCapacity = m_structure->propertyStorageCapacity();
609 if (currentCapacity != structure->propertyStorageCapacity())
    [all...]
Structure.h 107 unsigned propertyStorageCapacity() const { return m_propertyStorageCapacity; }
Structure.cpp 342 if (transition->propertyStorageSize() > transition->propertyStorageCapacity())
370 if (transition->propertyStorageSize() > transition->propertyStorageCapacity())
593 if (propertyStorageSize() > propertyStorageCapacity())
  /external/webkit/Source/JavaScriptCore/jit/
JITPropertyAccess.cpp 591 bool willNeedStorageRealloc = oldStructure->propertyStorageCapacity() != newStructure->propertyStorageCapacity();
601 stubCall.addArgument(TrustedImm32(oldStructure->propertyStorageCapacity()));
602 stubCall.addArgument(TrustedImm32(newStructure->propertyStorageCapacity()));
    [all...]
JITPropertyAccess32_64.cpp 606 bool willNeedStorageRealloc = oldStructure->propertyStorageCapacity() != newStructure->propertyStorageCapacity();
616 stubCall.addArgument(TrustedImm32(oldStructure->propertyStorageCapacity()));
617 stubCall.addArgument(TrustedImm32(newStructure->propertyStorageCapacity()));
    [all...]

Completed in 63 milliseconds