Searched refs:rsyncable (Results 1 – 12 of 12) sorted by relevance
44 int rsyncable; member
86 void FIO_setRsyncable(FIO_prefs_t* const prefs, int rsyncable);
857 rsyncable = 0, in main() local1015 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()
294 ret->rsyncable = 0; in FIO_createPreferences()402 void FIO_setRsyncable(FIO_prefs_t* const prefs, int rsyncable) { in FIO_setRsyncable() argument403 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()
189 * `--rsyncable`:194 for example when combining `--rsyncable` with many parallel worker threads.
208 --rsyncable Compress using a rsync-friendly method (`-B` sets block size).
1297 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()
384 int rsyncable; member
906 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()
385 int rsyncable; member
907 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()
444 api : new --rsyncable mode, by @terrelln