Searched refs:tmpInSize (Results 1 – 1 of 1) sorted by relevance
124 size_t tmpInSize; member139 size_t tmpInSize; member406 cctxPtr->tmpInSize = 0; in LZ4F_compressBegin()540 if (cctxPtr->tmpInSize > 0) /* some data already within tmp buffer */ in LZ4F_compressUpdate()542 size_t sizeToCopy = blockSize - cctxPtr->tmpInSize; in LZ4F_compressUpdate()546 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, srcSize); in LZ4F_compressUpdate()548 cctxPtr->tmpInSize += srcSize; in LZ4F_compressUpdate()555 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, sizeToCopy); in LZ4F_compressUpdate()561 cctxPtr->tmpInSize = 0; in LZ4F_compressUpdate()610 cctxPtr->tmpInSize = sizeToCopy; in LZ4F_compressUpdate()[all …]