Lines Matching refs:decodedSize
1207 int decodedSize; in LZ4F_decompress() local
1214 …decodedSize = decoder((const char*)selectedIn, (char*)dstPtr, (int)dctxPtr->tmpInTarget, (int)dctx… in LZ4F_decompress()
1215 if (decodedSize < 0) return err0r(LZ4F_ERROR_GENERIC); /* decompression failed */ in LZ4F_decompress()
1216 … if (dctxPtr->frameInfo.contentChecksumFlag) XXH32_update(&(dctxPtr->xxh), dstPtr, decodedSize); in LZ4F_decompress()
1217 if (dctxPtr->frameInfo.contentSize) dctxPtr->frameRemainingSize -= decodedSize; in LZ4F_decompress()
1221 LZ4F_updateDict(dctxPtr, dstPtr, decodedSize, dstStart, 0); in LZ4F_decompress()
1223 dstPtr += decodedSize; in LZ4F_decompress()
1231 int decodedSize; in LZ4F_decompress() local
1254 …decodedSize = decoder((const char*)selectedIn, (char*)dctxPtr->tmpOut, (int)dctxPtr->tmpInTarget, … in LZ4F_decompress()
1255 … if (decodedSize < 0) return err0r(LZ4F_ERROR_decompressionFailed); /* decompression failed */ in LZ4F_decompress()
1256 …ctxPtr->frameInfo.contentChecksumFlag) XXH32_update(&(dctxPtr->xxh), dctxPtr->tmpOut, decodedSize); in LZ4F_decompress()
1257 if (dctxPtr->frameInfo.contentSize) dctxPtr->frameRemainingSize -= decodedSize; in LZ4F_decompress()
1258 dctxPtr->tmpOutSize = decodedSize; in LZ4F_decompress()