Searched defs:hashTable (Results 1 – 8 of 8) sorted by relevance
147 uint32_t hashTable[LZ4HC_HASHTABLESIZE]; member165 unsigned int hashTable[LZ4HC_HASHTABLESIZE]; member
498 uint32_t hashTable[LZ4_HASH_SIZE_U32]; member518 unsigned int hashTable[LZ4_HASH_SIZE_U32]; member
547 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash() local548 …case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; ret… in LZ4_putIndexOnHash() local559 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash() local560 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash() local561 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash() local581 const U32* const hashTable = (const U32*) tableBase; in LZ4_getIndexOnHash() local586 const U16* const hashTable = (const U16*) tableBase; in LZ4_getIndexOnHash() local595 …if (tableType == byPtr) { const BYTE* const* hashTable = (const BYTE* const*) tableBase; return ha… in LZ4_getPositionOnHash() local596 …if (tableType == byU32) { const U32* const hashTable = (const U32*) tableBase; return hashTable[h]… in LZ4_getPositionOnHash() local597 …{ const U16* const hashTable = (const U16*) tableBase; return hashTable[h] + srcBase; } /* defau… in LZ4_getPositionOnHash() local
116 U32* const hashTable = hc4->hashTable; in LZ4HC_Insert() local
121 void writeHashTable(uint32_t functionNumber, pathHashTable_t* hashTable) { in writeHashTable()160 pathHashTable_t* hashTable; in getPathCounter() local
306 @VisibleForTesting ValueEntry<K, V>[] hashTable; field in LinkedHashMultimap.ValueSet323 ValueEntry<K, V>[] hashTable = new ValueEntry[tableSize]; in ValueSet() local437 ValueEntry<K, V>[] hashTable = new ValueEntry[this.hashTable.length * 2]; in rehashIfNecessary() local
310 @VisibleForTesting ValueEntry<K, V>[] hashTable; field in LinkedHashMultimap.ValueSet327 ValueEntry<K, V>[] hashTable = new ValueEntry[tableSize]; in ValueSet() local441 ValueEntry<K, V>[] hashTable = new ValueEntry[this.hashTable.length * 2]; in rehashIfNecessary() local
211 static UHashtable* hashTable = NULL; variable