Home
last modified time | relevance | path

Searched refs:rsyncable (Results 1 – 11 of 11) sorted by relevance

/freebsd/sys/contrib/zstd/programs/
H A Dfileio.h96 void FIO_setRsyncable(FIO_prefs_t* const prefs, int rsyncable);
H A Dzstdcli.c796 rsyncable = 0, in main() local
939 if (!strcmp(argument, "--rsyncable")) { rsyncable = 1; continue; } in main()
1438 FIO_setRsyncable(prefs, rsyncable); in main()
1468 …(void)contentSize; (void)suffix; (void)adapt; (void)rsyncable; (void)ultra; (void)cLevel; (void)ld… in main()
H A Dfileio.c311 int rsyncable; member
383 ret->rsyncable = 0; in FIO_createPreferences()
489 void FIO_setRsyncable(FIO_prefs_t* const prefs, int rsyncable) { in FIO_setRsyncable() argument
490 if ((rsyncable>0) && (prefs->nbWorkers==0)) in FIO_setRsyncable()
492 prefs->rsyncable = rsyncable; in FIO_setRsyncable()
1055 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_rsyncable, prefs->rsyncable) ); in FIO_createCResources()
1826 DISPLAY("%s", prefs->rsyncable ? " --rsyncable" : ""); in FIO_displayCompressionParameters()
H A DREADME.md179 --rsyncable : compress using a rsync-friendly method (-B sets block size)
H A Dzstd.1.md167 * `--rsyncable` :
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c1268 if (params.rsyncable) { in ZSTDMT_initCStream_internal()
1702 if (!mtctx->params.rsyncable) in findSynchronizationPoint()
1840 …inBuff.filled == 0 || mtctx->inBuff.filled == mtctx->targetSectionSize || mtctx->params.rsyncable); in ZSTDMT_compressStream_generic()
H A Dzstd_compress_internal.h306 int rsyncable; member
H A Dzstd_compress.c837 CCtxParams->rsyncable = value; in ZSTD_CCtxParams_setParameter()
838 return CCtxParams->rsyncable; in ZSTD_CCtxParams_setParameter()
1004 *value = CCtxParams->rsyncable; in ZSTD_CCtxParams_getParameter()
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_internal.h226 int rsyncable; member
H A Dzstd_compress.c666 CCtxParams->rsyncable = value; in ZSTD_CCtxParams_setParameter()
667 return CCtxParams->rsyncable; in ZSTD_CCtxParams_setParameter()
794 *value = CCtxParams->rsyncable; in ZSTD_CCtxParams_getParameter()
/freebsd/sys/contrib/zstd/
H A DCHANGELOG302 api : new --rsyncable mode, by @terrelln