Lines Matching refs:oend

1727         BYTE* const oend = ostart + dstSize;  in HUF_decompress4X2_usingDTable()  local
1770 for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) in HUF_decompress4X2_usingDTable()
1802 HUF_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); in HUF_decompress4X2_usingDTable()
2089 BYTE* const oend = ostart + dstSize; in HUF_decompress4X4_usingDTable() local
2132 for ( ; (endSignal==BIT_DStream_unfinished) && (op4<(oend-7)) ; ) in HUF_decompress4X4_usingDTable()
2164 HUF_decodeStreamX4(op4, &bitD4, oend, dt, dtLog); in HUF_decompress4X4_usingDTable()
2444 BYTE* const oend = ostart + dstSize; in HUF_decompress4X6_usingDTable() local
2489 for ( ; (op3 <= opStart4) && (endSignal==BIT_DStream_unfinished) && (op4<=(oend-16)) ; ) in HUF_decompress4X6_usingDTable()
2521 HUF_decodeStreamX6(op4, &bitD4, oend, DTable, dtLog); in HUF_decompress4X6_usingDTable()
2756 BYTE* const oend = op + length; in ZSTD_wildcopy() local
2757 do COPY8(op, ip) while (op < oend); in ZSTD_wildcopy()
3106 BYTE* const base, BYTE* const oend) in ZSTD_execSequence() argument
3113 BYTE* const oend_8 = oend-8; in ZSTD_execSequence()
3118 if (oMatchEnd > oend) return ERROR(dstSize_tooSmall); /* overwrite beyond dst buffer */ in ZSTD_execSequence()
3153 if (oMatchEnd > oend-(16-MINMATCH)) in ZSTD_execSequence()
3182 BYTE* const oend = ostart + maxDstSize; in ZSTD_decompressSequences() local
3220 oneSeqSize = ZSTD_execSequence(op, sequence, &litPtr, litEnd, base, oend); in ZSTD_decompressSequences()
3233 if (op+lastLLSize > oend) return ERROR(dstSize_tooSmall); in ZSTD_decompressSequences()
3269 BYTE* const oend = ostart + maxDstSize; in ZSTD_decompressDCtx() local
3294 decodedSize = ZSTD_decompressBlock(ctx, op, oend-op, ip, cBlockSize); in ZSTD_decompressDCtx()
3297 decodedSize = ZSTD_copyUncompressedBlock(op, oend-op, ip, cBlockSize); in ZSTD_decompressDCtx()