Home
last modified time | relevance | path

Searched refs:dictLength (Results 1 – 3 of 3) sorted by relevance

/xnu-8020.101.4/libkern/zlib/
H A Dinflate.c1215 inflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in inflateSetDictionary() argument
1229 id = adler32(id, dictionary, dictLength); in inflateSetDictionary()
1239 if (dictLength > state->wsize) { in inflateSetDictionary()
1240 zmemcpy(state->window, dictionary + dictLength - state->wsize, in inflateSetDictionary()
1245 zmemcpy(state->window + state->wsize - dictLength, dictionary, in inflateSetDictionary()
1246 dictLength); in inflateSetDictionary()
1247 state->whave = dictLength; in inflateSetDictionary()
H A Ddeflate.c336 deflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength) in deflateSetDictionary() argument
339 uInt length = dictLength; in deflateSetDictionary()
350 strm->adler = adler32(strm->adler, dictionary, dictLength); in deflateSetDictionary()
355 dictionary += dictLength - length; /* use the tail of the dictionary */ in deflateSetDictionary()
/xnu-8020.101.4/libkern/libkern/
H A Dzlib.h569 uInt dictLength));
776 uInt dictLength));