Lines Matching refs:dictLength
422 …EFIX(deflateSetDictionary)(PREFIX3(stream) *strm, const uint8_t *dictionary, uint32_t dictLength) { in PREFIX()
438 strm->adler = functable.adler32(strm->adler, dictionary, dictLength); in PREFIX()
439 DEFLATE_SET_DICTIONARY_HOOK(strm, dictionary, dictLength); /* hook for IBM Z DFLTCC */ in PREFIX()
443 if (dictLength >= s->w_size) { in PREFIX()
450 dictionary += dictLength - s->w_size; /* use the tail */ in PREFIX()
451 dictLength = s->w_size; in PREFIX()
457 strm->avail_in = dictLength; in PREFIX()
481 …RT PREFIX(deflateGetDictionary)(PREFIX3(stream) *strm, uint8_t *dictionary, uint32_t *dictLength) { in PREFIX()
487 DEFLATE_GET_DICTIONARY_HOOK(strm, dictionary, dictLength); /* hook for IBM Z DFLTCC */ in PREFIX()
494 if (dictLength != NULL) in PREFIX()
495 *dictLength = len; in PREFIX()