Lines Matching defs:hashTable
663 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } in LZ4_clearHash() local
664 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local
665 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash() local
676 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash() local
677 …case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; ret… in LZ4_putIndexOnHash() local
688 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash() local
689 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash() local
690 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash() local
710 const U32* const hashTable = (const U32*) tableBase; in LZ4_getIndexOnHash() local
715 const U16* const hashTable = (const U16*) tableBase; in LZ4_getIndexOnHash() local
724 …if (tableType == byPtr) { const BYTE* const* hashTable = (const BYTE* const*) tableBase; return ha… in LZ4_getPositionOnHash() local
725 …if (tableType == byU32) { const U32* const hashTable = (const U32*) tableBase; return hashTable[h]… in LZ4_getPositionOnHash() local
726 …{ const U16* const hashTable = (const U16*) tableBase; return hashTable[h] + srcBase; } /* defau… in LZ4_getPositionOnHash() local