Home
last modified time | relevance | path

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

/external/zstd/programs/
Dfileio.h96 void FIO_setRsyncable(FIO_prefs_t* const prefs, int rsyncable);
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()
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()
1825 DISPLAY("%s", prefs->rsyncable ? " --rsyncable" : ""); in FIO_displayCompressionParameters()
DREADME.md179 --rsyncable : compress using a rsync-friendly method (-B sets block size)
Dzstd.1.md167 * `--rsyncable` :
/external/zstd/lib/compress/
Dzstdmt_compress.c1260 if (params.rsyncable) { in ZSTDMT_initCStream_internal()
1694 if (!mtctx->params.rsyncable) in findSynchronizationPoint()
1832 …inBuff.filled == 0 || mtctx->inBuff.filled == mtctx->targetSectionSize || mtctx->params.rsyncable); in ZSTDMT_compressStream_generic()
Dzstd_compress_internal.h306 int rsyncable; member
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()
/external/zstd/tests/
Dzstreamtest.c2234 int const rsyncable = (FUZ_rand(&lseed) % 4 == 0); in fuzzerTests_newAPI() local
2235 DISPLAYLEVEL(5, "t%u: rsyncable : %d \n", testNb, rsyncable); in fuzzerTests_newAPI()
2236 setCCtxParameter(zc, cctxParams, ZSTD_c_rsyncable, rsyncable, opaqueAPI); in fuzzerTests_newAPI()
DplayTests.sh1596 zstd -f -vv --rsyncable --single-thread tmp && die "--rsyncable must fail with --single-thread"
/external/zstd/
DCHANGELOG297 api : new --rsyncable mode, by @terrelln