Home
last modified time | relevance | path

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

/openbmc/linux/lib/lz4/
H A Dlz4_compress.c96 const BYTE *srcBase) in LZ4_putPositionOnHash() argument
110 hashTable[h] = (U32)(p - srcBase); in LZ4_putPositionOnHash()
117 hashTable[h] = (U16)(p - srcBase); in LZ4_putPositionOnHash()
127 const BYTE *srcBase) in LZ4_putPosition() argument
131 LZ4_putPositionOnHash(p, h, tableBase, tableType, srcBase); in LZ4_putPosition()
138 const BYTE *srcBase) in LZ4_getPositionOnHash() argument
149 return hashTable[h] + srcBase; in LZ4_getPositionOnHash()
156 return hashTable[h] + srcBase; in LZ4_getPositionOnHash()
164 const BYTE *srcBase) in LZ4_getPosition() argument
168 return LZ4_getPositionOnHash(h, tableBase, tableType, srcBase); in LZ4_getPosition()