Searched refs:decodedSize (Results 1 - 1 of 1) sorted by relevance

/fuchsia/zircon/third_party/ulib/lz4/
H A Dlz4frame.c1241 int decodedSize; local
1248 decodedSize = decoder((const char*)selectedIn, (char*)dstPtr, (int)dctxPtr->tmpInTarget, (int)dctxPtr->maxBlockSize, (const char*)dctxPtr->dict, (int)dctxPtr->dictSize);
1249 if (decodedSize < 0) return (size_t)-LZ4F_ERROR_GENERIC; /* decompression failed */
1250 if (dctxPtr->frameInfo.contentChecksumFlag) XXH32_update(&(dctxPtr->xxh), dstPtr, decodedSize);
1251 if (dctxPtr->frameInfo.contentSize) dctxPtr->frameRemainingSize -= decodedSize;
1255 LZ4F_updateDict(dctxPtr, dstPtr, decodedSize, dstStart, 0);
1257 dstPtr += decodedSize;
1266 int decodedSize; local
1294 decodedSize = decoder((const char*)selectedIn, (char*)dctxPtr->tmpOut, (int)dctxPtr->tmpInTarget, (int)dctxPtr->maxBlockSize, (const char*)dctxPtr->dict, (int)dctxPtr->dictSize);
1295 if (decodedSize <
[all...]

Completed in 24 milliseconds