Lines Matching refs:dstEnd
430 BYTE* const dstEnd = dstStart + dstCapacity;
453 assert(dstEnd >= dstPtr);
454 { size_t const cSize = LZ4F_compressUpdate(cctx, dstPtr, (size_t)(dstEnd-dstPtr), srcBuffer, srcSize, &options);
458 assert(dstEnd >= dstPtr);
459 { size_t const tailSize = LZ4F_compressEnd(cctx, dstPtr, (size_t)(dstEnd-dstPtr), &options); /* flush last block, and generate suffix */
463 assert(dstEnd >= dstStart);
1566 BYTE* const dstEnd = dstStart ? dstStart + *dstSizePtr : NULL;
1696 if (dstPtr==dstEnd || srcPtr==srcEnd) {
1709 size_t const minBuffSize = MIN((size_t)(srcEnd-srcPtr), (size_t)(dstEnd-dstPtr));
1829 if ( ((size_t)(dstEnd-dstPtr) >= dctx->maxBlockSize)
1907 size_t const sizeToCopy = MIN(dctx->tmpOutSize - dctx->tmpOutStart, (size_t)(dstEnd-dstPtr));