Home | History | Annotate | Download | only in zlib

Lines Matching refs:dictionary

361    It is also called to create a window for dictionary data when a dictionary
1287 int ZEXPORT inflateGetDictionary(z_streamp strm, Bytef *dictionary,
1295 /* copy dictionary */
1296 if (state->whave && dictionary != Z_NULL) {
1297 zmemcpy(dictionary, state->window + state->wnext,
1299 zmemcpy(dictionary + state->whave - state->wnext,
1307 int ZEXPORT inflateSetDictionary(z_streamp strm, const Bytef *dictionary,
1319 /* check for correct dictionary identifier */
1322 dictid = adler32(dictid, dictionary, dictLength);
1327 /* copy dictionary to window using updatewindow(), which will amend the
1328 existing dictionary if appropriate */
1329 ret = updatewindow(strm, dictionary + dictLength, dictLength);
1335 dictionary set\n"));