Lines Matching refs:hashTable

959         const BYTE **hashTable = (const BYTE **)tableBase;  in LZ4_clearHash()  local
960 hashTable[h] = NULL; in LZ4_clearHash()
965 U32 *hashTable = (U32 *)tableBase; in LZ4_clearHash() local
966 hashTable[h] = 0; in LZ4_clearHash()
971 U16 *hashTable = (U16 *)tableBase; in LZ4_clearHash() local
972 hashTable[h] = 0; in LZ4_clearHash()
991 U32 *hashTable = (U32 *)tableBase; in LZ4_putIndexOnHash() local
992 hashTable[h] = idx; in LZ4_putIndexOnHash()
997 U16 *hashTable = (U16 *)tableBase; in LZ4_putIndexOnHash() local
999 hashTable[h] = (U16)idx; in LZ4_putIndexOnHash()
1018 const BYTE **hashTable = (const BYTE **)tableBase; in LZ4_putPositionOnHash() local
1019 hashTable[h] = p; in LZ4_putPositionOnHash()
1024 U32 *hashTable = (U32 *)tableBase; in LZ4_putPositionOnHash() local
1025 hashTable[h] = (U32)(p - srcBase); in LZ4_putPositionOnHash()
1030 U16 *hashTable = (U16 *)tableBase; in LZ4_putPositionOnHash() local
1031 hashTable[h] = (U16)(p - srcBase); in LZ4_putPositionOnHash()
1054 const U32 *const hashTable = (const U32 *)tableBase; in LZ4_getIndexOnHash() local
1056 return hashTable[h]; in LZ4_getIndexOnHash()
1060 const U16 *const hashTable = (const U16 *)tableBase; in LZ4_getIndexOnHash() local
1062 return hashTable[h]; in LZ4_getIndexOnHash()
1072 const BYTE *const *hashTable = (const BYTE *const *)tableBase; in LZ4_getPositionOnHash() local
1073 return hashTable[h]; in LZ4_getPositionOnHash()
1077 const U32 *const hashTable = (const U32 *)tableBase; in LZ4_getPositionOnHash() local
1078 return hashTable[h] + srcBase; in LZ4_getPositionOnHash()
1081 const U16 *const hashTable = (const U16 *)tableBase; in LZ4_getPositionOnHash() local
1082 return hashTable[h] + srcBase; in LZ4_getPositionOnHash()
1110 MEM_INIT(cctx->hashTable, 0, LZ4_HASHTABLESIZE); in LZ4_prepareTable()
1225 LZ4_putPosition(ip, cctx->hashTable, tableType, base); in LZ4_compress_generic_validated()
1253 match = LZ4_getPositionOnHash(h, cctx->hashTable, tableType, base); in LZ4_compress_generic_validated()
1255 LZ4_putPositionOnHash(ip, h, cctx->hashTable, tableType, base); in LZ4_compress_generic_validated()
1269 U32 matchIndex = LZ4_getIndexOnHash(h, cctx->hashTable, tableType); in LZ4_compress_generic_validated()
1286 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic_validated()
1317 LZ4_putIndexOnHash(current, h, cctx->hashTable, tableType); in LZ4_compress_generic_validated()
1464 LZ4_clearHash(h, cctx->hashTable, tableType); in LZ4_compress_generic_validated()
1501 LZ4_putPosition(ip - 2, cctx->hashTable, tableType, base); in LZ4_compress_generic_validated()
1507 match = LZ4_getPosition(ip, cctx->hashTable, tableType, base); in LZ4_compress_generic_validated()
1508 LZ4_putPosition(ip, cctx->hashTable, tableType, base); in LZ4_compress_generic_validated()
1521 U32 matchIndex = LZ4_getIndexOnHash(h, cctx->hashTable, tableType); in LZ4_compress_generic_validated()
1528 matchIndex = LZ4_getIndexOnHash(h, dictCtx->hashTable, byU32); in LZ4_compress_generic_validated()
1556 LZ4_putIndexOnHash(current, h, cctx->hashTable, tableType); in LZ4_compress_generic_validated()
1943 LZ4_putPosition(p, dict->hashTable, tableType, base); in LZ4_loadDict()
1992 if (LZ4_dict->hashTable[i] < delta) in LZ4_renormDictT()
1993 LZ4_dict->hashTable[i] = 0; in LZ4_renormDictT()
1995 LZ4_dict->hashTable[i] -= delta; in LZ4_renormDictT()