Searched refs:regenSize (Results 1 – 8 of 8) sorted by relevance
/external/lz4/programs/ |
D | bench.c | 301 …int const regenSize = LZ4_decompress_safe(blockTable[blockNb].cPtr, blockTable[blockNb].resPtr, (i… in BMK_benchMem() local 302 if (regenSize < 0) { in BMK_benchMem() 306 blockTable[blockNb].resSize = (size_t)regenSize; in BMK_benchMem()
|
/external/zstd/lib/decompress/ |
D | zstd_decompress.c | 602 size_t regenSize) in ZSTD_setRleBlock() argument 604 RETURN_ERROR_IF(regenSize > dstCapacity, dstSize_tooSmall, ""); in ZSTD_setRleBlock() 606 if (regenSize == 0) return 0; in ZSTD_setRleBlock() 609 ZSTD_memset(dst, b, regenSize); in ZSTD_setRleBlock() 610 return regenSize; in ZSTD_setRleBlock() 831 size_t regenSize; in ZSTD_decompress() local 834 regenSize = ZSTD_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTD_decompress() 836 return regenSize; in ZSTD_decompress()
|
/external/zstd/zlibWrapper/examples/ |
D | zwrapbench.c | 395 size_t const regenSize = ZSTD_decompress_usingDDict(dctx, in BMK_benchMem() local 399 if (ZSTD_isError(regenSize)) { in BMK_benchMem() 401 blockNb, ZSTD_getErrorName(regenSize)); in BMK_benchMem() 405 blockTable[blockNb].resSize = regenSize; in BMK_benchMem()
|
/external/zstd/lib/legacy/ |
D | zstd_v04.c | 3611 size_t regenSize; in ZSTDv04_decompress() local 3614 regenSize = ZSTDv04_decompressDCtx(dctx, dst, maxDstSize, src, srcSize); in ZSTDv04_decompress() 3616 return regenSize; in ZSTDv04_decompress()
|
D | zstd_v05.c | 3514 size_t regenSize; in ZSTDv05_decompress() local 3517 regenSize = ZSTDv05_decompressDCtx(dctx, dst, maxDstSize, src, srcSize); in ZSTDv05_decompress() 3519 return regenSize; in ZSTDv05_decompress()
|
D | zstd_v06.c | 3651 size_t regenSize; in ZSTDv06_decompress() local 3654 regenSize = ZSTDv06_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTDv06_decompress() 3656 return regenSize; in ZSTDv06_decompress()
|
D | zstd_v07.c | 3896 size_t regenSize; in ZSTDv07_decompress() local 3899 regenSize = ZSTDv07_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTDv07_decompress() 3901 return regenSize; in ZSTDv07_decompress()
|
/external/zstd/tests/ |
D | fuzzer.c | 2707 … { CHECK_NEWV(regenSize, ZSTD_decompress(decodedBuffer, sampleSize, compressedBuffer, cSize)); in basicUnitTests() 2708 if (regenSize!=sampleSize) goto _output_error; } in basicUnitTests()
|