Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress.c181 size_t const toCopy = (size_t)((char*)(&dstDCtx->inBuff) - (char*)dstDCtx); in ZSTD_copyDCtx() local
182 memcpy(dstDCtx, srcDCtx, toCopy); /* no need to copy workspace */ in ZSTD_copyDCtx()
/freebsd-14.2/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c343 size_t const toCopy = (size_t)((char*)(&dstDCtx->inBuff) - (char*)dstDCtx); in ZSTD_copyDCtx() local
344 ZSTD_memcpy(dstDCtx, srcDCtx, toCopy); /* no need to copy workspace */ in ZSTD_copyDCtx()
/freebsd-14.2/sys/contrib/zstd/lib/common/
H A Dxxhash.h5639 size_t const toCopy = XXH_MIN((secretSize - pos), customSeedSize); in XXH3_generateSecret() local
5640 memcpy((char*)secretBuffer + pos, customSeed, toCopy); in XXH3_generateSecret()
5641 pos += toCopy; in XXH3_generateSecret()