HomeSort by: relevance | last modified time | path
    Searched refs:rsyncable (Results 1 - 11 of 11) sorted by relevancy

  /src/external/bsd/zstd/dist/programs/
fileio_types.h 44 int rsyncable; member in struct:FIO_prefs_s
fileio.h 91 void FIO_setRsyncable(FIO_prefs_t* const prefs, int rsyncable);
zstdcli.c 241 DISPLAYOUT(" --rsyncable Compress using a rsync-friendly method (`-B` sets block size). \n");
844 rsyncable = 0, local
1006 if (!strcmp(argument, "--rsyncable")) { rsyncable = 1; continue; }
1564 FIO_setRsyncable(prefs, rsyncable);
1596 (void)contentSize; (void)suffix; (void)adapt; (void)rsyncable;
fileio.c 294 ret->rsyncable = 0;
402 void FIO_setRsyncable(FIO_prefs_t* const prefs, int rsyncable) {
403 if ((rsyncable>0) && (prefs->nbWorkers==0))
404 EXM_THROW(1, "Rsyncable mode is not compatible with single thread mode \n");
405 prefs->rsyncable = rsyncable;
1190 CHECK( ZSTD_CCtx_setParameter(ress.cctx, ZSTD_c_rsyncable, prefs->rsyncable) );
2126 DISPLAY("%s", prefs->rsyncable ? " --rsyncable" : "");
  /src/external/bsd/zstd/dist/tests/cli-tests/compression/
multi-threaded.sh 8 zstd --rsyncable -f file -q ; zstd -t file.zst
  /src/external/bsd/zstd/dist/lib/compress/
zstdmt_compress.c 1284 if (params.rsyncable) {
1718 if (!mtctx->params.rsyncable)
1863 assert(mtctx->inBuff.filled == 0 || mtctx->inBuff.filled == mtctx->targetSectionSize || mtctx->params.rsyncable);
zstd_compress_internal.h 329 int rsyncable; member in struct:ZSTD_CCtx_params_s
zstd_compress.c 906 CCtxParams->rsyncable = value;
907 return (size_t)CCtxParams->rsyncable;
1097 *value = CCtxParams->rsyncable;
  /src/external/gpl3/autoconf/dist/
maint.mk 32 # Use --rsyncable if available.
34 $(shell gzip --help 2>/dev/null|grep rsyncable >/dev/null \
35 && printf %s --rsyncable)
  /src/external/bsd/zstd/dist/tests/
zstreamtest.c 2995 /* Enable rsyncable mode 1 in 4 times. */
2997 int const rsyncable = (FUZ_rand(&lseed) % 4 == 0); local
2998 DISPLAYLEVEL(5, "t%u: rsyncable : %d \n", testNb, rsyncable);
2999 setCCtxParameter(zc, cctxParams, ZSTD_c_rsyncable, rsyncable, opaqueAPI);
playTests.sh 1776 println "\n===> rsyncable mode "
1777 roundTripTest -g10M " --rsyncable"
1778 roundTripTest -g10M " --rsyncable -B100K"
1779 println "===> test: --rsyncable must fail with --single-thread"
1780 zstd -f -vv --rsyncable --single-thread tmp && die "--rsyncable must fail with --single-thread"

Completed in 55 milliseconds