Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/zmod/
H A Dinflate.c1196 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument
1199 uInt dictLength;
1213 id = adler32(id, dictionary, dictLength);
1223 if (dictLength > state->wsize) {
1224 zmemcpy(state->window, dictionary + dictLength - state->wsize,
1229 zmemcpy(state->window + state->wsize - dictLength, dictionary,
1230 dictLength);
1231 state->whave = dictLength;
H A Dzlib.h542 uInt dictLength));
740 uInt dictLength));
H A Ddeflate.c321 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument
324 uInt dictLength;
327 uInt length = dictLength;
338 strm->adler = adler32(strm->adler, dictionary, dictLength);
343 dictionary += dictLength - length; /* use the tail of the dictionary */
/titanic_41/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h802 const Bytef *dictionary, uInt dictLength));
935 const Bytef *dictionary, uInt dictLength));
H A Dzlib.c947 deflateSetDictionary(strm, dictionary, dictLength) in deflateSetDictionary() argument
950 uInt dictLength;
953 uInt length = dictLength;
964 strm->adler = adler32(strm->adler, dictionary, dictLength);
972 dictionary += dictLength - length;
3894 inflateSetDictionary(z, dictionary, dictLength) in inflateSetDictionary() argument
3897 uInt dictLength;
3899 uInt length = dictLength;
3904 if (adler32(1L, dictionary, dictLength) != z->adler)
3911 dictionary += dictLength - length;