Searched refs:tmpInSize (Results 1 – 1 of 1) sorted by relevance
177 size_t tmpInSize; member453 cctxPtr->tmpInSize = 0; in LZ4F_compressBegin()575 …if (dstCapacity < LZ4F_compressBound_internal(srcSize, &(cctxPtr->prefs), cctxPtr->tmpInSize)) ret… in LZ4F_compressUpdate()580 if (cctxPtr->tmpInSize > 0) { /* some data already within tmp buffer */ in LZ4F_compressUpdate()581 size_t const sizeToCopy = blockSize - cctxPtr->tmpInSize; in LZ4F_compressUpdate()584 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, srcSize); in LZ4F_compressUpdate()586 cctxPtr->tmpInSize += srcSize; in LZ4F_compressUpdate()591 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, sizeToCopy); in LZ4F_compressUpdate()597 cctxPtr->tmpInSize = 0; in LZ4F_compressUpdate()639 cctxPtr->tmpInSize = sizeToCopy; in LZ4F_compressUpdate()[all …]