Home
last modified time | relevance | path

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

/external/webkit/Source/JavaScriptCore/runtime/
DJSArray.cpp442 void* baseStorage = storage->m_allocBase; in putSlowCase() local
444 …if (!tryFastRealloc(baseStorage, storageSize(newVectorLength + m_indexBias)).getValue(baseStorage)… in putSlowCase()
449 …m_storage = reinterpret_cast_ptr<ArrayStorage*>(static_cast<char*>(baseStorage) + m_indexBias * si… in putSlowCase()
450 m_storage->m_allocBase = baseStorage; in putSlowCase()
595 void* baseStorage = storage->m_allocBase; in increaseVectorLength() local
597 …if (!tryFastRealloc(baseStorage, storageSize(newVectorLength + m_indexBias)).getValue(baseStorage)) in increaseVectorLength()
600 …storage = m_storage = reinterpret_cast_ptr<ArrayStorage*>(static_cast<char*>(baseStorage) + m_inde… in increaseVectorLength()
601 m_storage->m_allocBase = baseStorage; in increaseVectorLength()