Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.c1663 const BYTE* const lowPrefix, /* always <= dst, == dst when no prefix */ in LZ4_decompress_generic() argument
1696 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 …]