Home
last modified time | relevance | path

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

/external/u-boot/lib/
Dlz4.c74 int partialDecoding, /* full, partial */ in LZ4_decompress_generic() argument
101 …if ((partialDecoding) && (oexit> oend-MFLIMIT)) oexit = oend-MFLIMIT; /* t… in LZ4_decompress_generic()
130 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic()
133 if (partialDecoding) in LZ4_decompress_generic()
/external/lz4/lib/
Dlz4.c1410 earlyEnd_directive partialDecoding, /* full, partial */ in LZ4_decompress_generic() argument
1513 if (partialDecoding) { in LZ4_decompress_generic()
1523 if (!partialDecoding || (cpy == oend)) { in LZ4_decompress_generic()
1542 if (!partialDecoding) { in LZ4_decompress_generic()
1562 if (partialDecoding) length = MIN(length, (size_t)(oend-op)); in LZ4_decompress_generic()
1592 if (partialDecoding && (cpy > oend-MATCH_SAFEGUARD_DISTANCE)) { in LZ4_decompress_generic()