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

12345

/netbsd-current/games/boggle/
H A DMakefile13 DICTFILES=dictionary dictindex
28 dictionary: ${WORDS} ${MKDICT}
33 dictindex: dictionary ${MKINDEX}
36 ${MKINDEX} < dictionary > ${.TARGET}
/netbsd-current/external/gpl3/gdb.old/dist/ld/testsuite/ld-ctf/
H A Ddiag-parname.d4 #name: Diagnostics - No parent dictionary
5 #warning: CTF linking failed; output will have no CTF section: The parent CTF dictionary is unavailable
/netbsd-current/external/gpl2/groff/dist/src/roff/troff/
H A Ddictionary.h1 /* $NetBSD: dictionary.h,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */
34 class dictionary;
37 dictionary *dict;
40 dictionary_iterator(dictionary &);
44 class dictionary { class
52 dictionary(int);
79 dictionary d;
H A DMakefile.sub6 dictionary.$(OBJEXT) \
16 $(srcdir)/dictionary.cpp \
27 $(srcdir)/dictionary.h \
H A Ddictionary.cpp1 /* $NetBSD: dictionary.cpp,v 1.1.1.1 2016/01/13 18:41:48 christos Exp $ */
26 #include "dictionary.h"
43 dictionary::dictionary(int n) : size(n), used(0), threshold(0.5), factor(1.5) function in class:dictionary
51 void *dictionary::lookup(symbol s, void *v)
87 void *dictionary::lookup(const char *p)
98 void *dictionary::remove(symbol s)
126 dictionary_iterator::dictionary_iterator(dictionary &d) : dict(&d), i(0)
/netbsd-current/external/gpl3/gdb.old/dist/gdb/
H A Ddictionary.c28 #include "dictionary.h"
35 dictionary'. That type has various internal implementations, which
39 Each dictionary starts with a 'virtual function table' that
45 To add a new dictionary implementation <impl>, what you should do
67 gizmos. Add its declaration to dictionary.h.
87 dict_<op> to dictionary.h. */
108 /* The type of the dictionary. This is only here to make debugging
111 /* The function to free a dictionary. */
112 void (*free) (struct dictionary *dict);
113 /* Add a symbol to a dictionary, i
167 struct dictionary struct
[all...]
H A Ddictionary.h28 /* An opaque type for multi-language dictionaries; only dictionary.c should
43 /* Create a multi-language dictionary of symbols implemented via
51 /* Create a multi-language dictionary of symbols, implemented
52 via a hashtable that grows as necessary. The initial dictionary of
59 /* Create a multi-language dictionary of symbols, implemented
69 /* Create a multi-language dictionary of symbols, implemented
71 contains a single empty dictionary of LANGUAGE; to add symbols to it,
97 in a dictionary. Don't ever look at its innards; this type would
103 /* The dictionary that this iterator is associated to. */
104 const struct dictionary *dic
[all...]
/netbsd-current/external/gpl3/gdb/dist/gdb/
H A Ddictionary.c28 #include "dictionary.h"
35 dictionary'. That type has various internal implementations, which
39 Each dictionary starts with a 'virtual function table' that
45 To add a new dictionary implementation <impl>, what you should do
67 gizmos. Add its declaration to dictionary.h.
87 dict_<op> to dictionary.h. */
108 /* The type of the dictionary. This is only here to make debugging
111 /* The function to free a dictionary. */
112 void (*free) (struct dictionary *dict);
113 /* Add a symbol to a dictionary, i
167 struct dictionary struct
[all...]
H A Ddictionary.h28 /* An opaque type for multi-language dictionaries; only dictionary.c should
43 /* Create a multi-language dictionary of symbols implemented via
51 /* Create a multi-language dictionary of symbols, implemented
52 via a hashtable that grows as necessary. The initial dictionary of
59 /* Create a multi-language dictionary of symbols, implemented
69 /* Create a multi-language dictionary of symbols, implemented
71 contains a single empty dictionary of LANGUAGE; to add symbols to it,
97 in a dictionary. Don't ever look at its innards; this type would
103 /* The dictionary that this iterator is associated to. */
104 const struct dictionary *dic
[all...]
/netbsd-current/external/gpl2/groff/dist/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...]
/netbsd-current/external/mit/xorg/lib/brotli/
H A Dbrotli.mk8 BROTLI_SRCS+= constants.c context.c dictionary.c platform.c transform.c
/netbsd-current/external/gpl2/groff/bin/troff/
H A DMakefile11 SRCS= dictionary.cpp div.cpp env.cpp input.cpp \
/netbsd-current/external/gpl3/gcc.old/dist/libphobos/src/etc/c/
H A Dzlib.d503 If a preset dictionary is needed after this call (see inflateSetDictionary
504 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
523 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
631 int deflateSetDictionary(z_streamp strm, const(ubyte)* dictionary, uint dictLength);
633 Initializes the compression dictionary from the given byte sequence
641 compressor and decompressor must use exactly the same dictionary (see
644 The dictionary should consist of strings (byte sequences) that are likely
646 used strings preferably put towards the end of the dictionary. Using a
647 dictionary is most useful when the data to be compressed is short and can be
649 with the default empty dictionary
[all...]
/netbsd-current/external/gpl3/gcc/dist/libphobos/src/etc/c/
H A Dzlib.d507 If a preset dictionary is needed after this call (see inflateSetDictionary
508 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
527 preset dictionary is needed at this point, Z_DATA_ERROR if the input data was
634 int deflateSetDictionary(z_streamp strm, const(ubyte)* dictionary, uint dictLength);
636 Initializes the compression dictionary from the given byte sequence
644 compressor and decompressor must use exactly the same dictionary (see
647 The dictionary should consist of strings (byte sequences) that are likely
649 used strings preferably put towards the end of the dictionary. Using a
650 dictionary is most useful when the data to be compressed is short and can be
652 with the default empty dictionary
[all...]
/netbsd-current/common/dist/zlib/contrib/pascal/
H A Dexample.pas33 const dictionary: PChar = 'hello';
35 var dictId: LongInt; (* Adler32 value of the dictionary *)
447 * Test deflate with preset dictionary
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
481 * Test inflate with a preset dictionary
512 EXIT_ERR('unexpected dictionary');
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
524 WriteLn('inflate with dictionary
[all...]
/netbsd-current/external/gpl3/gdb.old/dist/zlib/contrib/pascal/
H A Dexample.pas33 const dictionary: PChar = 'hello';
35 var dictId: LongInt; (* Adler32 value of the dictionary *)
447 * Test deflate with preset dictionary
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
481 * Test inflate with a preset dictionary
512 EXIT_ERR('unexpected dictionary');
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
524 WriteLn('inflate with dictionary
[all...]
/netbsd-current/external/gpl3/binutils/dist/zlib/contrib/pascal/
H A Dexample.pas33 const dictionary: PChar = 'hello';
35 var dictId: LongInt; (* Adler32 value of the dictionary *)
447 * Test deflate with preset dictionary
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
481 * Test inflate with a preset dictionary
512 EXIT_ERR('unexpected dictionary');
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
524 WriteLn('inflate with dictionary
[all...]
/netbsd-current/external/gpl3/gdb/dist/zlib/contrib/pascal/
H A Dexample.pas33 const dictionary: PChar = 'hello';
35 var dictId: LongInt; (* Adler32 value of the dictionary *)
447 * Test deflate with preset dictionary
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
481 * Test inflate with a preset dictionary
512 EXIT_ERR('unexpected dictionary');
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
524 WriteLn('inflate with dictionary
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/zlib/contrib/pascal/
H A Dexample.pas33 const dictionary: PChar = 'hello';
35 var dictId: LongInt; (* Adler32 value of the dictionary *)
447 * Test deflate with preset dictionary
461 err := deflateSetDictionary(c_stream, dictionary, StrLen(dictionary));
481 * Test inflate with a preset dictionary
512 EXIT_ERR('unexpected dictionary');
513 err := inflateSetDictionary(d_stream, dictionary, StrLen(dictionary));
524 WriteLn('inflate with dictionary
[all...]
/netbsd-current/usr.bin/fgen/
H A Dfgen.l78 static struct fcode *dictionary = NULL;
810 * Insert fcode into dictionary.
852 * Look for a code in the dictionary.
933 * Bootstrap the dictionary and then install
942 ASSERT(dictionary == NULL);
944 dictionary = code;
948 if(!fadd(dictionary, code)) {
949 warnx("%s: duplicate dictionary entry `%s'", __func__,
1236 /* Add new code to dictionary */
1240 if (!fadd(dictionary, fcod
[all...]
/netbsd-current/external/apache2/llvm/dist/clang/tools/clang-format/
H A Dgit-clang-format188 """Return the git configuration as a dictionary.
191 is a dictionary mapping option name (in lower case) to either "--bool" or
305 The return value is a dictionary mapping filename to a list of (start_line,
328 def filter_by_extension(dictionary, allowed_extensions):
329 """Delete every key in `dictionary` that doesn't have an allowed extension.
334 for filename in list(dictionary.keys()):
339 del dictionary[filename]
342 def filter_symlinks(dictionary):
343 """Delete every key in `dictionary` that is a symlink."""
344 for filename in list(dictionary
[all...]
/netbsd-current/external/bsd/file/dist/tests/
H A DMakefile.am119 zstd-dictionary-0.result \
120 zstd-dictionary-1.result \
121 zstd-dictionary-2.result \
/netbsd-current/external/gpl3/binutils/dist/zlib/
H A Dexample.c34 const char dictionary[] = "hello"; variable
35 uLong dictId; /* Adler32 value of the dictionary */
424 * Test deflate() with preset dictionary
441 (const Bytef*)dictionary, sizeof(dictionary));
461 * Test inflate() with a preset dictionary
490 fprintf(stderr, "unexpected dictionary");
493 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
494 sizeof(dictionary));
506 printf("inflate with dictionary
[all...]
/netbsd-current/external/gpl3/binutils.old/dist/zlib/test/
H A Dexample.c34 static const char dictionary[] = "hello"; variable
35 static 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...]
/netbsd-current/external/gpl3/binutils.old/dist/zlib/
H A Dexample.c34 const char dictionary[] = "hello"; variable
35 uLong dictId; /* Adler32 value of the dictionary */
424 * Test deflate() with preset dictionary
441 (const Bytef*)dictionary, sizeof(dictionary));
461 * Test inflate() with a preset dictionary
490 fprintf(stderr, "unexpected dictionary");
493 err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
494 sizeof(dictionary));
506 printf("inflate with dictionary
[all...]

Completed in 504 milliseconds

12345