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

  /external/webkit/JavaScriptCore/runtime/
JSObject.h 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());
    [all...]
Structure.h 104 unsigned propertyStorageCapacity() const { return m_propertyStorageCapacity; }
Structure.cpp 369 if (transition->propertyStorageSize() > transition->propertyStorageCapacity())
403 if (transition->propertyStorageSize() > transition->propertyStorageCapacity())
574 if (propertyStorageSize() > propertyStorageCapacity())
    [all...]
  /external/webkit/JavaScriptCore/jit/
JITPropertyAccess.cpp 568 bool willNeedStorageRealloc = oldStructure->propertyStorageCapacity() != newStructure->propertyStorageCapacity();
578 stubCall.addArgument(Imm32(oldStructure->propertyStorageCapacity()));
579 stubCall.addArgument(Imm32(newStructure->propertyStorageCapacity()));
    [all...]

Completed in 346 milliseconds