Lines Matching refs:oend

1371     BYTE* const oend = op + length;  in ZSTD_wildcopy()  local
1372 while (op < oend) COPY8(op, ip); in ZSTD_wildcopy()
1498 BYTE* const oend = op + maxDstSize; in ZSTD_decompressLiterals() local
1508 op = oend - litSize; in ZSTD_decompressLiterals()
1526 BYTE* const oend = ostart + maxDstSize; in ZSTDv01_decodeLiteralsBlock() local
1547 memset(oend - rleSize, *ip, rleSize); in ZSTDv01_decodeLiteralsBlock()
1549 *litStart = oend - rleSize; in ZSTDv01_decodeLiteralsBlock()
1558 *litStart = oend - decodedLitSize; in ZSTDv01_decodeLiteralsBlock()
1757 BYTE* const base, BYTE* const oend) in ZSTD_execSequence() argument
1767 if (endMatch > oend) return ERROR(dstSize_tooSmall); /* overwrite beyond dst buffer */ in ZSTD_execSequence()
1772 if (((size_t)(*litPtr - op) < 8) || ((size_t)(oend-litEnd) < 8) || (op+litLength > oend-8)) in ZSTD_execSequence()
1780 if (oend-op < 8) return ERROR(dstSize_tooSmall); in ZSTD_execSequence()
1796 if ((endMatch + qutt) > oend) qutt = oend-endMatch; in ZSTD_execSequence()
1813 if (endMatch > oend-(16-MINMATCH)) in ZSTD_execSequence()
1815 if (op < oend-8) in ZSTD_execSequence()
1817 ZSTD_wildcopy(op, match, (oend-8) - op); in ZSTD_execSequence()
1818 match += (oend-8) - op; in ZSTD_execSequence()
1819 op = oend-8; in ZSTD_execSequence()
1857 BYTE* const oend = ostart + maxDstSize; in ZSTD_decompressSequences() local
1895 oneSeqSize = ZSTD_execSequence(op, sequence, &litPtr, litEnd, base, oend); in ZSTD_decompressSequences()
1907 if (op+lastLLSize > oend) return ERROR(dstSize_tooSmall); in ZSTD_decompressSequences()
1946 BYTE* const oend = ostart + maxDstSize; in ZSTDv01_decompressDCtx() local
1971 errorCode = ZSTD_decompressBlock(ctx, op, oend-op, ip, blockSize); in ZSTDv01_decompressDCtx()
1974 errorCode = ZSTD_copyUncompressedBlock(op, oend-op, ip, blockSize); in ZSTDv01_decompressDCtx()