Searched refs:rSize (Results 1 – 2 of 2) sorted by relevance
/linux-4.19.296/lib/zstd/ |
D | decompress.c | 1808 size_t rSize; in ZSTD_decompressContinue() local 1810 …case bt_compressed: rSize = ZSTD_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize); b… in ZSTD_decompressContinue() 1811 case bt_raw: rSize = ZSTD_copyRawBlock(dst, dstCapacity, src, srcSize); break; in ZSTD_decompressContinue() 1812 case bt_rle: rSize = ZSTD_setRleBlock(dst, dstCapacity, src, srcSize, dctx->rleSize); break; in ZSTD_decompressContinue() 1816 if (ZSTD_isError(rSize)) in ZSTD_decompressContinue() 1817 return rSize; in ZSTD_decompressContinue() 1819 xxh64_update(&dctx->xxhState, dst, rSize); in ZSTD_decompressContinue() 1832 dctx->previousDstEnd = (char *)dst + rSize; in ZSTD_decompressContinue() 1834 return rSize; in ZSTD_decompressContinue()
|
D | compress.c | 188 U64 const rSize = srcSize + dictSize + minSrcSize; in ZSTD_adjustCParams() local 189 if (rSize < ((U64)1 << ZSTD_WINDOWLOG_MAX)) { in ZSTD_adjustCParams() 190 U32 const srcLog = MAX(ZSTD_HASHLOG_MIN, ZSTD_highbit32((U32)(rSize)-1) + 1); in ZSTD_adjustCParams() 3414 U64 const rSize = srcSize + dictSize ? srcSize + dictSize + addedSize : (U64)-1; in ZSTD_getCParams() local 3415 …U32 const tableID = (rSize <= 256 KB) + (rSize <= 128 KB) + (rSize <= 16 KB); /* intentional under… in ZSTD_getCParams()
|