Searched refs:oend (Results 1 – 4 of 4) sorted by relevance
| /u-boot/lib/ |
| A D | lz4.c | 87 BYTE* const oend = op + outputSize; in LZ4_decompress_generic() local 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() 131 || ((!endOnInput) && (cpy>oend-COPYLENGTH))) in LZ4_decompress_generic() 173 …if (unlikely(op+length > oend-LASTLITERALS)) goto _output_error; /* doesn't respect parsing rest… in LZ4_decompress_generic() 217 if (unlikely(cpy>oend-12)) in LZ4_decompress_generic() 219 …if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be lit… in LZ4_decompress_generic() 220 if (op < oend-8) in LZ4_decompress_generic() 222 LZ4_wildCopy(op, match, oend-8); in LZ4_decompress_generic() 223 match += (oend-8) - op; in LZ4_decompress_generic() [all …]
|
| /u-boot/lib/zstd/ |
| A D | decompress.c | 877 BYTE *const oend_w = oend - WILDCOPY_OVERLENGTH; in ZSTD_execSequenceLast7() 882 if (oMatchEnd > oend) in ZSTD_execSequenceLast7() 1009 if (oMatchEnd > oend) in ZSTD_execSequence() 1070 if (oMatchEnd > oend - (16 - MINMATCH)) { in ZSTD_execSequence() 1089 BYTE *const oend = ostart + maxDstSize; in ZSTD_decompressSequences() local 1145 if (lastLLSize > (size_t)(oend - op)) in ZSTD_decompressSequences() 1265 if (oMatchEnd > oend) in ZSTD_execSequenceLong() 1325 if (oMatchEnd > oend - (16 - MINMATCH)) { in ZSTD_execSequenceLong() 1344 BYTE *const oend = ostart + maxDstSize; in ZSTD_decompressSequencesLong() local 1427 if (lastLLSize > (size_t)(oend - op)) in ZSTD_decompressSequencesLong() [all …]
|
| A D | huf_decompress.c | 172 BYTE *const oend = op + dstSize; in HUF_decompress1X2_usingDTable_internal() local 185 HUF_decodeStreamX2(op, &bitD, oend, dt, dtLog); in HUF_decompress1X2_usingDTable_internal() 226 BYTE *const oend = ostart + dstSize; in HUF_decompress4X2_usingDTable_internal() local 280 for (; (endSignal == BIT_DStream_unfinished) && (op4 < (oend - 7));) { in HUF_decompress4X2_usingDTable_internal() 313 HUF_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); in HUF_decompress4X2_usingDTable_internal() 639 BYTE *const oend = ostart + dstSize; in HUF_decompress1X4_usingDTable_internal() local 643 HUF_decodeStreamX4(ostart, &bitD, oend, dt, dtd.tableLog); in HUF_decompress1X4_usingDTable_internal() 685 BYTE *const oend = ostart + dstSize; in HUF_decompress4X4_usingDTable_internal() local 739 …for (; (endSignal == BIT_DStream_unfinished) & (op4 < (oend - (sizeof(bitD4.bitContainer) - 1)));)… in HUF_decompress4X4_usingDTable_internal() 773 HUF_decodeStreamX4(op4, &bitD4, oend, dt, dtLog); in HUF_decompress4X4_usingDTable_internal()
|
| A D | zstd_internal.h | 129 BYTE* const oend = op + length; in ZSTD_wildcopy() local 141 } while (op < oend); in ZSTD_wildcopy()
|
Completed in 14 milliseconds