Home
last modified time | relevance | path

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

/kernel/linux/linux-6.6/lib/zstd/decompress/
H A Dzstd_decompress.c807 size_t regenSize) in ZSTD_setRleBlock()
809 RETURN_ERROR_IF(regenSize > dstCapacity, dstSize_tooSmall, ""); in ZSTD_setRleBlock()
811 if (regenSize == 0) return 0; in ZSTD_setRleBlock()
814 ZSTD_memset(dst, b, regenSize); in ZSTD_setRleBlock()
815 return regenSize; in ZSTD_setRleBlock()
1043 size_t regenSize; in ZSTD_decompress() local
1046 regenSize = ZSTD_decompressDCtx(dctx, dst, dstCapacity, src, srcSize); in ZSTD_decompress()
1048 return regenSize; in ZSTD_decompress()
805 ZSTD_setRleBlock(void* dst, size_t dstCapacity, BYTE b, size_t regenSize) ZSTD_setRleBlock() argument
/kernel/linux/linux-5.10/lib/zstd/
H A Ddecompress.c420 static size_t ZSTD_setRleBlock(void *dst, size_t dstCapacity, const void *src, size_t srcSize, size_t regenSize) in ZSTD_setRleBlock() argument
424 if (regenSize > dstCapacity) in ZSTD_setRleBlock()
426 memset(dst, *(const BYTE *)src, regenSize); in ZSTD_setRleBlock()
427 return regenSize; in ZSTD_setRleBlock()

Completed in 8 milliseconds