| /NextBSD/contrib/gdb/gdb/ |
| HD | dictionary.c | 113 void (*free) (struct dictionary *dict); 115 void (*add_symbol) (struct dictionary *dict, struct symbol *sym); 117 struct symbol *(*iterator_first) (const struct dictionary *dict, 121 struct symbol *(*iter_name_first) (const struct dictionary *dict, 127 int (*size) (const struct dictionary *dict); 168 struct dictionary struct 228 static void add_symbol_nonexpandable (struct dictionary *dict, 231 static void free_obstack (struct dictionary *dict); 236 static struct symbol *iterator_first_hashed (const struct dictionary *dict, 241 static struct symbol *iter_name_first_hashed (const struct dictionary *dict, [all …]
|
| HD | 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 …]
|
| HD | block.h | 32 struct dictionary; 83 struct dictionary *dict;
|
| /NextBSD/contrib/groff/src/roff/troff/ |
| HD | dictionary.h | 32 class dictionary; variable 35 dictionary *dict; 38 dictionary_iterator(dictionary &); 42 class dictionary { 50 dictionary(int); 77 dictionary d;
|
| HD | dictionary.cpp | 41 dictionary::dictionary(int n) : size(n), used(0), threshold(0.5), factor(1.5) in dictionary() function in dictionary 49 void *dictionary::lookup(symbol s, void *v) in lookup() 85 void *dictionary::lookup(const char *p) in lookup() 96 void *dictionary::remove(symbol s) in remove() 124 dictionary_iterator::dictionary_iterator(dictionary &d) : dict(&d), i(0) in dictionary_iterator()
|
| HD | Makefile.sub | 6 dictionary.$(OBJEXT) \ 16 $(srcdir)/dictionary.cpp \ 27 $(srcdir)/dictionary.h \
|
| /NextBSD/contrib/groff/contrib/pdfmark/ |
| HD | pdfroff.sh | 204 with the --reference-dictionary option, if processing a 205 document stream to produce only a reference dictionary. 207 --no-reference-dictionary 208 Suppress the generation of a '$CMD' reference dictionary 210 reference dictionary, at the start of document processing; 212 advance, that no reference dictionary is required. 214 --reference-dictionary=name 215 Save the document reference dictionary in file 'name'. 218 dictionary will be derived. If this option is not used, 219 then the reference dictionary, created during the normal
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/ |
| HD | GDBRemoteCommunicationServerPlatform.cpp | 268 auto dictionary = std::make_shared<StructuredData::Dictionary>(); in Handle_jSignalsInfo() local 270 dictionary->AddIntegerItem("signo", signo); in Handle_jSignalsInfo() 271 dictionary->AddStringItem("name", signals->GetSignalAsCString(signo)); in Handle_jSignalsInfo() 275 dictionary->AddBooleanItem("suppress", suppress); in Handle_jSignalsInfo() 276 dictionary->AddBooleanItem("stop", stop); in Handle_jSignalsInfo() 277 dictionary->AddBooleanItem("notify", notify); in Handle_jSignalsInfo() 279 signal_array.Push(dictionary); in Handle_jSignalsInfo()
|
| /NextBSD/sys/contrib/xz-embedded/linux/Documentation/ |
| HD | 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
|
| /NextBSD/contrib/file/magic/Magdir/ |
| HD | claris | 25 # .msp a dictionary file I am not sure about this I have only one .msp file 26 0 string \002\271\262\000\040\002\000\164 Claris works dictionary 28 # .usp are user dictionary bits
|
| /NextBSD/lib/libz/doc/ |
| HD | 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 289 immediately after the FLG byte. The dictionary is a sequence of 294 which dictionary has been used by the compressor. 320 (excluding any dictionary data) computed according to Adler-32 350 preset dictionary feature, the compressor must not set the FDICT 361 identifier of a known preset dictionary. A decompressor may 366 dictionary feature, a compliant decompressor must reject any [all …]
|
| /NextBSD/sys/contrib/xz-embedded/linux/lib/xz/ |
| HD | 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()
|
| /NextBSD/share/dict/ |
| HD | README | 32 documentation. It makes a great ispell(1) personal dictionary to 33 supplement the standard English language dictionary.
|
| /NextBSD/tools/tools/net80211/wesside/ |
| HD | README | 20 * Binds to a tap interface to allow TX. RX works if a dictionary is being built 32 To build a dictionary:
|
| /NextBSD/lib/libz/test/ |
| HD | example.c | 34 const char dictionary[] = "hello"; variable 472 (const Bytef*)dictionary, (int)sizeof(dictionary)); 524 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary, 525 (int)sizeof(dictionary));
|
| /NextBSD/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/ |
| HD | OperatingSystemPython.cpp | 143 …StructuredData::DictionarySP dictionary = m_interpreter->OSPlugin_RegisterInfo(m_python_object_sp); in GetDynamicRegisterInfo() local 144 if (!dictionary) in GetDynamicRegisterInfo() 147 …m_register_info_ap.reset(new DynamicRegisterInfo(*dictionary, m_process->GetTarget().GetArchitectu… in GetDynamicRegisterInfo()
|
| /NextBSD/lib/libz/ |
| HD | inflate.c | 1268 int ZEXPORT inflateGetDictionary(strm, dictionary, dictLength) in inflateGetDictionary() argument 1270 Bytef *dictionary; 1280 if (state->whave && dictionary != Z_NULL) { 1281 zmemcpy(dictionary, state->window + state->wnext, 1283 zmemcpy(dictionary + state->whave - state->wnext, 1291 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument 1293 const Bytef *dictionary; 1309 dictid = adler32(dictid, dictionary, dictLength); 1316 ret = updatewindow(strm, dictionary + dictLength, dictLength);
|
| HD | zlib.h | 588 const Bytef *dictionary, 820 const Bytef *dictionary, 843 Bytef *dictionary,
|
| /NextBSD/gnu/usr.bin/groff/src/roff/troff/ |
| HD | Makefile | 4 SRCS= dictionary.cpp div.cpp env.cpp input.cpp \
|
| /NextBSD/sys/boot/i386/loader/ |
| HD | version | 10 0.6: Increased dictionary size -- supports loader.4th
|
| /NextBSD/sys/sys/ |
| HD | zlib.h | 652 const Bytef *dictionary, 775 const Bytef *dictionary,
|
| /NextBSD/contrib/unbound/libunbound/python/doc/examples/ |
| HD | example3.rst | 36 …ethod is able to pass on any Python object. In this example, we used a dictionary object `my_data`.
|
| /NextBSD/contrib/xz/ |
| HD | TODO | 45 be mostly useful when using a preset dictionary in LZMA2, but 51 Adjust dictionary size when the input file size is known.
|
| /NextBSD/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| HD | zlib.h | 541 const Bytef *dictionary, 739 const Bytef *dictionary,
|
| /NextBSD/sys/boot/ficl/softwords/ |
| HD | forml.fr | 40 \ list dictionary thread
|