Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/subversion/subversion/libsvn_subr/lz4/
H A Dlz4.c441 case byPtr: { const BYTE** hashTable = (const BYTE**)tableBase; hashTable[h] = p; return; } in LZ4_putPositionOnHash()
442 case byU32: { U32* hashTable = (U32*) tableBase; hashTable[h] = (U32)(p-srcBase); return; } in LZ4_putPositionOnHash()
443 case byU16: { U16* hashTable = (U16*) tableBase; hashTable[h] = (U16)(p-srcBase); return; } in LZ4_putPositionOnHash()
447 FORCE_INLINE void LZ4_putPosition(const BYTE* p, void* tableBase, tableType_t tableType, const BYTE… in LZ4_putPosition() argument
450 LZ4_putPositionOnHash(p, h, tableBase, tableType, srcBase); in LZ4_putPosition()
453 static const BYTE* LZ4_getPositionOnHash(U32 h, void* tableBase, tableType_t tableType, const BYTE*… in LZ4_getPositionOnHash() argument
455 …if (tableType == byPtr) { const BYTE** hashTable = (const BYTE**) tableBase; return hashTable[h]; } in LZ4_getPositionOnHash()
456 …if (tableType == byU32) { const U32* const hashTable = (U32*) tableBase; return hashTable[h] + src… in LZ4_getPositionOnHash()
457 …{ const U16* const hashTable = (U16*) tableBase; return hashTable[h] + srcBase; } /* default, to… in LZ4_getPositionOnHash()
460 FORCE_INLINE const BYTE* LZ4_getPosition(const BYTE* p, void* tableBase, tableType_t tableType, con… in LZ4_getPosition() argument
[all …]
/freebsd-12.1/sys/contrib/zstd/contrib/seekable_format/
H A Dzstdseek_decompress.c297 const BYTE* tableBase = zs->inBuff + ZSTD_skippableHeaderSize; in ZSTD_seekable_loadSeekTable() local