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()297 if ((checkOffset) && (unlikely(match + dictSize < lowPrefix))) { in LZ4_decompress_generic()337 if ((dict == usingExtDict) && (match < lowPrefix)) { in LZ4_decompress_generic()345 if (length <= (size_t)(lowPrefix - match)) { in LZ4_decompress_generic()350 memmove(op, dictEnd - (lowPrefix - match), in LZ4_decompress_generic()358 size_t const copySize = (size_t)(lowPrefix - match); in LZ4_decompress_generic()363 if (restSize > (size_t)(op - lowPrefix)) { in LZ4_decompress_generic()366 const BYTE *copyFrom = lowPrefix; in LZ4_decompress_generic()[all …]