Searched refs:dictLength (Results 1 – 4 of 4) sorted by relevance
| /f-stack/freebsd/contrib/zlib/ |
| H A D | zlib.h | 613 uInt dictLength)); 657 uInt *dictLength)); 887 uInt dictLength)); 910 uInt *dictLength));
|
| H A D | inflate.c | 1291 int ZEXPORT inflateGetDictionary(strm, dictionary, dictLength) in inflateGetDictionary() argument 1294 uInt *dictLength; 1309 if (dictLength != Z_NULL) 1310 *dictLength = state->whave; 1314 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument 1317 uInt dictLength; 1332 dictid = adler32(dictid, dictionary, dictLength); 1339 ret = updatewindow(strm, dictionary + dictLength, dictLength);
|
| H A D | deflate.c | 379 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument 382 uInt dictLength; 399 strm->adler = adler32(strm->adler, dictionary, dictLength); 403 if (dictLength >= s->w_size) { 410 dictionary += dictLength - s->w_size; /* use the tail */ 411 dictLength = s->w_size; 417 strm->avail_in = dictLength; 448 int ZEXPORT deflateGetDictionary (strm, dictionary, dictLength) in deflateGetDictionary() argument 451 uInt *dictLength; 464 if (dictLength != Z_NULL) [all …]
|
| /f-stack/freebsd/contrib/zstd/zlibWrapper/ |
| H A D | zstd_zlibwrapper.c | 330 uInt dictLength)) in z_deflateSetDictionary() argument 334 return deflateSetDictionary(strm, dictionary, dictLength); in z_deflateSetDictionary() 344 { int res = ZWRAP_initializeCStream(zwc, dictionary, dictLength, ZSTD_CONTENTSIZE_UNKNOWN); in z_deflateSetDictionary() 686 uInt dictLength)) in z_inflateSetDictionary() argument 690 return inflateSetDictionary(strm, dictionary, dictLength); in z_inflateSetDictionary() 694 { size_t const initErr = ZSTD_initDStream_usingDict(zwd->zbd, dictionary, dictLength); in z_inflateSetDictionary() 1001 uInt *dictLength)) in z_inflateGetDictionary() argument 1004 return inflateGetDictionary(strm, dictionary, dictLength); in z_inflateGetDictionary()
|