Lines Matching refs:oend

548     BYTE* const oend = op + length;  in ZSTDv06_wildcopy()  local
551 while (op < oend); in ZSTDv06_wildcopy()
2098 BYTE* const oend = op + dstSize; in HUFv06_decompress1X2_usingDTable() local
2107 HUFv06_decodeStreamX2(op, &bitD, oend, dt, dtLog); in HUFv06_decompress1X2_usingDTable()
2140 BYTE* const oend = ostart + dstSize; in HUFv06_decompress4X2_usingDTable() local
2182 for ( ; (endSignal==BITv06_DStream_unfinished) && (op4<(oend-7)) ; ) { in HUFv06_decompress4X2_usingDTable()
2212 HUFv06_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); in HUFv06_decompress4X2_usingDTable()
2471 BYTE* const oend = ostart + dstSize; in HUFv06_decompress1X4_usingDTable() local
2483 HUFv06_decodeStreamX4(ostart, &bitD, oend, dt, dtLog); in HUFv06_decompress1X4_usingDTable()
2515 BYTE* const oend = ostart + dstSize; in HUFv06_decompress4X4_usingDTable() local
2557 for ( ; (endSignal==BITv06_DStream_unfinished) && (op4<(oend-7)) ; ) { in HUFv06_decompress4X4_usingDTable()
2588 HUFv06_decodeStreamX4(op4, &bitD4, oend, dt, dtLog); in HUFv06_decompress4X4_usingDTable()
3362 BYTE* const oend, seq_t sequence, in ZSTDv06_execSequence() argument
3369 BYTE* const oend_8 = oend-8; in ZSTDv06_execSequence()
3375 if (oMatchEnd > oend) return ERROR(dstSize_tooSmall); /* overwrite beyond dst buffer */ in ZSTDv06_execSequence()
3423 if (oMatchEnd > oend-(16-MINMATCH)) { in ZSTDv06_execSequence()
3445 BYTE* const oend = ostart + maxDstSize; in ZSTDv06_decompressSequences() local
3491 …{ size_t const oneSeqSize = ZSTDv06_execSequence(op, oend, sequence, &litPtr, litEnd, base, vBas… in ZSTDv06_decompressSequences()
3503 if (op+lastLLSize > oend) return ERROR(dstSize_tooSmall); in ZSTDv06_decompressSequences()
3562 BYTE* const oend = ostart + dstCapacity; in ZSTDv06_decompressFrame() local
3590 decodedSize = ZSTDv06_decompressBlock_internal(dctx, op, oend-op, ip, cBlockSize); in ZSTDv06_decompressFrame()
3593 decodedSize = ZSTDv06_copyRawBlock(op, oend-op, ip, cBlockSize); in ZSTDv06_decompressFrame()
4022 char* const oend = ostart + *dstCapacityPtr; in ZBUFFv06_decompressContinue() local
4122 …size_t const flushedSize = ZBUFFv06_limitCopy(op, oend-op, zbd->outBuff + zbd->outStart, toFlushSi… in ZBUFFv06_decompressContinue()