Lines Matching refs:dictionary
134 #define PRESET_DICT 0x20 /* preset dictionary flag in zlib header */
388 * and move to the first half later to keep a dictionary of at least wSize
625 * dictionary are very simple and thus fast, and deletions are avoided
771 * Insert string str in the dictionary and set match_head to the previous head
899 const Bytef *dictionary,
907 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL)
913 strm->adler = adler32(strm->adler, dictionary, dictLength);
919 dictionary += dictLength - length; /* use the tail of the dictionary */
922 zmemcpy(s->window, dictionary, length);
1081 /* Save the adler32 of the preset dictionary: */
1697 * This function does not insert new strings in the dictionary since
1756 * new strings in the dictionary only for unmatched strings or for short
1779 * dictionary, and set hash_head to the head of the hash chain:
1874 * dictionary, and set hash_head to the head of the hash chain:
3352 const Bytef *d, /* dictionary */
3353 uInt n); /* dictionary length */
3373 DICT4, /* four dictionary check bytes to go */
3374 DICT3, /* three dictionary check bytes to go */
3375 DICT2, /* two dictionary check bytes to go */
3376 DICT1, /* one dictionary check byte to go */
3574 z->msg = "need dictionary";
3648 const Bytef *dictionary,
3656 if (adler32(1L, dictionary, dictLength) != z->adler) return Z_DATA_ERROR;
3662 dictionary += dictLength - length;
3664 inflate_set_dictionary(z->state->blocks, dictionary, length);
5612 "need dictionary", /* Z_NEED_DICT 2 */