Lines Matching refs:oend
2366 const BYTE* const oend = dstEnd; in ZSTD_buildSequencesStatistics() local
2379 assert(op <= oend); in ZSTD_buildSequencesStatistics()
2394 op, (size_t)(oend - op), in ZSTD_buildSequencesStatistics()
2409 assert(op <= oend); in ZSTD_buildSequencesStatistics()
2426 op, (size_t)(oend - op), in ZSTD_buildSequencesStatistics()
2441 assert(op <= oend); in ZSTD_buildSequencesStatistics()
2447 DEBUGLOG(5, "Building ML table (remaining space : %i)", (int)(oend-op)); in ZSTD_buildSequencesStatistics()
2456 op, (size_t)(oend - op), in ZSTD_buildSequencesStatistics()
2471 assert(op <= oend); in ZSTD_buildSequencesStatistics()
2503 BYTE* const oend = ostart + dstCapacity; in ZSTD_entropyCompressSeqStore_internal() local
2535 RETURN_ERROR_IF((oend-op) < 3 /*max nbSeq Size*/ + 1 /*seqHead*/, in ZSTD_entropyCompressSeqStore_internal()
2548 assert(op <= oend); in ZSTD_entropyCompressSeqStore_internal()
2560 op, oend, in ZSTD_entropyCompressSeqStore_internal()
2570 op, (size_t)(oend - op), in ZSTD_entropyCompressSeqStore_internal()
2578 assert(op <= oend); in ZSTD_entropyCompressSeqStore_internal()
3092 BYTE* const oend = ostart + sizeof(fseMetadata->fseTablesBuffer); in ZSTD_buildBlockEntropyStats_sequences() local
3101 prevEntropy, nextEntropy, op, oend, in ZSTD_buildBlockEntropyStats_sequences()
5218 char* const oend = output->size != 0 ? ostart + output->size : ostart; in ZSTD_compressStream_generic() local
5244 && ( (size_t)(oend-op) >= ZSTD_compressBound(iend-ip) /* Enough output space */ in ZSTD_compressStream_generic()
5249 op, oend-op, ip, iend-ip); in ZSTD_compressStream_generic()
5283 size_t oSize = oend-op; in ZSTD_compressStream_generic()
5341 size_t const flushed = ZSTD_limitCopy(op, (size_t)(oend-op), in ZSTD_compressStream_generic()
5344 (unsigned)toFlush, (unsigned)(oend-op), (unsigned)flushed); in ZSTD_compressStream_generic()
5350 assert(op==oend); in ZSTD_compressStream_generic()