Lines Matching refs:dictLength
412 int ZEXPORT deflateSetDictionary(strm, dictionary, dictLength) in deflateSetDictionary() argument
415 uInt dictLength;
432 strm->adler = adler32(strm->adler, dictionary, dictLength);
436 if (dictLength >= s->w_size) {
443 dictionary += dictLength - s->w_size; /* use the tail */
444 dictLength = s->w_size;
450 strm->avail_in = dictLength;
481 int ZEXPORT deflateGetDictionary(strm, dictionary, dictLength) in deflateGetDictionary() argument
484 uInt *dictLength;
497 if (dictLength != Z_NULL)
498 *dictLength = len;