Home
last modified time | relevance | path

Searched refs:dictionary (Results 1 – 25 of 83) sorted by relevance

1234

/freebsd-14.2/sys/contrib/zstd/doc/educational_decoder/
H A DMakefile58 -o dictionary
59 @$(ZSTD) -f README.md -D dictionary -o tmp.zst
60 @./harness tmp.zst tmp dictionary
62 @$(RM) tmp* dictionary
H A DREADME.md20 This can be reduced even further by foregoing dictionary support,
25 harness <input-file> <output-file> [dictionary]
/freebsd-14.2/sys/contrib/xz-embedded/linux/Documentation/
H A Dxz.txt49 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
/freebsd-14.2/sys/contrib/zstd/programs/
H A DREADME.md110 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`
184 --no-dictID : don't write dictID into header (dictionary compression only)
199 --train ## : create a dictionary from a training set of files
203 -o DICT : DICT is dictionary name (default: dictionary)
204 --maxdict=# : limit dictionary to specified size (default: 112640)
205 --dictID=# : force dictionary ID to specified value (default: random)
296 `zstdgrep` is _not_ compatible with dictionary compression.
298 To search into a file compressed with a dictionary,
[all …]
H A Dzstd.1.md94 Use FILEs as a training set to create a dictionary.
182 do not store dictionary ID within frame header (dictionary compression).
308 the result of which is saved into a file called a `dictionary`.
314 Use FILEs as training set to create a dictionary.
316 and weight typically 100x the target dictionary size
317 (for example, 10 MB for a 100 KB dictionary).
327 Dictionary saved into `file` (default name: dictionary).
329 Limit dictionary to specified size (default: 112640).
339 A dictionary ID is a locally unique ID
366 to find optimal _d_ and _k_ to build dictionary.
[all …]
/freebsd-14.2/contrib/file/magic/Magdir/
H A Dclaris26 # .msp a dictionary file I am not sure about this I have only one .msp file
27 0 string \002\271\262\000\040\002\000\164 Claris works dictionary
29 # .usp are user dictionary bits
H A Dmsvc32 # test for RecordType~LibraryHeaderRecord=0xF0 + RecordLength=???Dh + dictionary offset is multiple…
54 # dictionary offset like: 400h 600h a00h c00h 1200h 1800h 2400h 5600h 12800h 19200h 28a00h
55 >3 ulelong x \b, at %#x dictionary
56 # dictionary block a 512 bytes; the first 37 bytes correspond to the 37 buckets
58 # dictionary size; length in 512-byte blocks; a prime number? like:
63 # If dictionary byte 38 (FFLAG) has the value 255, there is no space left
66 # dictionary entry; length byte of following symbol, the following text bytes of symbol, two bytes …
/freebsd-14.2/sys/contrib/zstd/
H A DCHANGELOG21 cli : custom memory limit when training dictionary (#2925), by @embg
45 bug: Fix large dictionary non-determinism (#2607, @terrelln)
125 api : fix : dictionary compression correctly respects dictionary compression level (see #2303) (iss…
270 api: Fix ZSTD_decompressDCtx() corner cases with a dictionary
294 misc: Optimize dictionary memory usage in corner cases
295 misc: Improve the dictionary builder on small or homogeneous data
328 perf: much faster dictionary builder, by @jenniferliu
342 perf: much faster dictionary compression, by @felixhandte
636 New : dictionary builder utility
637 Changed : streaming & dictionary API
[all …]
H A DREADME.md93 …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
/freebsd-14.2/sys/contrib/zlib/doc/
H A Drfc1950.txt154 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 …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.cpp500 auto dictionary = std::make_shared<StructuredData::Dictionary>(); in Handle_jSignalsInfo() local
502 dictionary->AddIntegerItem("signo", signo); in Handle_jSignalsInfo()
503 dictionary->AddStringItem("name", signals->GetSignalAsStringRef(signo)); in Handle_jSignalsInfo()
507 dictionary->AddBooleanItem("suppress", suppress); in Handle_jSignalsInfo()
508 dictionary->AddBooleanItem("stop", stop); in Handle_jSignalsInfo()
509 dictionary->AddBooleanItem("notify", notify); in Handle_jSignalsInfo()
511 signal_array.Push(dictionary); in Handle_jSignalsInfo()
/freebsd-14.2/share/dict/
H A DREADME31 documentation. It makes a great ispell(1) personal dictionary to
32 supplement the standard English language dictionary.
/freebsd-14.2/tools/tools/net80211/wesside/
H A DREADME19 * Binds to a tap interface to allow TX. RX works if a dictionary is being built
31 To build a dictionary:
/freebsd-14.2/sys/contrib/zstd/examples/
H A DREADME.md40 Compress multiple files using the same dictionary.
44 Decompress multiple files using the same dictionary.
/freebsd-14.2/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c44 struct dictionary { struct
268 struct dictionary dict;
290 static void dict_reset(struct dictionary *dict, struct xz_buf *b) in dict_reset()
304 static void dict_limit(struct dictionary *dict, size_t out_max) in dict_limit()
313 static inline bool dict_has_space(const struct dictionary *dict) in dict_has_space()
324 static inline uint32_t dict_get(const struct dictionary *dict, uint32_t dist) in dict_get()
337 static inline void dict_put(struct dictionary *dict, uint8_t byte) in dict_put()
350 static bool dict_repeat(struct dictionary *dict, uint32_t *len, uint32_t dist) in dict_repeat()
378 static void dict_uncompressed(struct dictionary *dict, struct xz_buf *b, in dict_uncompressed()
437 static uint32_t dict_flush(struct dictionary *dict, struct xz_buf *b) in dict_flush()
/freebsd-14.2/sys/contrib/zlib/test/
H A Dexample.c34 static const char dictionary[] = "hello"; variable
420 (const Bytef*)dictionary, (int)sizeof(dictionary)); in test_dict_deflate()
470 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary, in test_dict_inflate()
471 (int)sizeof(dictionary)); in test_dict_inflate()
/freebsd-14.2/contrib/file/tests/
H A Dzstd-dictionary-1.result1 Zstandard dictionary (ID 1)
H A Dzstd-dictionary-2.result1 Zstandard dictionary (ID 285212672)
H A Dzstd-dictionary-0.result1 Zstandard dictionary (ID 0)
H A DMakefile.am119 zstd-dictionary-0.result \
120 zstd-dictionary-1.result \
121 zstd-dictionary-2.result \
/freebsd-14.2/sys/contrib/zstd/zlibWrapper/examples/
H A Dexample.c56 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));
H A Dexample_original.c51 const char dictionary[] = "hello"; variable
489 (const Bytef*)dictionary, (int)sizeof(dictionary));
541 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
542 (int)sizeof(dictionary));
/freebsd-14.2/tools/build/options/
H A DWITHOUT_DICT1 Do not build the Webster dictionary files.
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp150 StructuredData::DictionarySP dictionary = in GetDynamicRegisterInfo() local
152 if (!dictionary) in GetDynamicRegisterInfo()
156 *dictionary, m_process->GetTarget().GetArchitecture()); in GetDynamicRegisterInfo()
/freebsd-14.2/stand/i386/loader/
H A Dversion6 0.6: Increased dictionary size -- supports loader.4th

1234