| /src/usr.bin/spell/spell/ | 
| spell.sh | 29 DICT=/usr/share/dict/words 30 LOCAL_DICT=/usr/local/share/dict/words
 31 STOP=/usr/share/dict/stop
 32 LOCAL_STOP=/usr/local/share/dict/stop
 33 AMERICAN=/usr/share/dict/american
 34 BRITISH=/usr/share/dict/british
 49 	DICT="$DICT $LOCAL_DICT"
 77 	d)	DICT="$OPTARG
 [all...]
 | 
| /src/games/boggle/boggle/ | 
| bog.h | 43 #define DICT			"/usr/share/games/boggle/dictionary" 
 | 
| bog.c | 214 	if ((dictfp = opendict(DICT)) == NULL) { 215 		warn("%s", DICT);
 221 		warnx("can't load %s", DICT);
 
 | 
| /src/sys/external/isc/libsodium/dist/m4/ | 
| ltsugar.m4 | 89 # lt_dict_add(DICT, KEY, VALUE) 95 # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
 101 # lt_dict_fetch(DICT, KEY, [SUBKEY])
 109 # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
 117 # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
 
 | 
| /src/usr.bin/look/ | 
| look.c | 73  * FOLD and DICT convert characters to a normal form for comparison, 76  * DICT expects integers because it uses a non-character value to
 85 #define	DICT(c)	(isascii(c) && isalnum(c) ? (c) : NO_COMPARE)
 167 			ch = DICT(ch);
 314 			ch = DICT(ch);
 
 | 
| /src/common/dist/zlib/ | 
| inflate.h | 31     DICT,       /* waiting for inflateSetDictionary() call */ 65         DICTID -> DICT -> TYPE
 
 | 
| inflate.c | 823             state->mode = DICT; 825         case DICT:
 1316     if (state->wrap != 0 && state->mode != DICT)
 1320     if (state->mode == DICT) {
 
 | 
| /src/common/dist/zlib/examples/ | 
| gzlog.c | 33    foo.dict -- dictionary of the last 32K of data for next compression 191    - Compress the data with the dictionary in foo.dict, and write to the
 193      compressed block.  If there is no foo.dict, proceed anyway with the
 194      compression at slightly reduced efficiency.  (For the foo.dict file to be
 207    - Replace foo.dict with foo.temp.
 269 #define DICT 32768U
 564 /* Replace the foo.dict file with the foo.temp file.  Also delete the foo.add
 581     /* rename foo.name to foo.dict, replacing foo.dict if it exists */
 582     strcpy(log->end, ".dict");
 612  ssize_t dict;  local in function:log_compress
 [all...]
 | 
| /src/usr.bin/sed/TEST/ | 
| sed.test | 52 	DICT=/usr/share/dict/words 452 		sed '200q' $DICT | sed 's$.*$s/^/&/w tmpdir/&$' >script1
 
 | 
| /src/common/dist/zlib/test/ | 
| infcover.c | 330             ((struct inflate_state *)strm.state)->mode = DICT; 392     unsigned char dict[257];  local in function:cover_wrap
 425     memset(dict, 0, 257);
 426     ret = inflateSetDictionary(&strm, dict, 257);
 
 |