Home
last modified time | relevance | path

Searched refs:dictLength (Results 1 – 4 of 4) sorted by relevance

/src/sys/contrib/zlib/
H A Dzlib.h620 uInt dictLength);
664 uInt *dictLength);
915 uInt dictLength);
938 uInt *dictLength);
H A Dinflate.c1168 uInt *dictLength) { in inflateGetDictionary() argument
1182 if (dictLength != Z_NULL) in inflateGetDictionary()
1183 *dictLength = state->whave; in inflateGetDictionary()
1188 uInt dictLength) { in inflateSetDictionary() argument
1202 dictid = adler32(dictid, dictionary, dictLength); in inflateSetDictionary()
1209 ret = updatewindow(strm, dictionary + dictLength, dictLength); in inflateSetDictionary()
H A Ddeflate.c560 uInt dictLength) { in deflateSetDictionary() argument
576 strm->adler = adler32(strm->adler, dictionary, dictLength); in deflateSetDictionary()
580 if (dictLength >= s->w_size) { in deflateSetDictionary()
587 dictionary += dictLength - s->w_size; /* use the tail */ in deflateSetDictionary()
588 dictLength = s->w_size; in deflateSetDictionary()
594 strm->avail_in = dictLength; in deflateSetDictionary()
626 uInt *dictLength) { in deflateGetDictionary() argument
638 if (dictLength != Z_NULL) in deflateGetDictionary()
639 *dictLength = len; in deflateGetDictionary()
/src/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c339 uInt dictLength)) in z_deflateSetDictionary() argument
343 return deflateSetDictionary(strm, dictionary, dictLength); in z_deflateSetDictionary()
353 { int res = ZWRAP_initializeCStream(zwc, dictionary, dictLength, ZSTD_CONTENTSIZE_UNKNOWN); in z_deflateSetDictionary()
701 uInt dictLength)) in z_inflateSetDictionary() argument
705 return inflateSetDictionary(strm, dictionary, dictLength); in z_inflateSetDictionary()
709 { size_t const initErr = ZSTD_initDStream_usingDict(zwd->zbd, dictionary, dictLength); in z_inflateSetDictionary()
1016 uInt *dictLength)) in z_inflateGetDictionary() argument
1019 return inflateGetDictionary(strm, dictionary, dictLength); in z_inflateGetDictionary()