| /freebsd-12.1/contrib/gdb/gdb/ |
| H A D | dictionary.c | 168 struct dictionary struct 351 struct dictionary * 355 struct dictionary *retval; in dict_create_hashed() 395 extern struct dictionary * 398 struct dictionary *retval; in dict_create_hashed_expandable() 415 struct dictionary * 419 struct dictionary *retval; in dict_create_linear() 460 struct dictionary * 463 struct dictionary *retval; in dict_create_linear_expandable() 483 dict_free (struct dictionary *dict) in dict_free() [all …]
|
| H A D | dictionary.h | 31 struct dictionary; 47 extern struct dictionary *dict_create_hashed (struct obstack *obstack, 56 extern struct dictionary *dict_create_hashed_expandable (void); 63 extern struct dictionary *dict_create_linear (struct obstack *obstack, 72 extern struct dictionary *dict_create_linear_expandable (void); 82 extern void dict_free (struct dictionary *dict); 86 extern void dict_add_symbol (struct dictionary *dict, struct symbol *sym); 90 extern int dict_empty (struct dictionary *dict); 100 const struct dictionary *dict; 110 extern struct symbol *dict_iterator_first (const struct dictionary *dict, [all …]
|
| H A D | block.h | 32 struct dictionary; 83 struct dictionary *dict;
|
| /freebsd-12.1/sys/contrib/zstd/tests/ |
| H A D | invalidDictionaries.c | 34 } dictionary; typedef 36 static const dictionary dictionaries[] = { 42 const dictionary *dict; in main()
|
| H A D | test-zstd-speed.py | 161 if args.dictionary: 162 …5b1e%s -D %s %s' % (cpuSelector, executableName, args.lastCLevel, args.dictionary, testFilePath), … 228 if args.dictionary: 229 dictName = args.dictionary.rpartition('/')[2] 287 if args.dictionary: 288 args.dictionary = os.path.abspath(os.path.expanduser(args.dictionary)) 289 if not os.path.isfile(args.dictionary): 290 log("ERROR: Dictionary not found: " + args.dictionary) 310 print("dictionary=%s" % args.dictionary)
|
| H A D | zstreamtest.c | 243 if (!dictionary.start) { in basicUnitTests() 247 dictID = ZDICT_getDictID(dictionary.start, dictionary.filled); in basicUnitTests() 506 … { ZSTD_CDict* const cdict = ZSTD_createCDict(dictionary.start, dictionary.filled, 1 /*byRef*/ ); in basicUnitTests() 543 { ZSTD_DDict* const ddict = ZSTD_createDDict(dictionary.start, dictionary.filled); in basicUnitTests() 586 CHECK_Z( ZSTD_DCtx_loadDictionary_byReference(dctx, dictionary.start, dictionary.filled) ); in basicUnitTests() 588 ZSTD_CDict* const cdict = ZSTD_createCDict(dictionary.start, dictionary.filled, level); in basicUnitTests() 654 CHECK_Z( ZSTD_CCtx_refPrefix(zc, dictionary.start, dictionary.filled) ); in basicUnitTests() 667 CHECK_Z( ZSTD_DCtx_refPrefix(zd, dictionary.start, dictionary.filled) ); in basicUnitTests() 813 CHECK_Z( ZSTD_initDStream_usingDict(dstream, dictionary.start, dictionary.filled) ); in basicUnitTests() 836 ddict = ZSTD_createDDict(dictionary.start, dictionary.filled); in basicUnitTests() [all …]
|
| H A D | Makefile | 249 @$(RM) -f core *.o tmp* result* *.gcda dictionary *.zst \ 416 $(ZSTD) -d z000000.zst -D dictionary -o tmp0 && \ 417 $(ZSTD) -d z000001.zst -D dictionary -o tmp1 && \ 418 $(ZSTD) -d z000002.zst -D dictionary -o tmp2 && \ 419 $(ZSTD) -d z000003.zst -D dictionary -o tmp3 && \ 420 $(ZSTD) -d z000004.zst -D dictionary -o tmp4 && \
|
| /freebsd-12.1/sys/contrib/zstd/programs/ |
| H A D | README.md | 85 in a file selected with the `-o` option (default name is `dictionary`), 91 Hence, deploying one dictionary per type of data will provide the greater benefits. 95 Usage of the dictionary builder and created dictionaries with CLI: 97 1. Create the dictionary : `zstd --train PathToTrainingSet/* -o dictionaryName` 98 2. Compress with the dictionary: `zstd FILE -D dictionaryName` 99 3. Decompress with the dictionary: `zstd --decompress FILE.zst -D dictionaryName` 140 --no-dictID : don't write dictID into header (dictionary compression) 152 --train ## : create a dictionary from a training set of files 155 -o file : `file` is dictionary name (default: dictionary) 156 --maxdict=# : limit dictionary to specified size (default: 112640) [all …]
|
| H A D | zstd.1.md | 94 Use FILEs as a training set to create a dictionary. 140 do not store dictionary ID within frame header (dictionary compression). 190 the result of which is saved into a file called a `dictionary`. 196 Use FILEs as training set to create a dictionary. 198 and weight typically 100x the target dictionary size 199 (for example, 10 MB for a 100 KB dictionary). 206 Dictionary saved into `file` (default name: dictionary). 208 Limit dictionary to specified size (default: 112640). 217 using the right dictionary. 252 Use legacy dictionary builder algorithm with the given dictionary [all …]
|
| /freebsd-12.1/sys/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
|
| /freebsd-12.1/sys/contrib/zstd/doc/educational_decoder/ |
| H A D | Makefile | 30 @zstd -D dictionary README.md -o tmp.zst 31 @./harness tmp.zst tmp dictionary 33 @$(RM) -f tmp* dictionary
|
| /freebsd-12.1/contrib/subversion/subversion/libsvn_subr/lz4/ |
| H A D | lz4.c | 485 const BYTE* const dictionary = cctx->dictionary; in LZ4_compress_generic() local 486 const BYTE* const dictEnd = dictionary + cctx->dictSize; in LZ4_compress_generic() 545 lowLimit = dictionary; in LZ4_compress_generic() 631 lowLimit = dictionary; in LZ4_compress_generic() 949 const BYTE* p = (const BYTE*)dictionary; in LZ4_loadDict() 957 dict->dictionary = NULL; in LZ4_loadDict() 965 dict->dictionary = p; in LZ4_loadDict() 1036 streamPtr->dictionary = (const BYTE*)source; in LZ4_compress_fast_continue() 1057 streamPtr->dictionary = (const BYTE*)source; in LZ4_compress_forceExtDict() 1082 dict->dictionary = (const BYTE*)safeBuffer; in LZ4_saveDict() [all …]
|
| H A D | lz4internal.h | 252 LZ4LIB_API int LZ4_loadDict (LZ4_stream_t* streamPtr, const char* dictionary, int dictSize); 288 LZ4LIB_API int LZ4_setStreamDecode (LZ4_streamDecode_t* LZ4_streamDecode, const char* dictionary, i… 341 const uint8_t* dictionary; member 359 const unsigned char* dictionary; member
|
| /freebsd-12.1/contrib/file/magic/Magdir/ |
| H A D | claris | 26 # .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
|
| /freebsd-12.1/sys/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 …]
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerPlatform.cpp | 406 auto dictionary = std::make_shared<StructuredData::Dictionary>(); in Handle_jSignalsInfo() local 408 dictionary->AddIntegerItem("signo", signo); in Handle_jSignalsInfo() 409 dictionary->AddStringItem("name", signals->GetSignalAsCString(signo)); in Handle_jSignalsInfo() 413 dictionary->AddBooleanItem("suppress", suppress); in Handle_jSignalsInfo() 414 dictionary->AddBooleanItem("stop", stop); in Handle_jSignalsInfo() 415 dictionary->AddBooleanItem("notify", notify); in Handle_jSignalsInfo() 417 signal_array.Push(dictionary); in Handle_jSignalsInfo()
|
| /freebsd-12.1/sys/contrib/zstd/ |
| H A D | README.md | 75 …e per sample). The result of this training is stored in a file called "dictionary", which must be … 76 Using this dictionary, the compression ratio achievable on small data improves dramatically. 88 …orrelation in a family of small data samples. The more data-specific a dictionary is, the more eff… 89 Hence, deploying one dictionary per type of data will provide the greatest benefits. 94 1) Create the dictionary 98 2) Compress with dictionary 102 3) Decompress with dictionary
|
| H A D | NEWS | 13 api : implemented all advanced dictionary decompression prototypes 41 cli : new : can split input file for dictionary training, using command -B# 80 tools : decodecorpus can generate random dictionary-compressed samples, by Paul Cruz 89 cli : changed : cover dictionary builder by default, for improved quality, by Nick Terrell 113 memory: DDict (decompression dictionary) memory usage down from 150 KB to 20 KB 129 dictBuilder : improved dictionary generation quality, thanks to Nick Terrell 252 API : create dictionary files from custom content, by Giuseppe Ottaviano 261 Fixed : Legacy codec v0.5 compatible with dictionary decompression 281 New : dictionary builder utility 282 Changed : streaming & dictionary API [all …]
|
| /freebsd-12.1/sys/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()
|
| /freebsd-12.1/share/dict/ |
| H A D | README | 32 documentation. It makes a great ispell(1) personal dictionary to 33 supplement the standard English language dictionary.
|
| /freebsd-12.1/tools/tools/net80211/wesside/ |
| H A D | README | 20 * Binds to a tap interface to allow TX. RX works if a dictionary is being built 32 To build a dictionary:
|
| /freebsd-12.1/sys/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));
|
| /freebsd-12.1/sys/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));
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/ |
| H A D | OperatingSystemPython.cpp | 127 StructuredData::DictionarySP dictionary = in GetDynamicRegisterInfo() local 129 if (!dictionary) in GetDynamicRegisterInfo() 133 *dictionary, m_process->GetTarget().GetArchitecture())); in GetDynamicRegisterInfo()
|