Lines Matching refs:oend
1873 BYTE* const oend = op + dstSize; in HUFv07_decompress1X2_usingDTable_internal() local
1883 HUFv07_decodeStreamX2(op, &bitD, oend, dt, dtLog); in HUFv07_decompress1X2_usingDTable_internal()
1930 BYTE* const oend = ostart + dstSize; in HUFv07_decompress4X2_usingDTable_internal() local
1971 for ( ; (endSignal==BITv07_DStream_unfinished) && (op4<(oend-7)) ; ) { in HUFv07_decompress4X2_usingDTable_internal()
2001 HUFv07_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); in HUFv07_decompress4X2_usingDTable_internal()
2289 BYTE* const oend = ostart + dstSize; in HUFv07_decompress1X4_usingDTable_internal() local
2293 HUFv07_decodeStreamX4(ostart, &bitD, oend, dt, dtd.tableLog); in HUFv07_decompress1X4_usingDTable_internal()
2340 BYTE* const oend = ostart + dstSize; in HUFv07_decompress4X4_usingDTable_internal() local
2381 for ( ; (endSignal==BITv07_DStream_unfinished) && (op4<(oend-7)) ; ) { in HUFv07_decompress4X4_usingDTable_internal()
2412 HUFv07_decodeStreamX4(op4, &bitD4, oend, dt, dtLog); in HUFv07_decompress4X4_usingDTable_internal()
2781 BYTE* const oend = op + length; in ZSTDv07_wildcopy() local
2784 while (op < oend); in ZSTDv07_wildcopy()
3590 BYTE* const oend, seq_t sequence, in ZSTDv07_execSequence() argument
3597 BYTE* const oend_w = oend-WILDCOPY_OVERLENGTH; in ZSTDv07_execSequence()
3602 …if ((oLitEnd>oend_w) | (oMatchEnd>oend)) return ERROR(dstSize_tooSmall); /* last match must start … in ZSTDv07_execSequence()
3650 if (oMatchEnd > oend-(16-MINMATCH)) { in ZSTDv07_execSequence()
3672 BYTE* const oend = ostart + maxDstSize; in ZSTDv07_decompressSequences() local
3704 …size_t const oneSeqSize = ZSTDv07_execSequence(op, oend, sequence, &litPtr, litEnd, base, vBase, d… in ZSTDv07_decompressSequences()
3718 if (lastLLSize > (size_t)(oend-op)) return ERROR(dstSize_tooSmall); in ZSTDv07_decompressSequences()
3799 BYTE* const oend = ostart + dstCapacity; in ZSTDv07_decompressFrame() local
3828 decodedSize = ZSTDv07_decompressBlock_internal(dctx, op, oend-op, ip, cBlockSize); in ZSTDv07_decompressFrame()
3831 decodedSize = ZSTDv07_copyRawBlock(op, oend-op, ip, cBlockSize); in ZSTDv07_decompressFrame()
3834 decodedSize = ZSTDv07_generateNxBytes(op, oend-op, *ip, blockProperties.origSize); in ZSTDv07_decompressFrame()
4404 char* const oend = ostart + *dstCapacityPtr; in ZBUFFv07_decompressContinue() local
4510 …size_t const flushedSize = ZBUFFv07_limitCopy(op, oend-op, zbd->outBuff + zbd->outStart, toFlushSi… in ZBUFFv07_decompressContinue()