Searched refs:lowPrefix (Results 1 – 1 of 1) sorted by relevance
2226 const BYTE *const lowPrefix, /* always <= dst, == dst when no prefix */ in LZ4_decompress_generic() argument2261 assert(lowPrefix <= op); in LZ4_decompress_generic()2381 if ((checkOffset) && (unlikely(match + dictSize < lowPrefix))) in LZ4_decompress_generic()2409 if ((dict == withPrefix64k) || (match >= lowPrefix)) in LZ4_decompress_generic()2413 assert(match >= lowPrefix); in LZ4_decompress_generic()2426 if (checkOffset && (unlikely(match + dictSize < lowPrefix))) in LZ4_decompress_generic()2431 if ((dict == usingExtDict) && (match < lowPrefix)) in LZ4_decompress_generic()2446 if (length <= (size_t)(lowPrefix - match)) in LZ4_decompress_generic()2449 memmove(op, dictEnd - (lowPrefix - match), length); in LZ4_decompress_generic()2455 size_t const copySize = (size_t)(lowPrefix - match); in LZ4_decompress_generic()[all …]