Searched refs:dictLength (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14-stable/sys/contrib/zlib/ |
| HD | zlib.h | 613 uInt dictLength); 657 uInt *dictLength); 890 uInt dictLength); 913 uInt *dictLength);
|
| HD | inflate.c | 1279 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()
|
| HD | deflate.c | 551 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/ |
| HD | zstd_zlibwrapper.c | 339 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()
|