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

  /external/webkit/JavaScriptCore/runtime/
PropertyMapHashTable.h 60 unsigned sizeMask;
Structure.cpp 307 unsigned entryIndex = m_propertyTable->entryIndices[i & m_propertyTable->sizeMask];
328 entryIndex = m_propertyTable->entryIndices[i & m_propertyTable->sizeMask];
660 unsigned entryIndex = m_propertyTable->entryIndices[i & m_propertyTable->sizeMask];
684 entryIndex = m_propertyTable->entryIndices[i & m_propertyTable->sizeMask];
713 unsigned entryIndex = m_propertyTable->entryIndices[i & m_propertyTable->sizeMask];
736 entryIndex = m_propertyTable->entryIndices[i & m_propertyTable->sizeMask];
786 unsigned entryIndex = m_propertyTable->entryIndices[i & m_propertyTable->sizeMask];
826 m_propertyTable->entryIndices[i & m_propertyTable->sizeMask] = entryIndex;
880 entryIndex = m_propertyTable->entryIndices[i & m_propertyTable->sizeMask];
904 m_propertyTable->entryIndices[i & m_propertyTable->sizeMask] = deletedSentinelIndex
    [all...]
Structure.h 246 unsigned entryIndex = m_propertyTable->entryIndices[i & m_propertyTable->sizeMask];
266 entryIndex = m_propertyTable->entryIndices[i & m_propertyTable->sizeMask];
  /external/webkit/JavaScriptCore/wtf/
HashTable.h 481 int sizeMask = m_tableSizeMask;
484 int i = h & sizeMask;
517 i = (i + k) & sizeMask;
530 int sizeMask = m_tableSizeMask;
532 int i = h & sizeMask;
569 i = (i + k) & sizeMask;
582 int sizeMask = m_tableSizeMask;
584 int i = h & sizeMask;
621 i = (i + k) & sizeMask;
642 int sizeMask = m_tableSizeMask
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentHashMap.java 478 int sizeMask = newTable.length - 1;
486 int idx = e.hash & sizeMask;
499 int k = last.hash & sizeMask;
509 int k = p.hash & sizeMask;
    [all...]

Completed in 121 milliseconds