Home
last modified time | relevance | path

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

/external/lz4/lib/
Dlz4frame.c1151 int decodedSize; in LZ4F_decompress() local
1158decodedSize = decoder((const char*)selectedIn, (char*)dstPtr, (int)dctxPtr->tmpInTarget, (int)dctx… in LZ4F_decompress()
1159 if (decodedSize < 0) return (size_t)-ERROR_GENERIC; /* decompression failed */ in LZ4F_decompress()
1160 … if (dctxPtr->frameInfo.contentChecksumFlag) XXH32_update(&(dctxPtr->xxh), dstPtr, decodedSize); in LZ4F_decompress()
1164 LZ4F_updateDict(dctxPtr, dstPtr, decodedSize, dstStart, 0); in LZ4F_decompress()
1166 dstPtr += decodedSize; in LZ4F_decompress()
1175 int decodedSize; in LZ4F_decompress() local
1203decodedSize = decoder((const char*)selectedIn, (char*)dctxPtr->tmpOut, (int)dctxPtr->tmpInTarget, … in LZ4F_decompress()
1204 … if (decodedSize < 0) return (size_t)-ERROR_decompressionFailed; /* decompression failed */ in LZ4F_decompress()
1205 …ctxPtr->frameInfo.contentChecksumFlag) XXH32_update(&(dctxPtr->xxh), dctxPtr->tmpOut, decodedSize); in LZ4F_decompress()
[all …]
/external/lz4/programs/
Dlz4io.c635 unsigned long long filesize = 0, decodedSize=0; in LZ4IO_decompressFilename() local
648 decodedSize = selectDecoder(finput, foutput); in LZ4IO_decompressFilename()
649 if (decodedSize != ENDOFSTREAM) in LZ4IO_decompressFilename()
650 filesize += decodedSize; in LZ4IO_decompressFilename()
651 } while (decodedSize != ENDOFSTREAM); in LZ4IO_decompressFilename()
Dfullbench.c668 …int decodedSize = decompressionFunction(chunkP[chunkNb].compressedBuffer, chunkP[chunkNb].origBuff… in fullSpeedBench() local
669 …if (chunkP[chunkNb].origSize != decodedSize) DISPLAY("ERROR ! %s() == %i != %i !! \n", dName, deco… in fullSpeedBench()