Lines Matching refs:hashTable
431 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash() local
432 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash() local
433 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash() local
445 …if (tableType == byPtr) { const BYTE** hashTable = (const BYTE**) tableBase; return hashTable[h]; } in LZ4_getPositionOnHash() local
446 …if (tableType == byU32) { const U32* const hashTable = (U32*) tableBase; return hashTable[h] + src… in LZ4_getPositionOnHash() local
447 …{ const U16* const hashTable = (U16*) tableBase; return hashTable[h] + srcBase; } /* default, to… in LZ4_getPositionOnHash() local
510 LZ4_putPosition(ip, cctx->hashTable, tableType, base); in LZ4_compress_generic()
531 match = LZ4_getPositionOnHash(h, cctx->hashTable, tableType, base); in LZ4_compress_generic()
541 LZ4_putPositionOnHash(ip, h, cctx->hashTable, tableType, base); in LZ4_compress_generic()
614 LZ4_putPosition(ip-2, cctx->hashTable, tableType, base); in LZ4_compress_generic()
617 match = LZ4_getPosition(ip, cctx->hashTable, tableType, base); in LZ4_compress_generic()
626 LZ4_putPosition(ip, cctx->hashTable, tableType, base); in LZ4_compress_generic()
754 LZ4_putPosition(ip, ctx->hashTable, tableType, base); in LZ4_compress_destSize_generic()
775 match = LZ4_getPositionOnHash(h, ctx->hashTable, tableType, base); in LZ4_compress_destSize_generic()
777 LZ4_putPositionOnHash(ip, h, ctx->hashTable, tableType, base); in LZ4_compress_destSize_generic()
836 LZ4_putPosition(ip-2, ctx->hashTable, tableType, base); in LZ4_compress_destSize_generic()
839 match = LZ4_getPosition(ip, ctx->hashTable, tableType, base); in LZ4_compress_destSize_generic()
840 LZ4_putPosition(ip, ctx->hashTable, tableType, base); in LZ4_compress_destSize_generic()
960 LZ4_putPosition(p, dict->hashTable, byU32, base); in LZ4_loadDict()
977 if (LZ4_dict->hashTable[i] < delta) LZ4_dict->hashTable[i]=0; in LZ4_renormDictT()
978 else LZ4_dict->hashTable[i] -= delta; in LZ4_renormDictT()