Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/programs/
H A Dfileio_types.h44 int rsyncable; member
H A Dfileio.h86 void FIO_setRsyncable(FIO_prefs_t* const prefs, int rsyncable);
H A Dzstdcli.c857 rsyncable = 0, in main() local
1015 if (!strcmp(argument, "--rsyncable")) { rsyncable = 1; continue; } in main()
1597 FIO_setRsyncable(prefs, rsyncable); in main()
1629 (void)contentSize; (void)suffix; (void)adapt; (void)rsyncable; in main()
H A Dfileio.c294 ret->rsyncable = 0; in FIO_createPreferences()
402 void FIO_setRsyncable(FIO_prefs_t* const prefs, int rsyncable) { in FIO_setRsyncable() argument
403 if ((rsyncable>0) && (prefs->nbWorkers==0)) in FIO_setRsyncable()
405 prefs->rsyncable = rsyncable; in FIO_setRsyncable()
1191 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_rsyncable, prefs->rsyncable) ); in FIO_createCResources()
2125 DISPLAY("%s", prefs->rsyncable ? " --rsyncable" : ""); in FIO_displayCompressionParameters()
H A Dzstd.1.md189 * `--rsyncable`:
194 for example when combining `--rsyncable` with many parallel worker threads.
H A DREADME.md208 --rsyncable Compress using a rsync-friendly method (`-B` sets block size).
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c1297 if (params.rsyncable) { in ZSTDMT_initCStream_internal()
1759 if (!mtctx->params.rsyncable) in findSynchronizationPoint()
1904 …inBuff.filled == 0 || mtctx->inBuff.filled == mtctx->targetSectionSize || mtctx->params.rsyncable); in ZSTDMT_compressStream_generic()
H A Dzstd_compress_internal.h384 int rsyncable; member
H A Dzstd_compress.c906 CCtxParams->rsyncable = value; in ZSTD_CCtxParams_setParameter()
907 return (size_t)CCtxParams->rsyncable; in ZSTD_CCtxParams_setParameter()
1103 *value = CCtxParams->rsyncable; in ZSTD_CCtxParams_getParameter()
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress_internal.h385 int rsyncable; member
H A Dzstd_compress.c907 CCtxParams->rsyncable = value; in ZSTD_CCtxParams_setParameter()
908 return (size_t)CCtxParams->rsyncable; in ZSTD_CCtxParams_setParameter()
1104 *value = CCtxParams->rsyncable; in ZSTD_CCtxParams_getParameter()
/freebsd/sys/contrib/zstd/
H A DCHANGELOG444 api : new --rsyncable mode, by @terrelln