Lines Matching refs:dictLength
376 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument
379 uInt dictLength;
396 strm->adler = adler32(strm->adler, dictionary, dictLength);
400 if (dictLength >= s->w_size) {
407 dictionary += dictLength - s->w_size; /* use the tail */
408 dictLength = s->w_size;
414 strm->avail_in = dictLength;
445 int ZEXPORT deflateGetDictionary (strm, dictionary, dictLength) in deflateGetDictionary() argument
448 uInt *dictLength;
461 if (dictLength != Z_NULL)
462 *dictLength = len;