Lines Matching defs:dictionary
13 * dedicated to the specific case of dictionary decompression
136 DISPLAYLEVEL(3, "loading dictionary %s \n", dictionaryName);
141 DISPLAYLEVEL(3, "creating dictionary, of target size %u bytes \n",
790 * dictionary : optional (can be NULL), file to load as dictionary,
793 int bench(const char **fileNameTable, unsigned nbFiles, const char *dictionary,
845 /* dictionary determination */
846 buffer_t const dictBuffer = createDictionaryBuffer(dictionary,
857 DISPLAYLEVEL(3, "compressing at level %u without dictionary : Ratio=%.2f (%u bytes) \n",
866 DISPLAYLEVEL(3, "compressed using a %u bytes dictionary : Ratio=%.2f (%u bytes) \n",
986 DISPLAY ("-D # : use # as a dictionary (default: create one) \n");
1021 const char* dictionary = NULL;
1024 unsigned nbDicts = 0; /* determine nbDicts automatically: 1 dictionary per block */
1037 if (!strcmp(argument, "-D")) { argNb++; assert(argNb < argc); dictionary = argv[argNb]; continue; }
1040 if (longCommandWArg(&argument, "--dictionary=")) { dictionary = argument; continue; }
1076 dictionary, blockSize, cLevel, nbDicts, nbBlocks, nbRounds,