Home
last modified time | relevance | path

Searched refs:rSize (Results 1 – 2 of 2) sorted by relevance

/lib/zstd/
Ddecompress.c1809 size_t rSize; in ZSTD_decompressContinue() local
1811 …case bt_compressed: rSize = ZSTD_decompressBlock_internal(dctx, dst, dstCapacity, src, srcSize); b… in ZSTD_decompressContinue()
1812 case bt_raw: rSize = ZSTD_copyRawBlock(dst, dstCapacity, src, srcSize); break; in ZSTD_decompressContinue()
1813 case bt_rle: rSize = ZSTD_setRleBlock(dst, dstCapacity, src, srcSize, dctx->rleSize); break; in ZSTD_decompressContinue()
1817 if (ZSTD_isError(rSize)) in ZSTD_decompressContinue()
1818 return rSize; in ZSTD_decompressContinue()
1820 xxh64_update(&dctx->xxhState, dst, rSize); in ZSTD_decompressContinue()
1833 dctx->previousDstEnd = (char *)dst + rSize; in ZSTD_decompressContinue()
1835 return rSize; in ZSTD_decompressContinue()
Dcompress.c188 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()
3415 U64 const rSize = srcSize + dictSize ? srcSize + dictSize + addedSize : (U64)-1; in ZSTD_getCParams() local
3416 …U32 const tableID = (rSize <= 256 KB) + (rSize <= 128 KB) + (rSize <= 16 KB); /* intentional under… in ZSTD_getCParams()