Searched refs:lowPrefix (Results 1 – 1 of 1) sorted by relevance
1663 const BYTE* const lowPrefix, /* always <= dst, == dst when no prefix */ in LZ4_decompress_generic() argument1696 assert(lowPrefix <= op); in LZ4_decompress_generic()1769 …if ((checkOffset) && (unlikely(match + dictSize < lowPrefix))) { goto _output_error; } /* Error : … in LZ4_decompress_generic()1784 if ((dict == withPrefix64k) || (match >= lowPrefix)) { in LZ4_decompress_generic()1786 assert(match >= lowPrefix); in LZ4_decompress_generic()1797 …if ((checkOffset) && (unlikely(match + dictSize < lowPrefix))) { goto _output_error; } /* Error : … in LZ4_decompress_generic()1799 if ((dict==usingExtDict) && (match < lowPrefix)) { in LZ4_decompress_generic()1807 if (length <= (size_t)(lowPrefix-match)) { in LZ4_decompress_generic()1809 memmove(op, dictEnd - (lowPrefix-match), length); in LZ4_decompress_generic()1813 size_t const copySize = (size_t)(lowPrefix - match); in LZ4_decompress_generic()[all …]