Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4.c1099 const BYTE* const lowPrefix, /* == dest when no prefix */ in LZ4_decompress_generic() argument
1112 const BYTE* const lowLimit = lowPrefix - dictSize; in LZ4_decompress_generic()
1185 if ((dict==usingExtDict) && (match < lowPrefix)) { in LZ4_decompress_generic()
1188 if (length <= (size_t)(lowPrefix-match)) { in LZ4_decompress_generic()
1190 memmove(op, dictEnd - (lowPrefix-match), length); in LZ4_decompress_generic()
1194 size_t const copySize = (size_t)(lowPrefix-match); in LZ4_decompress_generic()
1198 if (restSize > (size_t)(op-lowPrefix)) { /* overlap copy */ in LZ4_decompress_generic()
1200 const BYTE* copyFrom = lowPrefix; in LZ4_decompress_generic()
1203 memcpy(op, lowPrefix, restSize); in LZ4_decompress_generic()