Home
last modified time | relevance | path

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

/external/webkit/JavaScriptCore/runtime/
DJSArray.cpp137 m_storage->m_vectorLength = initialCapacity; in JSArray()
151 m_storage->m_vectorLength = initialCapacity; in JSArray()
174 m_storage->m_vectorLength = initialCapacity; in JSArray()
208 if (i < storage->m_vectorLength) { in getOwnPropertySlot()
275 if (i < m_storage->m_vectorLength) { in put()
333 … for (unsigned j = max(storage->m_vectorLength, MIN_SPARSE_ARRAY_INDEX); j < newVectorLength; ++j) in putSlowCase()
357 unsigned vectorLength = storage->m_vectorLength; in putSlowCase()
375 storage->m_vectorLength = newVectorLength; in putSlowCase()
402 if (i < storage->m_vectorLength) { in deleteProperty()
443 unsigned usedVectorLength = min(storage->m_length, storage->m_vectorLength); in getPropertyNames()
[all …]
DJSArray.h32 unsigned m_vectorLength; member
/external/webkit/JavaScriptCore/jit/
DJITPropertyAccess.cpp308 …branch32(AboveOrEqual, regT2, Address(regT0, OBJECT_OFFSETOF(ArrayStorage, m_vectorLength)), callG… in emitSlow_op_get_by_val()
338 …Case(branch32(AboveOrEqual, regT2, Address(regT3, OBJECT_OFFSETOF(ArrayStorage, m_vectorLength)))); in emit_op_put_by_val()
1003 …Case(branch32(AboveOrEqual, regT1, Address(regT2, OBJECT_OFFSETOF(ArrayStorage, m_vectorLength))));
DJITOpcodes.cpp2732 …branch32(AboveOrEqual, regT1, Address(regT2, OBJECT_OFFSETOF(ArrayStorage, m_vectorLength)), begin…
/external/webkit/JavaScriptCore/
DChangeLog-2008-08-103261 arrays. Also updated for new location of m_vectorLength.
3262 (KJS::JSArray::getItem): Updated for new location of m_vectorLength.
3278 m_vectorLength.
3282 (KJS::JSArray::mark): Updated for new location of m_vectorLength.
3287 m_fastAccessCutoff and updated for the new location of m_vectorLength.
3290 Replaced m_vectorLength with m_fastAccessCutoff.