Home
last modified time | relevance | path

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

/freebsd-14-stable/sys/contrib/zlib/
HDzlib.h613 uInt dictLength);
657 uInt *dictLength);
890 uInt dictLength);
913 uInt *dictLength);
HDinflate.c1279 uInt *dictLength) { in inflateGetDictionary() argument
1293 if (dictLength != Z_NULL) in inflateGetDictionary()
1294 *dictLength = state->whave; in inflateGetDictionary()
1299 uInt dictLength) { in inflateSetDictionary() argument
1313 dictid = adler32(dictid, dictionary, dictLength); in inflateSetDictionary()
1320 ret = updatewindow(strm, dictionary + dictLength, dictLength); in inflateSetDictionary()
HDdeflate.c551 uInt dictLength) { in deflateSetDictionary() argument
567 strm->adler = adler32(strm->adler, dictionary, dictLength); in deflateSetDictionary()
571 if (dictLength >= s->w_size) { in deflateSetDictionary()
578 dictionary += dictLength - s->w_size; /* use the tail */ in deflateSetDictionary()
579 dictLength = s->w_size; in deflateSetDictionary()
585 strm->avail_in = dictLength; in deflateSetDictionary()
617 uInt *dictLength) { in deflateGetDictionary() argument
629 if (dictLength != Z_NULL) in deflateGetDictionary()
630 *dictLength = len; in deflateGetDictionary()
/freebsd-14-stable/sys/contrib/zstd/zlibWrapper/
HDzstd_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()