Searched refs:lowPrefix (Results 1 – 1 of 1) sorted by relevance
75 const BYTE * const lowPrefix, in LZ4_decompress_generic() argument106 assert(lowPrefix <= op); in LZ4_decompress_generic()172 (dict == withPrefix64k || match >= lowPrefix)) { in LZ4_decompress_generic()296 if ((checkOffset) && (unlikely(match + dictSize < lowPrefix))) { in LZ4_decompress_generic()336 if ((dict == usingExtDict) && (match < lowPrefix)) { in LZ4_decompress_generic()344 if (length <= (size_t)(lowPrefix - match)) { in LZ4_decompress_generic()349 memmove(op, dictEnd - (lowPrefix - match), in LZ4_decompress_generic()357 size_t const copySize = (size_t)(lowPrefix - match); in LZ4_decompress_generic()362 if (restSize > (size_t)(op - lowPrefix)) { in LZ4_decompress_generic()365 const BYTE *copyFrom = lowPrefix; in LZ4_decompress_generic()[all …]