Searched refs:rsyncable (Results 1 – 11 of 11) sorted by relevance
/external/zstd/programs/ |
D | fileio.h | 96 void FIO_setRsyncable(FIO_prefs_t* const prefs, int rsyncable);
|
D | zstdcli.c | 796 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()
|
D | fileio.c | 311 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()
|
D | README.md | 179 --rsyncable : compress using a rsync-friendly method (-B sets block size)
|
D | zstd.1.md | 167 * `--rsyncable` :
|
/external/zstd/lib/compress/ |
D | zstdmt_compress.c | 1260 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()
|
D | zstd_compress_internal.h | 306 int rsyncable; member
|
D | zstd_compress.c | 837 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/ |
D | zstreamtest.c | 2234 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()
|
D | playTests.sh | 1596 zstd -f -vv --rsyncable --single-thread tmp && die "--rsyncable must fail with --single-thread"
|
/external/zstd/ |
D | CHANGELOG | 297 api : new --rsyncable mode, by @terrelln
|