Home
last modified time | relevance | path

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

/Linux-v4.19/lib/lz4/
Dlz4_decompress.c70 const BYTE * const lowPrefix, in LZ4_decompress_generic() argument
85 const BYTE * const lowLimit = lowPrefix - dictSize; in LZ4_decompress_generic()
233 if ((dict == usingExtDict) && (match < lowPrefix)) { in LZ4_decompress_generic()
239 if (length <= (size_t)(lowPrefix - match)) { in LZ4_decompress_generic()
244 memmove(op, dictEnd - (lowPrefix - match), in LZ4_decompress_generic()
252 size_t const copySize = (size_t)(lowPrefix - match); in LZ4_decompress_generic()
258 if (restSize > (size_t)(op - lowPrefix)) { in LZ4_decompress_generic()
261 const BYTE *copyFrom = lowPrefix; in LZ4_decompress_generic()
266 memcpy(op, lowPrefix, restSize); in LZ4_decompress_generic()