Searched refs:dictionary (Results 1 - 24 of 24) sorted by relevance

/freebsd-10.2-release/contrib/gdb/gdb/
H A Ddictionary.h28 /* An opaque type for dictionaries; only dictionary.c should know
31 struct dictionary;
43 /* Create a dictionary implemented via a fixed-size hashtable. All
47 extern struct dictionary *dict_create_hashed (struct obstack *obstack,
51 /* Create a dictionary implemented via a hashtable that grows as
52 necessary. The dictionary is initially empty; to add symbols to
56 extern struct dictionary *dict_create_hashed_expandable (void);
58 /* Create a dictionary implemented via a fixed-size array. All memory
63 extern struct dictionary *dict_create_linear (struct obstack *obstack,
67 /* Create a dictionary implemente
[all...]
H A Ddictionary.c30 #include "dictionary.h"
34 dictionary'. That type has various internal implementations, which
38 Each dictionary starts with a 'virtual function table' that
44 To add a new dictionary implementation <impl>, what you should do
66 gizmos. Add its declaration to dictionary.h.
86 dict_<op> to dictionary.h.
109 /* The type of the dictionary. This is only here to make debugging
112 /* The function to free a dictionary. */
113 void (*free) (struct dictionary *dict);
114 /* Add a symbol to a dictionary, i
168 struct dictionary struct
[all...]
H A Dblock.h32 struct dictionary;
83 struct dictionary *dict;
H A Dcp-support.c30 #include "dictionary.h"
594 const struct dictionary *dict;
/freebsd-10.2-release/contrib/groff/src/roff/troff/
H A Ddictionary.h32 class dictionary;
35 dictionary *dict;
38 dictionary_iterator(dictionary &);
42 class dictionary { class
50 dictionary(int);
77 dictionary d;
H A DMakefile.sub6 dictionary.$(OBJEXT) \
16 $(srcdir)/dictionary.cpp \
27 $(srcdir)/dictionary.h \
H A Ddictionary.cpp24 #include "dictionary.h"
41 dictionary::dictionary(int n) : size(n), used(0), threshold(0.5), factor(1.5) function in class:dictionary
49 void *dictionary::lookup(symbol s, void *v)
85 void *dictionary::lookup(const char *p)
96 void *dictionary::remove(symbol s)
124 dictionary_iterator::dictionary_iterator(dictionary &d) : dict(&d), i(0)
H A Denv.cpp23 #include "dictionary.h"
53 dictionary env_dictionary(10);
3362 void insert_hyphenation(dictionary *ex, const char *pat, int patlen);
3368 void read_patterns_file(const char *name, int append, dictionary *ex);
3373 dictionary exceptions;
3379 dictionary language_dictionary(5);
3536 void hyphen_trie::insert_hyphenation(dictionary *ex, const char *pat,
3665 dictionary *ex)
H A Dnode.cpp30 #include "dictionary.h"
5842 dictionary font_translation_dictionary(17);
5850 dictionary font_dictionary(50);
6031 dictionary family_dictionary(5);
H A Dinput.cpp25 #include "dictionary.h"
1157 dictionary color_dictionary(501);
3842 dictionary composite_dictionary(17);
6147 dictionary stream_dictionary(20);
8076 dictionary charinfo_dictionary(501);
8167 // of the number and store them in this dictionary.
8169 dictionary numbered_charinfo_dictionary(11);
/freebsd-10.2-release/contrib/groff/contrib/pdfmark/
H A Dpdfroff.sh146 help reference-dictionary no-reference-dictionary
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 i
[all...]
/freebsd-10.2-release/gnu/usr.bin/groff/src/roff/troff/
H A DMakefile4 SRCS= dictionary.cpp div.cpp env.cpp input.cpp \
/freebsd-10.2-release/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_lzma2.c41 * in which the dictionary variables address the actual output
44 struct dictionary { struct
55 * How full dictionary is. This is used to detect corrupt input that
64 * End of the dictionary buffer. In multi-call mode, this is
65 * the same as the dictionary size. In single-call mode, this
71 * Size of the dictionary as specified in Block Header. This is used
78 * Maximum allowed dictionary size in multi-call mode.
84 * Amount of memory currently allocated for the dictionary.
241 * True if dictionary reset is needed. This is false before
264 struct dictionary dic
[all...]
/freebsd-10.2-release/contrib/llvm/tools/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp143 PythonDictionary dictionary(m_interpreter->OSPlugin_RegisterInfo(m_python_object_sp));
144 if (!dictionary)
147 m_register_info_ap.reset (new DynamicRegisterInfo (dictionary, m_process->GetTarget().GetArchitecture().GetByteOrder()));
396 // We should have gotten the thread stop info from the dictionary of data for
/freebsd-10.2-release/sys/net/
H A Dzlib.h443 special marker is output and the compression dictionary is discarded; this
563 produced, Z_NEED_DICT if a preset dictionary is needed at this point (see
571 dictionary chosen by the compressor.
652 const Bytef *dictionary,
655 Initializes the compression dictionary (history buffer) from the given
659 dictionary (see inflateSetDictionary).
660 The dictionary should consist of strings (byte sequences) that are likely
662 used strings preferably put towards the end of the dictionary. Using a
663 dictionary is most useful when the data to be compressed is short and
665 than with the default empty dictionary
[all...]
H A Dzlib.c136 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
372 * and move to the first half later to keep a dictionary of at least wSize
567 * dictionary are very simple and thus fast, and deletions are avoided
712 * Insert string str in the dictionary and set match_head to the previous head
833 int deflateSetDictionary (strm, dictionary, dictLength)
835 const Bytef *dictionary;
843 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL)
849 strm->adler = adler32(strm->adler, dictionary, dictLength);
855 dictionary += dictLength - length; /* use the tail of the dictionary */
[all...]
/freebsd-10.2-release/lib/libz/test/
H A Dexample.c34 const char dictionary[] = "hello"; variable
35 uLong dictId; /* Adler32 value of the dictionary */
455 * Test deflate() with preset dictionary
472 (const Bytef*)dictionary, (int)sizeof(dictionary));
492 * Test inflate() with a preset dictionary
521 fprintf(stderr, "unexpected dictionary");
524 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
525 (int)sizeof(dictionary));
537 printf("inflate with dictionary
[all...]
/freebsd-10.2-release/lib/libz/
H A Dinflate.c370 It is also called to create a window for dictionary data when a dictionary
1268 int ZEXPORT inflateGetDictionary(strm, dictionary, dictLength)
1270 Bytef *dictionary;
1279 /* copy 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)
1293 const Bytef *dictionary;
[all...]
H A Dzlib.h474 If a preset dictionary is needed after this call (see inflateSetDictionary
475 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
495 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
588 const Bytef *dictionary,
591 Initializes the compression dictionary from the given byte sequence
599 compressor and decompressor must use exactly the same dictionary (see
602 The dictionary should consist of strings (byte sequences) that are likely
604 used strings preferably put towards the end of the dictionary. Using a
605 dictionary is most useful when the data to be compressed is short and can be
607 with the default empty dictionary
[all...]
H A Ddeflate.c16 * dictionary are very simple and thus fast, and deletions are avoided
171 * Insert string str in the dictionary and set match_head to the previous head
323 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength)
325 const Bytef *dictionary;
334 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL)
341 /* when using zlib wrappers, compute Adler-32 for provided dictionary */
343 strm->adler = adler32(strm->adler, dictionary, dictLength);
346 /* if dictionary would fill window, just replace the history */
354 dictionary += dictLength - s->w_size; /* use the tail */
358 /* insert dictionary int
[all...]
/freebsd-10.2-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dzlib.h432 If a preset dictionary is needed after this call (see inflateSetDictionary
433 below), inflate sets strm->adler to the adler32 checksum of the dictionary
451 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
541 const Bytef *dictionary,
544 Initializes the compression dictionary from the given byte sequence
548 dictionary (see inflateSetDictionary).
550 The dictionary should consist of strings (byte sequences) that are likely
552 used strings preferably put towards the end of the dictionary. Using a
553 dictionary is most useful when the data to be compressed is short and can be
555 with the default empty dictionary
[all...]
H A Dinflate.c321 It is also called to create a window for dictionary data when a dictionary
1196 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength)
1198 const Bytef *dictionary;
1210 /* check for correct dictionary id */
1213 id = adler32(id, dictionary, dictLength);
1218 /* copy dictionary to window */
1224 zmemcpy(state->window, dictionary + dictLength - state->wsize,
1229 zmemcpy(state->window + state->wsize - dictLength, dictionary,
1234 Tracev((stderr, "inflate: dictionary se
[all...]
H A Ddeflate.c23 * dictionary are very simple and thus fast, and deletions are avoided
179 * Insert string str in the dictionary and set match_head to the previous head
321 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength)
323 const Bytef *dictionary;
331 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL ||
338 strm->adler = adler32(strm->adler, dictionary, dictLength);
343 dictionary += dictLength - length; /* use the tail of the dictionary */
345 (void) zmemcpy(s->window, dictionary, length);
649 /* Save the adler32 of the preset dictionary
[all...]
/freebsd-10.2-release/gnu/usr.bin/gdb/libgdb/
H A DMakefile23 dbxread.c dcache.c demangle.c dictionary.c disasm.c doublest.c \

Completed in 129 milliseconds