Lines Matching refs:dictLength
426 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument
429 uInt dictLength;
446 strm->adler = adler32(strm->adler, dictionary, dictLength);
450 if (dictLength >= s->w_size) {
457 dictionary += dictLength - s->w_size; /* use the tail */
458 dictLength = s->w_size;
464 strm->avail_in = dictLength;
491 int ZEXPORT deflateGetDictionary (strm, dictionary, dictLength) in deflateGetDictionary() argument
494 uInt *dictLength;
507 if (dictLength != Z_NULL)
508 *dictLength = len;