Home
last modified time | relevance | path

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

/external/u-boot/lib/
Dlz4.c77 const BYTE* const lowPrefix, /* == dest if dict == noDict */ in LZ4_decompress_generic() argument
90 const BYTE* const lowLimit = lowPrefix - dictSize; in LZ4_decompress_generic()
171 if ((dict==usingExtDict) && (match < lowPrefix)) in LZ4_decompress_generic()
175 if (length <= (size_t)(lowPrefix-match)) in LZ4_decompress_generic()
178 match = dictEnd - (lowPrefix-match); in LZ4_decompress_generic()
184 size_t copySize = (size_t)(lowPrefix-match); in LZ4_decompress_generic()
188 if (copySize > (size_t)(op-lowPrefix)) /* overlap within current segment */ in LZ4_decompress_generic()
191 const BYTE* copyFrom = lowPrefix; in LZ4_decompress_generic()
196 memcpy(op, lowPrefix, copySize); in LZ4_decompress_generic()
/external/lz4/lib/
Dlz4.c1412 const BYTE* const lowPrefix, /* always <= dst, == dst when no prefix */ in LZ4_decompress_generic() argument
1438 assert(lowPrefix <= op); in LZ4_decompress_generic()
1480 && (dict==withPrefix64k || match >= lowPrefix) ) { in LZ4_decompress_generic()
1541 …if ((checkOffset) && (unlikely(match + dictSize < lowPrefix))) goto _output_error; /* Error : of… in LZ4_decompress_generic()
1560 if ((dict==usingExtDict) && (match < lowPrefix)) { in LZ4_decompress_generic()
1566 if (length <= (size_t)(lowPrefix-match)) { in LZ4_decompress_generic()
1568 memmove(op, dictEnd - (lowPrefix-match), length); in LZ4_decompress_generic()
1572 size_t const copySize = (size_t)(lowPrefix - match); in LZ4_decompress_generic()
1576 if (restSize > (size_t)(op - lowPrefix)) { /* overlap copy */ in LZ4_decompress_generic()
1578 const BYTE* copyFrom = lowPrefix; in LZ4_decompress_generic()
[all …]