Lines Matching refs:tableBase

793 LZ4_FORCE_INLINE void LZ4_clearHash(U32 h, void* tableBase, tableType_t const tableType)  in LZ4_clearHash()  argument
799 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = NULL; return; } in LZ4_clearHash()
800 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash()
801 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = 0; return; } in LZ4_clearHash()
805 LZ4_FORCE_INLINE void LZ4_putIndexOnHash(U32 idx, U32 h, void* tableBase, tableType_t const tableTy… in LZ4_putIndexOnHash() argument
812 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = idx; return; } in LZ4_putIndexOnHash()
813 …case byU16: { U16* hashTable = (U16*) tableBase; assert(idx < 65536); hashTable[h] = (U16)idx; ret… in LZ4_putIndexOnHash()
819 void* tableBase, tableType_t const tableType) in LZ4_putPositionOnHash() argument
821 const BYTE** const hashTable = (const BYTE**)tableBase; in LZ4_putPositionOnHash()
826 LZ4_FORCE_INLINE void LZ4_putPosition(const BYTE* p, void* tableBase, tableType_t tableType) in LZ4_putPosition() argument
829 LZ4_putPositionOnHash(p, h, tableBase, tableType); in LZ4_putPosition()
838 LZ4_FORCE_INLINE U32 LZ4_getIndexOnHash(U32 h, const void* tableBase, tableType_t tableType) in LZ4_getIndexOnHash() argument
842 const U32* const hashTable = (const U32*) tableBase; in LZ4_getIndexOnHash()
847 const U16* const hashTable = (const U16*) tableBase; in LZ4_getIndexOnHash()
854 static const BYTE* LZ4_getPositionOnHash(U32 h, const void* tableBase, tableType_t tableType) in LZ4_getPositionOnHash() argument
857 { const BYTE* const* hashTable = (const BYTE* const*) tableBase; return hashTable[h]; } in LZ4_getPositionOnHash()
862 const void* tableBase, tableType_t tableType) in LZ4_getPosition() argument
865 return LZ4_getPositionOnHash(h, tableBase, tableType); in LZ4_getPosition()