• Home
  • Raw
  • Download

Lines Matching refs:oend

513     BYTE* const oend = op + length;  in ZSTDv05_wildcopy()  local
516 while (op < oend); in ZSTDv05_wildcopy()
1962 BYTE* const oend = op + dstSize; in HUFv05_decompress1X2_usingDTable() local
1972 HUFv05_decodeStreamX2(op, &bitD, oend, dt, dtLog); in HUFv05_decompress1X2_usingDTable()
2006 BYTE* const oend = ostart + dstSize; in HUFv05_decompress4X2_usingDTable() local
2048 for ( ; (endSignal==BITv05_DStream_unfinished) && (op4<(oend-7)) ; ) { in HUFv05_decompress4X2_usingDTable()
2078 HUFv05_decodeStreamX2(op4, &bitD4, oend, dt, dtLog); in HUFv05_decompress4X2_usingDTable()
2342 BYTE* const oend = ostart + dstSize; in HUFv05_decompress1X4_usingDTable() local
2355 HUFv05_decodeStreamX4(ostart, &bitD, oend, dt, dtLog); in HUFv05_decompress1X4_usingDTable()
2388 BYTE* const oend = ostart + dstSize; in HUFv05_decompress4X4_usingDTable() local
2430 for ( ; (endSignal==BITv05_DStream_unfinished) && (op4<(oend-7)) ; ) { in HUFv05_decompress4X4_usingDTable()
2461 HUFv05_decodeStreamX4(op4, &bitD4, oend, dt, dtLog); in HUFv05_decompress4X4_usingDTable()
3224 BYTE* const oend, seq_t sequence, in ZSTDv05_execSequence() argument
3233 BYTE* const oend_8 = oend-8; in ZSTDv05_execSequence()
3239 if (oMatchEnd > oend) return ERROR(dstSize_tooSmall); /* overwrite beyond dst buffer */ in ZSTDv05_execSequence()
3287 if (oMatchEnd > oend-(16-MINMATCH)) { in ZSTDv05_execSequence()
3311 BYTE* const oend = ostart + maxDstSize; in ZSTDv05_decompressSequences() local
3351 … oneSeqSize = ZSTDv05_execSequence(op, oend, sequence, &litPtr, litEnd, base, vBase, dictEnd); in ZSTDv05_decompressSequences()
3364 if (op+lastLLSize > oend) return ERROR(dstSize_tooSmall); in ZSTDv05_decompressSequences()
3424 BYTE* const oend = ostart + maxDstSize; in ZSTDv05_decompress_continueDCtx() local
3454 decodedSize = ZSTDv05_decompressBlock_internal(dctx, op, oend-op, ip, cBlockSize); in ZSTDv05_decompress_continueDCtx()
3457 decodedSize = ZSTDv05_copyRawBlock(op, oend-op, ip, cBlockSize); in ZSTDv05_decompress_continueDCtx()
3894 char* const oend = ostart + *maxDstSizePtr; in ZBUFFv05_decompressContinue() local
4015 … size_t flushedSize = ZBUFFv05_limitCopy(op, oend-op, zbc->outBuff + zbc->outStart, toFlushSize); in ZBUFFv05_decompressContinue()