Searched refs:dstEnd (Results 1 – 2 of 2) sorted by relevance
267 BYTE* const dstEnd = dstStart + dstMaxSize; in LZ4F_compressFrame() local306 …errorCode = LZ4F_compressEnd(&cctxI, dstPtr, dstEnd-dstPtr, &options); /* flush last block, and … in LZ4F_compressFrame()960 BYTE* const dstEnd = dstStart + *dstSizePtr; in LZ4F_decompress() local1074 if (dstPtr==dstEnd) in LZ4F_decompress()1086 if ((size_t)(dstEnd-dstPtr) < sizeToCopy) sizeToCopy = dstEnd - dstPtr; in LZ4F_decompress()1141 …if ((size_t)(dstEnd-dstPtr) < dctxPtr->maxBlockSize) /* not enough place into dst : decode into … in LZ4F_decompress()1215 if (sizeToCopy > (size_t)(dstEnd-dstPtr)) sizeToCopy = dstEnd-dstPtr; in LZ4F_decompress()
286 static void LZ4_wildCopy(void* dstPtr, const void* srcPtr, void* dstEnd) in LZ4_wildCopy() argument290 BYTE* e = dstEnd; in LZ4_wildCopy()