Searched refs:lowPrefix (Results 1 – 1 of 1) sorted by relevance
76 const BYTE * const lowPrefix, in LZ4_decompress_generic() argument107 assert(lowPrefix <= op); in LZ4_decompress_generic()173 (dict == withPrefix64k || match >= lowPrefix)) { in LZ4_decompress_generic()289 if ((checkOffset) && (unlikely(match + dictSize < lowPrefix))) { in LZ4_decompress_generic()329 if ((dict == usingExtDict) && (match < lowPrefix)) { in LZ4_decompress_generic()337 if (length <= (size_t)(lowPrefix - match)) { in LZ4_decompress_generic()342 memmove(op, dictEnd - (lowPrefix - match), in LZ4_decompress_generic()350 size_t const copySize = (size_t)(lowPrefix - match); in LZ4_decompress_generic()355 if (restSize > (size_t)(op - lowPrefix)) { in LZ4_decompress_generic()358 const BYTE *copyFrom = lowPrefix; in LZ4_decompress_generic()[all …]