Home
last modified time | relevance | path

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

12

/dragonfly/contrib/gdb-7/gdb/
H A Ddictionary.c167 struct dictionary struct
356 struct dictionary *
360 struct dictionary *retval; in dict_create_hashed()
400 extern struct dictionary *
403 struct dictionary *retval; in dict_create_hashed_expandable()
420 struct dictionary *
424 struct dictionary *retval; in dict_create_linear()
465 struct dictionary *
468 struct dictionary *retval; in dict_create_linear_expandable()
488 dict_free (struct dictionary *dict) in dict_free()
[all …]
H A Ddictionary.h31 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);
90 extern void dict_add_pending (struct dictionary *dict,
95 extern int dict_empty (struct dictionary *dict);
105 const struct dictionary *dict;
115 extern struct symbol *dict_iterator_first (const struct dictionary *dict,
[all …]
H A Dblock.h83 struct dictionary *dict;
/dragonfly/games/boggle/dictfiles/
H A DMakefile10 FILES= dictindex dictionary helpfile
13 CLEANFILES= dictindex dictionary
15 dictionary: target
18 dictindex: dictionary
/dragonfly/contrib/zstd/
H A DCHANGELOG20 api : fix : dictionary compression correctly respects dictionary compression level (see #2303) (iss…
165 api: Fix ZSTD_decompressDCtx() corner cases with a dictionary
189 misc: Optimize dictionary memory usage in corner cases
190 misc: Improve the dictionary builder on small or homogeneous data
223 perf: much faster dictionary builder, by @jenniferliu
237 perf: much faster dictionary compression, by @felixhandte
263 api : implemented all advanced dictionary decompression prototypes
511 Fixed : Legacy codec v0.5 compatible with dictionary decompression
531 New : dictionary builder utility
532 Changed : streaming & dictionary API
[all …]
/dragonfly/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 …
H A Dcompress298 0 name zstd-dictionary-id
332 >4 use zstd-dictionary-id
335 >4 use zstd-dictionary-id
338 0 lelong 0xEC30A437 Zstandard dictionary
339 !:mime application/x-std-dictionary
H A Dwordprocessors70 >>9 byte 11 WordPerfect dictionary
141 >>9 byte 34 WordPerfect dictionary rules
179 # external spell dictionary .LEX
180 #>>9 byte 47 WordPerfect external spell dictionary
366 >>9 byte 11 Corel WordPerfect dictionary advise
H A Dforth19 # Various dictionary images used by OpenFirware FORTH environment
/dragonfly/games/boggle/
H A DREADME26 mkdict.c - convert a word list to a bog dictionary
27 mkindex.c - create an index file for the bog dictionary
28 showdict.c - print a bog dictionary to stdout
45 This will make all the binaries and create the dictionary and index files
/dragonfly/share/dict/
H A DREADME36 documentation. It makes a great ispell(1) personal dictionary to
37 supplement the standard English language dictionary.
/dragonfly/tools/tools/net80211/wesside/
H A DREADME20 * Binds to a tap interface to allow TX. RX works if a dictionary is being built
32 To build a dictionary:
/dragonfly/contrib/zlib-1.2/
H A Dinflate.c1291 int ZEXPORT inflateGetDictionary(strm, dictionary, dictLength) in inflateGetDictionary() argument
1293 Bytef *dictionary;
1303 if (state->whave && dictionary != Z_NULL) {
1304 zmemcpy(dictionary, state->window + state->wnext,
1306 zmemcpy(dictionary + state->whave - state->wnext,
1314 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument
1316 const Bytef *dictionary;
1332 dictid = adler32(dictid, dictionary, dictLength);
1339 ret = updatewindow(strm, dictionary + dictLength, dictLength);
H A Dzlib.h612 const Bytef *dictionary,
656 Bytef *dictionary,
885 const Bytef *dictionary,
908 Bytef *dictionary,
H A Ddeflate.c376 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument
378 const Bytef *dictionary;
387 if (deflateStateCheck(strm) || dictionary == Z_NULL)
396 strm->adler = adler32(strm->adler, dictionary, dictLength);
407 dictionary += dictLength - s->w_size; /* use the tail */
415 strm->next_in = (z_const Bytef *)dictionary;
445 int ZEXPORT deflateGetDictionary (strm, dictionary, dictLength) in deflateGetDictionary() argument
447 Bytef *dictionary;
459 if (dictionary != Z_NULL && len)
460 zmemcpy(dictionary, s->window + s->strstart + s->lookahead - len, len);
/dragonfly/games/boggle/boggle/
H A Dhelpfile26 -b: batch mode (boardspec must be present); dictionary read from stdin
41 game's dictionary. The (N+1)th cube in the word must be horizontally,
/dragonfly/sys/net/
H A Dzlib.h652 const Bytef *dictionary,
775 const Bytef *dictionary,
H A Dzlib.c828 deflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in deflateSetDictionary() argument
835 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL) in deflateSetDictionary()
841 strm->adler = adler32(strm->adler, dictionary, dictLength); in deflateSetDictionary()
847 dictionary += dictLength - length; /* use the tail of the dictionary */ in deflateSetDictionary()
850 zmemcpy((charf *)s->window, dictionary, length); in deflateSetDictionary()
3340 inflateSetDictionary(z_streamp z, const Bytef *dictionary, uInt dictLength) argument
3347 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
3353 dictionary += dictLength - length;
3355 inflate_set_dictionary(z->state->blocks, dictionary, length);
/dragonfly/stand/boot/pc32/loader/
H A Dversion11 0.6: Increased dictionary size -- supports loader.4th
/dragonfly/stand/boot/pc32/loader_tftp/
H A Dversion11 0.6: Increased dictionary size -- supports loader.4th
/dragonfly/usr.sbin/installer/libaura/
H A DREADME10 it provides dictionary and extensible buffer data types, memory management
/dragonfly/usr.bin/dfregress/
H A DNOTES76 - add collected rusage into output dictionary
/dragonfly/lib/libc/db/test/
H A DREADME9 To run the tests, enter "sh run.test". If your system dictionary isn't
/dragonfly/sys/dev/disk/dm/doc/
H A Ddesign.txt381 dictionary to store children dictionaries with target data.
407 dictionary and more children dictionaries.

12