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