Lines Matching refs:tableBase
947 LZ4_FORCE_INLINE void LZ4_clearHash(U32 h, void *tableBase, tableType_t const tableType) in LZ4_clearHash() argument
959 const BYTE **hashTable = (const BYTE **)tableBase; in LZ4_clearHash()
965 U32 *hashTable = (U32 *)tableBase; in LZ4_clearHash()
971 U16 *hashTable = (U16 *)tableBase; in LZ4_clearHash()
978 LZ4_FORCE_INLINE void LZ4_putIndexOnHash(U32 idx, U32 h, void *tableBase, tableType_t const tableTy… in LZ4_putIndexOnHash() argument
991 U32 *hashTable = (U32 *)tableBase; in LZ4_putIndexOnHash()
997 U16 *hashTable = (U16 *)tableBase; in LZ4_putIndexOnHash()
1006 void *tableBase, tableType_t const tableType, in LZ4_putPositionOnHash() argument
1018 const BYTE **hashTable = (const BYTE **)tableBase; in LZ4_putPositionOnHash()
1024 U32 *hashTable = (U32 *)tableBase; in LZ4_putPositionOnHash()
1030 U16 *hashTable = (U16 *)tableBase; in LZ4_putPositionOnHash()
1037 LZ4_FORCE_INLINE void LZ4_putPosition(const BYTE *p, void *tableBase, tableType_t tableType, const … in LZ4_putPosition() argument
1040 LZ4_putPositionOnHash(p, h, tableBase, tableType, srcBase); in LZ4_putPosition()
1049 LZ4_FORCE_INLINE U32 LZ4_getIndexOnHash(U32 h, const void *tableBase, tableType_t tableType) in LZ4_getIndexOnHash() argument
1054 const U32 *const hashTable = (const U32 *)tableBase; in LZ4_getIndexOnHash()
1060 const U16 *const hashTable = (const U16 *)tableBase; in LZ4_getIndexOnHash()
1068 static const BYTE *LZ4_getPositionOnHash(U32 h, const void *tableBase, tableType_t tableType, const… in LZ4_getPositionOnHash() argument
1072 const BYTE *const *hashTable = (const BYTE *const *)tableBase; in LZ4_getPositionOnHash()
1077 const U32 *const hashTable = (const U32 *)tableBase; in LZ4_getPositionOnHash()
1081 const U16 *const hashTable = (const U16 *)tableBase; in LZ4_getPositionOnHash()
1088 const void *tableBase, tableType_t tableType, in LZ4_getPosition() argument
1092 return LZ4_getPositionOnHash(h, tableBase, tableType, srcBase); in LZ4_getPosition()