Home
last modified time | relevance | path

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

/third_party/lz4/lib/
Dlz4.c1945 const BYTE* const lowPrefix, /* always <= dst, == dst when no prefix */ in LZ4_decompress_generic() argument
1977 assert(lowPrefix <= op); in LZ4_decompress_generic()
2041 …if ((checkOffset) && (unlikely(match + dictSize < lowPrefix))) { goto _output_error; } /* Error : … in LZ4_decompress_generic()
2052 if ((dict == withPrefix64k) || (match >= lowPrefix)) { in LZ4_decompress_generic()
2054 assert(match >= lowPrefix); in LZ4_decompress_generic()
2065 …if (checkOffset && (unlikely(match + dictSize < lowPrefix))) { goto _output_error; } /* Error : of… in LZ4_decompress_generic()
2067 if ((dict==usingExtDict) && (match < lowPrefix)) { in LZ4_decompress_generic()
2077 if (length <= (size_t)(lowPrefix-match)) { in LZ4_decompress_generic()
2079 LZ4_memmove(op, dictEnd - (lowPrefix-match), length); in LZ4_decompress_generic()
2083 size_t const copySize = (size_t)(lowPrefix - match); in LZ4_decompress_generic()
[all …]