Searched refs:tableType (Results 1 – 2 of 2) sorted by relevance
917 LZ4_FORCE_INLINE U32 LZ4_hash4(U32 sequence, tableType_t const tableType) in LZ4_hash4() argument919 if (tableType == byU16) in LZ4_hash4()925 LZ4_FORCE_INLINE U32 LZ4_hash5(U64 sequence, tableType_t const tableType) in LZ4_hash5() argument927 const U32 hashLog = (tableType == byU16) ? LZ4_HASHLOG + 1 : LZ4_HASHLOG; in LZ4_hash5()940 LZ4_FORCE_INLINE U32 LZ4_hashPosition(const void *const p, tableType_t const tableType) in LZ4_hashPosition() argument942 if ((sizeof(reg_t) == 8) && (tableType != byU16)) in LZ4_hashPosition()943 return LZ4_hash5(LZ4_read_ARCH(p), tableType); in LZ4_hashPosition()944 return LZ4_hash4(LZ4_read32(p), tableType); in LZ4_hashPosition()947 LZ4_FORCE_INLINE void LZ4_clearHash(U32 h, void *tableBase, tableType_t const tableType) in LZ4_clearHash() argument949 switch (tableType) in LZ4_clearHash()[all …]
586 LZ4_u32 tableType; member