| /OK3568_Linux_fs/u-boot/lib/ |
| H A D | lz4.c | 88 BYTE* const oend = op + outputSize; in LZ4_decompress_generic() local 102 …if ((partialDecoding) && (oexit> oend-MFLIMIT)) oexit = oend-MFLIMIT; /* t… in LZ4_decompress_generic() 131 …if (((endOnInput) && ((cpy>(partialDecoding?oexit:oend-MFLIMIT)) || (ip+length>iend-(2+1+LASTLITER… in LZ4_decompress_generic() 132 || ((!endOnInput) && (cpy>oend-COPYLENGTH))) in LZ4_decompress_generic() 136 …if (cpy > oend) goto _output_error; /* Error : write attempt beyond end … in LZ4_decompress_generic() 141 …if ((!endOnInput) && (cpy != oend)) goto _output_error; /* Error : block decoding must stop … in LZ4_decompress_generic() 142 …if ((endOnInput) && ((ip+length != iend) || (cpy > oend))) goto _output_error; /* Error : input … in LZ4_decompress_generic() 174 …if (unlikely(op+length > oend-LASTLITERALS)) goto _output_error; /* doesn't respect parsing rest… in LZ4_decompress_generic() 218 if (unlikely(cpy>oend-12)) in LZ4_decompress_generic() 220 …if (cpy > oend-LASTLITERALS) goto _output_error; /* Error : last LASTLITERALS bytes must be lit… in LZ4_decompress_generic() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/sox/git/src/ |
| H A D | effects.c | 246 size_t idone = effp1->oend - effp1->obeg; in flow_effect() 247 size_t obeg = sox_globals.bufsiz - effp->oend; in flow_effect() 258 il_change ? chain->il_buf : effp->obuf + effp->oend, in flow_effect() 266 effp->obuf, sox_globals.bufsiz, effp->oend); in flow_effect() 292 obuf + f*flow_offs + effp->oend/effp->flows, in flow_effect() 310 effp->oend, effp->obuf + effp->oend); in flow_effect() 313 if (effp1->obeg == effp1->oend) in flow_effect() 314 effp1->obeg = effp1->oend = 0; in flow_effect() 315 else if (effp1->oend - effp1->obeg < effp->imin) { /* Need to refill? */ in flow_effect() 320 (effp1->oend - effp1->obeg)/effp->flows * sizeof(*effp1->obuf)); in flow_effect() [all …]
|
| H A D | sox.h | 1596 …size_t oend; /**< output buffer: one past valid data section (oend-obeg is … member
|
| /OK3568_Linux_fs/kernel/lib/lz4/ |
| H A D | lz4_decompress.c | 87 BYTE * const oend = op + outputSize; in LZ4_decompress_generic() local 100 const BYTE *const shortoend = oend - in LZ4_decompress_generic() 224 if (((endOnInput) && ((cpy > oend - MFLIMIT) in LZ4_decompress_generic() 226 || ((!endOnInput) && (cpy > oend - WILDCOPYLENGTH))) { in LZ4_decompress_generic() 228 if (cpy > oend) { in LZ4_decompress_generic() 233 cpy = oend; in LZ4_decompress_generic() 234 length = oend - op; in LZ4_decompress_generic() 247 && (cpy != oend)) { in LZ4_decompress_generic() 257 || (cpy > oend))) { in LZ4_decompress_generic() 279 if (!partialDecoding || (cpy == oend) || (ip >= (iend - 2))) in LZ4_decompress_generic() [all …]
|
| H A D | lz4hc_compress.c | 269 BYTE *oend) in LZ4HC_encodeSequence() argument 280 + length + (2 + 1 + LASTLITERALS)) > oend)) { in LZ4HC_encodeSequence() 308 + (1 + LASTLITERALS) > oend)) { in LZ4HC_encodeSequence() 355 BYTE * const oend = op + maxOutputSize; in LZ4HC_compress_generic() local 403 &anchor, ml, ref, limit, oend)) in LZ4HC_compress_generic() 469 ml, ref, limit, oend)) in LZ4HC_compress_generic() 473 ml2, ref2, limit, oend)) in LZ4HC_compress_generic() 499 ml, ref, limit, oend)) in LZ4HC_compress_generic() 540 ref, limit, oend)) in LZ4HC_compress_generic()
|
| H A D | lz4_compress.c | 539 BYTE * const oend = op + targetDstSize; in LZ4_compress_destSize_generic() local 694 + lastRunSize /* literals */ > oend) { in LZ4_compress_destSize_generic() 696 lastRunSize = (oend - op) - 1; in LZ4_compress_destSize_generic()
|
| /OK3568_Linux_fs/kernel/lib/zstd/ |
| H A D | huf_compress.c | 86 BYTE *const oend = ostart + dstSize; in HUF_compressWeights_wksp() local 128 CHECK_V_F(hSize, FSE_writeNCount(op, oend - op, norm, maxSymbolValue, tableLog)); in HUF_compressWeights_wksp() 135 CHECK_V_F(cSize, FSE_compress_usingCTable(op, oend - op, weightTable, wtSize, CTable)); in HUF_compressWeights_wksp() 542 BYTE *const oend = ostart + dstSize; in HUF_compress1X_usingCTable() local 551 size_t const initErr = BIT_initCStream(&bitC, op, oend - op); in HUF_compress1X_usingCTable() 587 BYTE *const oend = ostart + dstSize; in HUF_compress4X_usingCTable() local 597 CHECK_V_F(cSize, HUF_compress1X_usingCTable(op, oend - op, ip, segmentSize, CTable)); in HUF_compress4X_usingCTable() 606 CHECK_V_F(cSize, HUF_compress1X_usingCTable(op, oend - op, ip, segmentSize, CTable)); in HUF_compress4X_usingCTable() 615 CHECK_V_F(cSize, HUF_compress1X_usingCTable(op, oend - op, ip, segmentSize, CTable)); in HUF_compress4X_usingCTable() 624 CHECK_V_F(cSize, HUF_compress1X_usingCTable(op, oend - op, ip, iend - ip, CTable)); in HUF_compress4X_usingCTable() [all …]
|
| H A D | decompress.c | 880 size_t ZSTD_execSequenceLast7(BYTE *op, BYTE *const oend, seq_t sequence, const BYTE **litPtr, cons… in ZSTD_execSequenceLast7() argument 886 BYTE *const oend_w = oend - WILDCOPY_OVERLENGTH; in ZSTD_execSequenceLast7() 891 if (oMatchEnd > oend) in ZSTD_execSequenceLast7() 1007 size_t ZSTD_execSequence(BYTE *op, BYTE *const oend, seq_t sequence, const BYTE **litPtr, const BYT… in ZSTD_execSequence() argument 1013 BYTE *const oend_w = oend - WILDCOPY_OVERLENGTH; in ZSTD_execSequence() 1018 if (oMatchEnd > oend) in ZSTD_execSequence() 1023 return ZSTD_execSequenceLast7(op, oend, sequence, litPtr, litLimit, base, vBase, dictEnd); in ZSTD_execSequence() 1079 if (oMatchEnd > oend - (16 - MINMATCH)) { in ZSTD_execSequence() 1098 BYTE *const oend = ostart + maxDstSize; in ZSTD_decompressSequences() local 1133 …size_t const oneSeqSize = ZSTD_execSequence(op, oend, sequence, &litPtr, litEnd, base, vBase, dict… in ZSTD_decompressSequences() [all …]
|
| H A D | huf_decompress.c | 202 BYTE *const oend = op + dstSize; in HUF_decompress1X2_usingDTable_internal() local 215 HUF_decodeStreamX2(op, &bitD, oend, dt, dtLog); in HUF_decompress1X2_usingDTable_internal() 256 BYTE *const oend = ostart + dstSize; in HUF_decompress4X2_usingDTable_internal() local 310 for (; (endSignal == BIT_DStream_unfinished) && (op4 < (oend - 7));) { in HUF_decompress4X2_usingDTable_internal() 343 HUF_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); in HUF_decompress4X2_usingDTable_internal() 669 BYTE *const oend = ostart + dstSize; in HUF_decompress1X4_usingDTable_internal() local 673 HUF_decodeStreamX4(ostart, &bitD, oend, dt, dtd.tableLog); in HUF_decompress1X4_usingDTable_internal() 715 BYTE *const oend = ostart + dstSize; in HUF_decompress4X4_usingDTable_internal() local 769 …for (; (endSignal == BIT_DStream_unfinished) & (op4 < (oend - (sizeof(bitD4.bitContainer) - 1)));)… in HUF_decompress4X4_usingDTable_internal() 803 HUF_decodeStreamX4(op4, &bitD4, oend, dt, dtLog); in HUF_decompress4X4_usingDTable_internal()
|
| H A D | fse_compress.c | 208 BYTE *const oend = ostart + headerBufferSize; in FSE_writeNCount_generic() local 237 if ((!writeIsSafe) && (out > oend - 2)) in FSE_writeNCount_generic() 252 if ((!writeIsSafe) && (out > oend - 2)) in FSE_writeNCount_generic() 278 if ((!writeIsSafe) && (out > oend - 2)) in FSE_writeNCount_generic() 289 if ((!writeIsSafe) && (out > oend - 2)) in FSE_writeNCount_generic()
|
| H A D | zstd_internal.h | 146 BYTE* const oend = op + length; in ZSTD_wildcopy() local 161 } while (op < oend); in ZSTD_wildcopy()
|
| H A D | compress.c | 599 BYTE *const oend = ostart + dstCapacity; in ZSTD_compressSequences_internal() local 630 if ((oend - op) < 3 /*max nbSeq Size*/ + 1 /*seqHead */) in ZSTD_compressSequences_internal() 672 …size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protect… in ZSTD_compressSequences_internal() 704 …size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protect… in ZSTD_compressSequences_internal() 736 …size_t const NCountSize = FSE_writeNCount(op, oend - op, norm, max, tableLog); /* overflow protect… in ZSTD_compressSequences_internal() 756 …CHECK_E(BIT_initCStream(&blockStream, op, oend - op), dstSize_tooSmall); /* not enough space remai… in ZSTD_compressSequences_internal() 3136 char *const oend = ostart + *dstCapacityPtr; in ZSTD_compressStream_generic() local 3161 size_t oSize = oend - op; in ZSTD_compressStream_generic() 3189 …size_t const flushed = ZSTD_limitCopy(op, oend - op, zcs->outBuff + zcs->outBuffFlushedSize, toFlu… in ZSTD_compressStream_generic() 3254 BYTE *const oend = (BYTE *)(output->dst) + output->size; in ZSTD_endStream() local [all …]
|
| /OK3568_Linux_fs/kernel/fs/erofs/ |
| H A D | decompressor.c | 132 unsigned int ofull, oend, inputsize, total, i, j; in z_erofs_handle_inplace_io() local 138 oend = rq->pageofs_out + rq->outputsize; in z_erofs_handle_inplace_io() 139 ofull = PAGE_ALIGN(oend); in z_erofs_handle_inplace_io() 144 ofull - oend < LZ4_DECOMPRESS_INPLACE_MARGIN(inputsize)) in z_erofs_handle_inplace_io()
|