Lines Matching refs:hashTable
101 const BYTE **hashTable = (const BYTE **)tableBase; in LZ4_putPositionOnHash() local
103 hashTable[h] = p; in LZ4_putPositionOnHash()
108 U32 *hashTable = (U32 *) tableBase; in LZ4_putPositionOnHash() local
110 hashTable[h] = (U32)(p - srcBase); in LZ4_putPositionOnHash()
115 U16 *hashTable = (U16 *) tableBase; in LZ4_putPositionOnHash() local
117 hashTable[h] = (U16)(p - srcBase); in LZ4_putPositionOnHash()
141 const BYTE **hashTable = (const BYTE **) tableBase; in LZ4_getPositionOnHash() local
143 return hashTable[h]; in LZ4_getPositionOnHash()
147 const U32 * const hashTable = (U32 *) tableBase; in LZ4_getPositionOnHash() local
149 return hashTable[h] + srcBase; in LZ4_getPositionOnHash()
154 const U16 * const hashTable = (U16 *) tableBase; in LZ4_getPositionOnHash() local
156 return hashTable[h] + srcBase; in LZ4_getPositionOnHash()
240 LZ4_putPosition(ip, dictPtr->hashTable, tableType, base); in LZ4_compress_generic()
266 dictPtr->hashTable, in LZ4_compress_generic()
281 LZ4_putPositionOnHash(ip, h, dictPtr->hashTable, in LZ4_compress_generic()
398 LZ4_putPosition(ip - 2, dictPtr->hashTable, tableType, base); in LZ4_compress_generic()
401 match = LZ4_getPosition(ip, dictPtr->hashTable, in LZ4_compress_generic()
414 LZ4_putPosition(ip, dictPtr->hashTable, tableType, base); in LZ4_compress_generic()
564 LZ4_putPosition(ip, ctx->hashTable, tableType, base); in LZ4_compress_destSize_generic()
588 match = LZ4_getPositionOnHash(h, ctx->hashTable, in LZ4_compress_destSize_generic()
593 ctx->hashTable, tableType, in LZ4_compress_destSize_generic()
671 LZ4_putPosition(ip - 2, ctx->hashTable, tableType, base); in LZ4_compress_destSize_generic()
674 match = LZ4_getPosition(ip, ctx->hashTable, tableType, base); in LZ4_compress_destSize_generic()
675 LZ4_putPosition(ip, ctx->hashTable, tableType, base); in LZ4_compress_destSize_generic()
804 LZ4_putPosition(p, dict->hashTable, byU32, base); in LZ4_loadDict()
824 if (LZ4_dict->hashTable[i] < delta) in LZ4_renormDictT()
825 LZ4_dict->hashTable[i] = 0; in LZ4_renormDictT()
827 LZ4_dict->hashTable[i] -= delta; in LZ4_renormDictT()