| /f-stack/freebsd/contrib/zstd/doc/educational_decoder/ |
| H A D | Makefile | 58 -o dictionary 59 @$(ZSTD) -f README.md -D dictionary -o tmp.zst 60 @./harness tmp.zst tmp dictionary 62 @$(RM) tmp* dictionary
|
| H A D | README.md | 20 This can be reduced even further by foregoing dictionary support, 25 harness <input-file> <output-file> [dictionary]
|
| /f-stack/freebsd/contrib/xz-embedded/linux/Documentation/ |
| H A D | xz.txt | 49 dictionary. It will also append a four-byte trailer containing the 52 which will use no BCJ filter and 1 MiB LZMA2 dictionary. 70 In userspace, LZMA2 is typically used with dictionary sizes of several 71 megabytes. The decoder needs to have the dictionary in RAM, thus big 73 by the kernel. 1 MiB is probably the maximum reasonable dictionary 80 An exception to above dictionary size limitation is when the decoder 83 doesn't depend on the dictionary size, and it is perfectly fine to 84 use a big dictionary: for maximum compression, the dictionary should
|
| /f-stack/freebsd/contrib/zstd/programs/ |
| H A D | README.md | 110 in a file selected with the `-o` option (default name is `dictionary`), 120 Usage of the dictionary builder and created dictionaries with CLI: 123 2. Compress with the dictionary: `zstd FILE -D dictionaryName` 183 --no-dictID : don't write dictID into header (dictionary compression only) 198 --train ## : create a dictionary from a training set of files 202 -o DICT : DICT is dictionary name (default: dictionary) 203 --maxdict=# : limit dictionary to specified size (default: 112640) 204 --dictID=# : force dictionary ID to specified value (default: random) 294 `zstdgrep` is _not_ compatible with dictionary compression. 296 To search into a file compressed with a dictionary, [all …]
|
| H A D | zstd.1.md | 94 Use FILEs as a training set to create a dictionary. 178 do not store dictionary ID within frame header (dictionary compression). 295 the result of which is saved into a file called a `dictionary`. 301 Use FILEs as training set to create a dictionary. 303 and weight typically 100x the target dictionary size 304 (for example, 10 MB for a 100 KB dictionary). 312 Dictionary saved into `file` (default name: dictionary). 314 Limit dictionary to specified size (default: 112640). 323 using the right dictionary. 349 to find optimal _d_ and _k_ to build dictionary. [all …]
|
| /f-stack/freebsd/contrib/zstd/ |
| H A D | CHANGELOG | 20 api : fix : dictionary compression correctly respects dictionary compression level (see #2303) (iss… 165 api: Fix ZSTD_decompressDCtx() corner cases with a dictionary 189 misc: Optimize dictionary memory usage in corner cases 190 misc: Improve the dictionary builder on small or homogeneous data 223 perf: much faster dictionary builder, by @jenniferliu 237 perf: much faster dictionary compression, by @felixhandte 263 api : implemented all advanced dictionary decompression prototypes 511 Fixed : Legacy codec v0.5 compatible with dictionary decompression 531 New : dictionary builder utility 532 Changed : streaming & dictionary API [all …]
|
| H A D | README.md | 93 …e per sample). The result of this training is stored in a file called "dictionary", which must be … 94 Using this dictionary, the compression ratio achievable on small data improves dramatically. 106 …orrelation in a family of small data samples. The more data-specific a dictionary is, the more eff… 107 Hence, deploying one dictionary per type of data will provide the greatest benefits. 112 1. Create the dictionary 116 2. Compress with dictionary 120 3. Decompress with dictionary
|
| /f-stack/freebsd/contrib/zlib/doc/ |
| H A D | rfc1950.txt | 154 support for a preset dictionary was introduced, and the 272 bit 5 FDICT (preset dictionary) 287 FDICT (Preset dictionary) 288 If FDICT is set, a DICT dictionary identifier is present 294 which dictionary has been used by the compressor. 361 identifier of a known preset dictionary. A decompressor may 366 dictionary feature, a compliant decompressor must reject any 460 sequences. The compressor can take advantage of the dictionary 463 virtually decompressing a compressed version of the dictionary 469 dictionary. The dictionary may be fixed or may be chosen among a [all …]
|
| /f-stack/freebsd/contrib/zstd/examples/ |
| H A D | README.md | 40 Compress multiple files using the same dictionary. 44 Decompress multiple files using the same dictionary.
|
| /f-stack/freebsd/contrib/xz-embedded/linux/lib/xz/ |
| H A D | xz_dec_lzma2.c | 44 struct dictionary { struct 264 struct dictionary dict; 286 static void dict_reset(struct dictionary *dict, struct xz_buf *b) in dict_reset() 300 static void dict_limit(struct dictionary *dict, size_t out_max) in dict_limit() 309 static inline bool dict_has_space(const struct dictionary *dict) in dict_has_space() 320 static inline uint32_t dict_get(const struct dictionary *dict, uint32_t dist) in dict_get() 333 static inline void dict_put(struct dictionary *dict, uint8_t byte) in dict_put() 346 static bool dict_repeat(struct dictionary *dict, uint32_t *len, uint32_t dist) in dict_repeat() 374 static void dict_uncompressed(struct dictionary *dict, struct xz_buf *b, in dict_uncompressed() 416 static uint32_t dict_flush(struct dictionary *dict, struct xz_buf *b) in dict_flush()
|
| /f-stack/freebsd/contrib/zstd/zlibWrapper/examples/ |
| H A D | example_original.c | 51 const char dictionary[] = "hello"; variable 489 (const Bytef*)dictionary, (int)sizeof(dictionary)); 541 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary, 542 (int)sizeof(dictionary));
|
| H A D | example.c | 56 const char dictionary[] = "hello, hello!"; variable 497 (const Bytef*)dictionary, (int)sizeof(dictionary)); 549 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary, 550 (int)sizeof(dictionary));
|
| /f-stack/freebsd/contrib/zlib/test/ |
| H A D | example.c | 34 static const char dictionary[] = "hello"; variable 472 (const Bytef*)dictionary, (int)sizeof(dictionary)); 524 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary, 525 (int)sizeof(dictionary));
|
| /f-stack/freebsd/contrib/zlib/ |
| H A D | zlib.h | 612 const Bytef *dictionary, 656 Bytef *dictionary, 886 const Bytef *dictionary, 909 Bytef *dictionary,
|
| H A D | inflate.c | 1291 int ZEXPORT inflateGetDictionary(strm, dictionary, dictLength) in inflateGetDictionary() argument 1293 Bytef *dictionary; 1303 if (state->whave && dictionary != Z_NULL) { 1304 zmemcpy(dictionary, state->window + state->wnext, 1306 zmemcpy(dictionary + state->whave - state->wnext, 1314 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument 1316 const Bytef *dictionary; 1332 dictid = adler32(dictid, dictionary, dictLength); 1339 ret = updatewindow(strm, dictionary + dictLength, dictLength);
|
| H A D | deflate.c | 379 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument 381 const Bytef *dictionary; 390 if (deflateStateCheck(strm) || dictionary == Z_NULL) 399 strm->adler = adler32(strm->adler, dictionary, dictLength); 410 dictionary += dictLength - s->w_size; /* use the tail */ 418 strm->next_in = (z_const Bytef *)dictionary; 448 int ZEXPORT deflateGetDictionary (strm, dictionary, dictLength) in deflateGetDictionary() argument 450 Bytef *dictionary; 462 if (dictionary != Z_NULL && len) 463 zmemcpy(dictionary, s->window + s->strstart + s->lookahead - len, len);
|
| /f-stack/freebsd/contrib/zstd/doc/ |
| H A D | zstd_compression_format.md | 93 - [Dictionary Format](#dictionary-format) 296 and the ID of such a dictionary is not specified. 428 - Every decoding table can come from a dictionary. 478 (or [dictionary](#dictionary-format)), this should be treated as data corruption. 550 or from a dictionary. 676 (nor [dictionary](#dictionary-format)) to repeat, this should be treated as corruption. 912 unless a dictionary is used, in which case they come from the dictionary. 1407 of a formatted dictionary. 1411 __Pre-requisites__ : a dictionary has a size, 1454 dictionary, even parts of the dictionary with offsets larger than `Window_Size`. [all …]
|
| /f-stack/freebsd/contrib/zstd/zlibWrapper/ |
| H A D | zstd_zlibwrapper.c | 329 const Bytef *dictionary, in z_deflateSetDictionary() argument 334 return deflateSetDictionary(strm, dictionary, dictLength); in z_deflateSetDictionary() 344 { int res = ZWRAP_initializeCStream(zwc, dictionary, dictLength, ZSTD_CONTENTSIZE_UNKNOWN); in z_deflateSetDictionary() 685 const Bytef *dictionary, in z_inflateSetDictionary() argument 690 return inflateSetDictionary(strm, dictionary, dictLength); in z_inflateSetDictionary() 694 { size_t const initErr = ZSTD_initDStream_usingDict(zwd->zbd, dictionary, dictLength); in z_inflateSetDictionary() 1000 Bytef *dictionary, in z_inflateGetDictionary() argument 1004 return inflateGetDictionary(strm, dictionary, dictLength); in z_inflateGetDictionary()
|
| H A D | README.md | 56 inflate with dictionary: hello, hello! 69 inflate with dictionary: hello, hello!
|
| /f-stack/freebsd/contrib/openzfs/contrib/pyzfs/libzfs_core/ |
| H A D | _nvlist.py | 201 for dictionary in array: 207 _dict_to_nvlist(dictionary, nested_nvlist)
|
| /f-stack/dpdk/doc/guides/eventdevs/ |
| H A D | octeontx2.rst | 76 thresholds than the rest. The dictionary format is as follows
|
| /f-stack/dpdk/doc/guides/prog_guide/ |
| H A D | telemetry_lib.rst | 109 For data that needs to be structured in a dictionary with key/value pairs,
|
| /f-stack/app/redis-5.0.5/ |
| H A D | 00-RELEASENOTES | 1280 Modules: Modules: dictionary API WIP #13: Compare API exported. 1284 Modules: Modules: dictionary API WIP #12: DictCompare API. 1288 Modules: Modules: dictionary API WIP #11: DictCompareC API. 1316 Modules: dictionary API WIP #10: export API to modules. 1324 Modules: dictionary API WIP #8: Iterator next/prev. 1328 Modules: dictionary API WIP #7: don't store the context. 1344 Modules: dictionary API work in progress #4: reseek API. 1348 Modules: dictionary API work in progress #3: Iterator creation. 1352 Modules: dictionary API work in progress #2: Del API. 1356 Modules: dictionary API work in progress #1. [all …]
|
| /f-stack/dpdk/drivers/ |
| H A D | meson.build | 222 # create a dependency object and add it to the global dictionary so
|
| /f-stack/freebsd/contrib/device-tree/Bindings/ |
| H A D | example-schema.yaml | 36 # A dictionary of DT properties for this binding schema
|