Home
last modified time | relevance | path

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

/external/webkit/JavaScriptCore/runtime/
DStructure.cpp62 static const unsigned newTableSize = 16; variable
242 return newTableSize; in sizeForKeyCount()
245 return newTableSize; in sizeForKeyCount()
856 ASSERT(sizeForKeyCount(7) == newTableSize); in createPropertyMapHashTable()
857 createPropertyMapHashTable(newTableSize); in createPropertyMapHashTable()
860 void Structure::createPropertyMapHashTable(unsigned newTableSize) in createPropertyMapHashTable() argument
863 ASSERT(isPowerOf2(newTableSize)); in createPropertyMapHashTable()
867 …_cast<PropertyMapHashTable*>(fastZeroedMalloc(PropertyMapHashTable::allocationSize(newTableSize))); in createPropertyMapHashTable()
868 m_propertyTable->size = newTableSize; in createPropertyMapHashTable()
869 m_propertyTable->sizeMask = newTableSize - 1; in createPropertyMapHashTable()
[all …]
DStructure.h120 void rehashPropertyMapHashTable(unsigned newTableSize);
122 void createPropertyMapHashTable(unsigned newTableSize);
/external/webkit/JavaScriptCore/wtf/
DHashTable.h372 void rehash(int newTableSize);
893 … void HashTable<Key, Value, Extractor, HashFunctions, Traits, KeyTraits>::rehash(int newTableSize)
905 m_tableSize = newTableSize;
906 m_tableSizeMask = newTableSize - 1;
907 m_table = allocateTable(newTableSize);