Searched defs:hashTable (Results 1 – 4 of 4) sorted by relevance
148 uint32_t hashTable[LZ4HC_HASHTABLESIZE]; member165 unsigned int hashTable[LZ4HC_HASHTABLESIZE]; member
336 uint32_t hashTable[LZ4_HASH_SIZE_U32]; member354 unsigned int hashTable[LZ4_HASH_SIZE_U32]; member
431 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash() local432 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash() local433 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash() local445 …if (tableType == byPtr) { const BYTE** hashTable = (const BYTE**) tableBase; return hashTable[h]; } in LZ4_getPositionOnHash() local446 …if (tableType == byU32) { const U32* const hashTable = (U32*) tableBase; return hashTable[h] + src… in LZ4_getPositionOnHash() local447 …{ const U16* const hashTable = (U16*) tableBase; return hashTable[h] + srcBase; } /* default, to… in LZ4_getPositionOnHash() local
114 U32* const hashTable = hc4->hashTable; in LZ4HC_Insert() local