Home
last modified time | relevance | path

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

/illumos-gate/usr/src/contrib/zlib/
H A Dzlib.h612 uInt dictLength));
656 uInt *dictLength));
888 uInt dictLength));
911 uInt *dictLength));
H A Ddeflate.c414 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument
417 uInt dictLength;
434 strm->adler = adler32(strm->adler, dictionary, dictLength);
438 if (dictLength >= s->w_size) {
445 dictionary += dictLength - s->w_size; /* use the tail */
446 dictLength = s->w_size;
452 strm->avail_in = dictLength;
483 int ZEXPORT deflateGetDictionary (strm, dictionary, dictLength) in deflateGetDictionary() argument
486 uInt *dictLength;
499 if (dictLength != Z_NULL)
[all …]
H A Dinflate.c1296 uInt *dictLength) in inflateGetDictionary() argument
1311 if (dictLength != Z_NULL) in inflateGetDictionary()
1312 *dictLength = state->whave; in inflateGetDictionary()
1317 uInt dictLength) in inflateSetDictionary() argument
1332 dictid = adler32(dictid, dictionary, dictLength); in inflateSetDictionary()
1339 ret = updatewindow(strm, dictionary + dictLength, dictLength); in inflateSetDictionary()
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.h800 const Bytef *dictionary, uInt dictLength));
933 const Bytef *dictionary, uInt dictLength));
H A Dzlib.c945 deflateSetDictionary(strm, dictionary, dictLength) in deflateSetDictionary() argument
948 uInt dictLength;
951 uInt length = dictLength;
962 strm->adler = adler32(strm->adler, dictionary, dictLength);
970 dictionary += dictLength - length;
3892 inflateSetDictionary(z, dictionary, dictLength) in inflateSetDictionary() argument
3895 uInt dictLength;
3897 uInt length = dictLength;
3902 if (adler32(1L, dictionary, dictLength) != z->adler)
3909 dictionary += dictLength - length;
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/
H A Dratz.c3388 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument
3391 uInt dictLength;
3405 id = adler32(id, dictionary, dictLength);
3415 if (dictLength > state->wsize) {
3416 zmemcpy(state->window, dictionary + dictLength - state->wsize,
3421 zmemcpy(state->window + state->wsize - dictLength, dictionary,
3422 dictLength);
3423 state->whave = dictLength;