Lines Matching defs:dictLength
414 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength)
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)
486 uInt *dictLength;
499 if (dictLength != Z_NULL)
500 *dictLength = len;