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

  /external/webkit/JavaScriptCore/runtime/
JSArray.cpp 139 m_vectorLength = initialCapacity;
151 m_vectorLength = initialCapacity;
173 m_vectorLength = initialCapacity;
208 if (i < m_vectorLength) {
254 if (i < m_vectorLength) {
306 if (i < m_vectorLength) {
373 for (unsigned j = max(m_vectorLength, MIN_SPARSE_ARRAY_INDEX); j < newVectorLength; ++j)
396 unsigned vectorLength = m_vectorLength;
412 m_vectorLength = newVectorLength;
441 if (i < m_vectorLength) {
    [all...]
JSArray.h 66 bool canGetIndex(unsigned i) { return i < m_vectorLength && m_storage->m_vector[i]; }
73 bool canSetIndex(unsigned i) { return i < m_vectorLength; }
120 unsigned m_vectorLength;
149 unsigned usedVectorLength = std::min(storage->m_length, m_vectorLength);
  /external/webkit/JavaScriptCore/jit/
JITPropertyAccess.cpp 284 addSlowCase(branch32(AboveOrEqual, regT2, Address(regT0, OBJECT_OFFSETOF(JSArray, m_vectorLength))));
323 addSlowCase(branch32(AboveOrEqual, regT2, Address(regT0, OBJECT_OFFSETOF(JSArray, m_vectorLength))));
    [all...]

Completed in 111 milliseconds