• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/contrib/zstd/lib/dictBuilder/

Lines Matching refs:DISPLAYLEVEL

73 #undef  DISPLAYLEVEL
74 #define DISPLAYLEVEL(l, ...) if (notificationLevel>=l) { DISPLAY(__VA_ARGS__); } /* 0 : no display; 1: errors; 2: default; 3: details; 4: debug */
284 DISPLAYLEVEL(4, "\n");
285 DISPLAYLEVEL(4, "found %3u matches of length >= %i at pos %7u ", (unsigned)(end-start), MINMATCHLENGTH, (unsigned)pos);
286 DISPLAYLEVEL(4, "\n");
366 DISPLAYLEVEL(4, "Selected dict at position %u, of length %u : saves %u (ratio: %.2f) \n",
540 DISPLAYLEVEL(2, "\r%70s\r", ""); /* clean display line */
549 if (bufferSize > ZDICT_MAX_SAMPLES_SIZE) DISPLAYLEVEL(3, "sample set too large : reduced to %u MB ...\n", (unsigned)(ZDICT_MAX_SAMPLES_SIZE>>20));
553 DISPLAYLEVEL(2, "sorting %u files of total size %u MB ...\n", nbFiles, (unsigned)(bufferSize>>20));
570 DISPLAYLEVEL(2, "finding patterns ... \n");
571 DISPLAYLEVEL(3, "minimum ratio : %u \n", minRatio);
624 if (ZSTD_isError(errorCode)) { DISPLAYLEVEL(1, "warning : ZSTD_compressBegin_usingCDict failed \n"); return; }
628 if (ZSTD_isError(cSize)) { DISPLAYLEVEL(3, "warning : could not compress sample size %u \n", (unsigned)srcSize); return; }
751 DISPLAYLEVEL(1, "Not enough memory \n");
768 DISPLAYLEVEL(1, " HUF_buildCTable error \n");
772 DISPLAYLEVEL(2, "warning : pathological dataset : literals are not compressible : samples are noisy or too regular \n");
791 DISPLAYLEVEL(1, "FSE_normalizeCount error with offcodeCount \n");
800 DISPLAYLEVEL(1, "FSE_normalizeCount error with matchLengthCount \n");
809 DISPLAYLEVEL(1, "FSE_normalizeCount error with litLengthCount \n");
818 DISPLAYLEVEL(1, "HUF_writeCTable error \n");
829 DISPLAYLEVEL(1, "FSE_writeNCount error with offcodeNCount \n");
840 DISPLAYLEVEL(1, "FSE_writeNCount error with matchLengthNCount \n");
851 DISPLAYLEVEL(1, "FSE_writeNCount error with litlengthNCount \n");
861 DISPLAYLEVEL(1, "not enough space to write RepOffsets \n");
914 DISPLAYLEVEL(2, "\r%70s\r", ""); /* clean display line */
915 DISPLAYLEVEL(2, "statistics ... \n");
946 DISPLAYLEVEL(2, "\r%70s\r", ""); /* clean display line */
947 DISPLAYLEVEL(2, "statistics ... \n");
1015 DISPLAYLEVEL(3, "\n %u segments found, of total size %u \n", (unsigned)dictList[0].pos-1, dictContentSize);
1016 DISPLAYLEVEL(3, "list %u best segments \n", nb-1);
1025 DISPLAYLEVEL(3, "%3u:%3u bytes at pos %8u, savings %7u bytes |",
1028 DISPLAYLEVEL(3, "| \n");
1036 DISPLAYLEVEL(2, "! warning : selected content significantly smaller than requested (%u < %u) \n", dictContentSize, (unsigned)maxDictSize);
1038 DISPLAYLEVEL(2, "! consider increasing the number of samples (total size : %u MB)\n", (unsigned)(samplesBuffSize>>20));
1040 DISPLAYLEVEL(2, "! consider increasing selectivity to produce larger dictionary (-s%u) \n", selectivity+1);
1041 DISPLAYLEVEL(2, "! note : larger dictionaries are not necessarily better, test its efficiency on samples \n");
1048 DISPLAYLEVEL(2, "! note : calculated dictionary significantly larger than requested (%u > %u) \n", dictContentSize, (unsigned)maxDictSize);
1049 DISPLAYLEVEL(2, "! consider increasing dictionary size, or produce denser dictionary (-s%u) \n", proposedSelectivity);
1050 DISPLAYLEVEL(2, "! always test dictionary efficiency on real samples \n");