Home
last modified time | relevance | path

Searched refs:srcBase (Results 1 – 1 of 1) sorted by relevance

/lz4-3.4.0-2.7.6/lib/
Dlz4.c750 const BYTE* srcBase) in LZ4_putPositionOnHash() argument
756 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash()
757 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash()
761 …NE void LZ4_putPosition(const BYTE* p, void* tableBase, tableType_t tableType, const BYTE* srcBase) in LZ4_putPosition() argument
764 LZ4_putPositionOnHash(p, h, tableBase, tableType, srcBase); in LZ4_putPosition()
789 …TE* LZ4_getPositionOnHash(U32 h, const void* tableBase, tableType_t tableType, const BYTE* srcBase) in LZ4_getPositionOnHash() argument
792 …e == byU32) { const U32* const hashTable = (const U32*) tableBase; return hashTable[h] + srcBase; } in LZ4_getPositionOnHash()
793 …{ const U16* const hashTable = (const U16*) tableBase; return hashTable[h] + srcBase; } /* defau… in LZ4_getPositionOnHash()
799 const BYTE* srcBase) in LZ4_getPosition() argument
802 return LZ4_getPositionOnHash(h, tableBase, tableType, srcBase); in LZ4_getPosition()