Home
last modified time | relevance | path

Searched refs:DICT (Results 1 – 6 of 6) sorted by relevance

/toolchain/binutils/binutils-2.27/
Dltsugar.m488 # lt_dict_add(DICT, KEY, VALUE)
94 # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
100 # lt_dict_fetch(DICT, KEY, [SUBKEY])
108 # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
116 # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
/toolchain/binutils/binutils-2.27/zlib/examples/
Dgzlog.c269 #define DICT 32768U macro
615 unsigned char buf[DICT]; in log_compress()
631 dict = read(fd, buf, DICT); in log_compress()
659 strm.avail_out = DICT; in log_compress()
662 got = DICT - strm.avail_out; in log_compress()
966 next = DICT > len ? len : DICT; in gzlog_compress()
/toolchain/binutils/binutils-2.27/zlib/
Dinflate.h31 DICT, /* waiting for inflateSetDictionary() call */ enumerator
Dinflate.c818 state->mode = DICT;
819 case DICT:
1303 if (state->wrap != 0 && state->mode != DICT)
1307 if (state->mode == DICT) {
/toolchain/binutils/binutils-2.27/zlib/doc/
Drfc1950.txt288 If FDICT is set, a DICT dictionary identifier is present
291 producing any compressed output. DICT is the Adler-32 checksum
/toolchain/binutils/binutils-2.27/zlib/test/
Dinfcover.c330 ((struct inflate_state *)strm.state)->mode = DICT; in inf()