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

  /src/external/bsd/zstd/dist/lib/dictBuilder/
zdict.c 985 unsigned const selectivity = params.selectivityLevel == 0 ? g_selectivity_default : params.selectivityLevel; local
986 unsigned const minRep = (selectivity > 30) ? MINRATIO : nbSamples >> selectivity;
1036 DISPLAYLEVEL(2, "! consider increasing selectivity to produce larger dictionary (-s%u) \n", selectivity+1);
1041 if ((dictContentSize > targetDictSize*3) && (nbSamples > 2*MINRATIO) && (selectivity>1)) {
1042 unsigned proposedSelectivity = selectivity-1;
  /src/external/bsd/zstd/dist/programs/
zstdcli.c 300 DISPLAYOUT(" --train-legacy[=s=#] Use the legacy algorithm with selectivity #. [Default: %u]\n", g_defaultSelectivityLevel);
550 * reads legacy dictionary builder parameters from *stringPtr (e.g. "--train-legacy=selectivity=8") into *selectivity
554 static unsigned parseLegacyParameters(const char* stringPtr, unsigned* selectivity)
556 if (!longCommandWArg(&stringPtr, "s=") && !longCommandWArg(&stringPtr, "selectivity=")) { return 0; }
557 *selectivity = readU32FromChar(&stringPtr);
559 DISPLAYLEVEL(4, "legacy: selectivity=%u\n", *selectivity);
  /src/external/bsd/zstd/dist/tests/
playTests.sh 1240 zstd --train-legacy=selectivity=8 "$TESTDIR"/*.c "$PRGDIR"/*.c -o tmpDict

Completed in 28 milliseconds