Home | History | Annotate | Download | only in lib

Lines Matching refs:dstEnd

267     BYTE* const dstEnd = dstStart + dstMaxSize;
306 errorCode = LZ4F_compressEnd(&cctxI, dstPtr, dstEnd-dstPtr, &options); /* flush last block, and generate suffix */
960 BYTE* const dstEnd = dstStart + *dstSizePtr;
1074 if (dstPtr==dstEnd)
1086 if ((size_t)(dstEnd-dstPtr) < sizeToCopy) sizeToCopy = dstEnd - dstPtr;
1141 if ((size_t)(dstEnd-dstPtr) < dctxPtr->maxBlockSize) /* not enough place into dst : decode into tmpOut */
1215 if (sizeToCopy > (size_t)(dstEnd-dstPtr)) sizeToCopy = dstEnd-dstPtr;