Searched refs:hashTable (Results 1 – 2 of 2) sorted by relevance
799 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } in LZ4_clearHash() local800 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local801 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local812 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash() local813 …case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; ret… in LZ4_putIndexOnHash() local821 const BYTE** const hashTable = (const BYTE**)tableBase; in LZ4_putPositionOnHash() local823 hashTable[h] = p; in LZ4_putPositionOnHash()842 const U32* const hashTable = (const U32*) tableBase; in LZ4_getIndexOnHash() local844 return hashTable[h]; in LZ4_getIndexOnHash()847 const U16* const hashTable = (const U16*) tableBase; in LZ4_getIndexOnHash() local[all …]
711 LZ4_u32 hashTable[LZ4_HASH_SIZE_U32]; member