Lines Matching +full:dynamic +full:- +full:range +full:- +full:compressor

5  * This source code is licensed under both the BSD-style license (found in the
8 * You may select, at your option, one of the above-listed licenses.
45 * ------------------------------
56 * ----------------------------
64 * --------------------------
66 * Simply pass the dictionary to the zstd compressor with
73 * --------------------------
82 * ---------------------------------
89 * ----------------------------
107 * ----------------------------------
119 * ------------------------------------------------------------
128 * -----------------------------------------------------
133 * # Benchmark levels 1-3 without a dictionary
134 * zstd -b1e3 -r /path/to/my/files
135 * # Benchmark levels 1-3 with a dictionary
136 * zstd -b1e3 -r /path/to/my/files -D /path/to/my/dictionary
139 * -----------------------------------
149 * -------------------------------------------------------------------------
152 * using a third-party dictionary builder, you can turn it into a zstd
160 * -------------------------------------------
168 * ------------------------------------------------
171 * zstd should never crash, or access out-of-bounds memory no matter what
181 * Redirect towards ZDICT_optimizeTrainFromBuffer_fastCover() single-threaded, with d=8, steps=4,
206 unsigned dictID; /*< force dictID value; 0 means auto mode (32-bits random value)
211 * - low range : <= 32767
212 * - high range : >= (2^31)
269 * They should never be used with a dynamic library, as they may change in the future.
283 … unsigned k; /* Segment size : constraint: 0 < k : Reasonable range [16, 2048+] */
284 unsigned d; /* dmer size : constraint: 0 < d <= k : Reasonable range [6, 16] */
286 …unsigned nbThreads; /* Number of threads : constraint: 0 < nbThreads : 1 means single-thr…
287 …ples * splitPoint samples will be used to training, the last nbSamples * (1 - splitPoint) samples …
294 … unsigned k; /* Segment size : constraint: 0 < k : Reasonable range [16, 2048+] */
295 unsigned d; /* dmer size : constraint: 0 < d <= k : Reasonable range [6, 16] */
298 …unsigned nbThreads; /* Number of threads : constraint: 0 < nbThreads : 1 means single-thr…
299 …ples * splitPoint samples will be used to training, the last nbSamples * (1 - splitPoint) samples …
333 * If d is non-zero then we don't check multiple values of d, otherwise we check d = {6, 8}.
335 …* If k is non-zero then we don't check multiple values of k, otherwise we check steps values in [5…
375 * If d is non-zero then we don't check multiple values of d, otherwise we check d = {6, 8}.
377 …* If k is non-zero then we don't check multiple values of k, otherwise we check steps values in [5…
420 for example with -Wno-deprecated-declarations for gcc