/external/rust/crates/libz-sys/src/zlib-ng/ |
D | zlib.h | 610 unsigned int dictLength); 652 …_EXPORT deflateGetDictionary (z_stream *strm, unsigned char *dictionary, unsigned int *dictLength); 868 …ORT inflateSetDictionary(z_stream *strm, const unsigned char *dictionary, unsigned int dictLength); 889 …Z_EXPORT inflateGetDictionary(z_stream *strm, unsigned char *dictionary, unsigned int *dictLength);
|
D | zlib-ng.h | 600 int32_t zng_deflateSetDictionary(zng_stream *strm, const uint8_t *dictionary, uint32_t dictLength); 643 int32_t zng_deflateGetDictionary(zng_stream *strm, uint8_t *dictionary, uint32_t *dictLength); 869 int32_t zng_inflateSetDictionary(zng_stream *strm, const uint8_t *dictionary, uint32_t dictLength); 891 int32_t zng_inflateGetDictionary(zng_stream *strm, uint8_t *dictionary, uint32_t *dictLength);
|
D | deflate.c | 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() [all …]
|
D | inflate.c | 1096 …RT PREFIX(inflateGetDictionary)(PREFIX3(stream) *strm, uint8_t *dictionary, uint32_t *dictLength) { in PREFIX() 1109 if (dictLength != NULL) in PREFIX() 1110 *dictLength = state->whave; in PREFIX() 1114 …EFIX(inflateSetDictionary)(PREFIX3(stream) *strm, const uint8_t *dictionary, uint32_t dictLength) { in PREFIX() 1128 dictid = functable.adler32(ADLER32_INITIAL_VALUE, dictionary, dictLength); in PREFIX() 1135 ret = updatewindow(strm, dictionary + dictLength, dictLength); in PREFIX()
|
/external/rust/crates/libz-sys/src/zlib/ |
D | zlib.h | 613 uInt dictLength)); 657 uInt *dictLength)); 886 uInt dictLength)); 909 uInt *dictLength));
|
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);
|
D | deflate.c | 376 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument 379 uInt dictLength; 396 strm->adler = adler32(strm->adler, dictionary, dictLength); 400 if (dictLength >= s->w_size) { 407 dictionary += dictLength - s->w_size; /* use the tail */ 408 dictLength = s->w_size; 414 strm->avail_in = dictLength; 445 int ZEXPORT deflateGetDictionary (strm, dictionary, dictLength) in deflateGetDictionary() argument 448 uInt *dictLength; 461 if (dictLength != Z_NULL) [all …]
|
/external/python/cpython2/Modules/zlib/ |
D | zlib.h | 613 uInt dictLength)); 657 uInt *dictLength)); 886 uInt dictLength)); 909 uInt *dictLength));
|
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);
|
D | deflate.c | 376 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument 379 uInt dictLength; 396 strm->adler = adler32(strm->adler, dictionary, dictLength); 400 if (dictLength >= s->w_size) { 407 dictionary += dictLength - s->w_size; /* use the tail */ 408 dictLength = s->w_size; 414 strm->avail_in = dictLength; 445 int ZEXPORT deflateGetDictionary (strm, dictionary, dictLength) in deflateGetDictionary() argument 448 uInt *dictLength; 461 if (dictLength != Z_NULL) [all …]
|
/external/zlib/ |
D | inflate.c | 1293 int ZEXPORT inflateGetDictionary(strm, dictionary, dictLength) in inflateGetDictionary() argument 1296 uInt *dictLength; 1311 if (dictLength != Z_NULL) 1312 *dictLength = state->whave; 1316 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument 1319 uInt dictLength; 1334 dictid = adler32(dictid, dictionary, dictLength); 1341 ret = updatewindow(strm, dictionary + dictLength, dictLength);
|
D | zlib.h | 656 uInt dictLength)); 701 uInt *dictLength)); 931 uInt dictLength)); 955 uInt *dictLength));
|
D | deflate.c | 426 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument 429 uInt dictLength; 446 strm->adler = adler32(strm->adler, dictionary, dictLength); 450 if (dictLength >= s->w_size) { 457 dictionary += dictLength - s->w_size; /* use the tail */ 458 dictLength = s->w_size; 464 strm->avail_in = dictLength; 491 int ZEXPORT deflateGetDictionary (strm, dictionary, dictLength) in deflateGetDictionary() argument 494 uInt *dictLength; 507 if (dictLength != Z_NULL) [all …]
|
/external/zlib/contrib/optimizations/ |
D | inflate.c | 1313 int ZEXPORT inflateGetDictionary(strm, dictionary, dictLength) in inflateGetDictionary() argument 1316 uInt *dictLength; 1331 if (dictLength != Z_NULL) 1332 *dictLength = state->whave; 1336 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument 1339 uInt dictLength; 1354 dictid = adler32(dictid, dictionary, dictLength); 1361 ret = updatewindow(strm, dictionary + dictLength, dictLength);
|
/external/zstd/zlibWrapper/ |
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()
|
/external/libwebsockets/win32port/zlib/ |
D | inflate.c | 1252 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument 1255 uInt dictLength; 1269 id = adler32(id, dictionary, dictLength); 1279 if (dictLength > state->wsize) { 1280 zmemcpy(state->window, dictionary + dictLength - state->wsize, 1285 zmemcpy(state->window + state->wsize - dictLength, dictionary, 1286 dictLength); 1287 state->whave = dictLength;
|
D | zlib.h | 580 uInt dictLength)); 786 uInt dictLength));
|
D | deflate.c | 311 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument 314 uInt dictLength; 317 uInt length = dictLength; 328 strm->adler = adler32(strm->adler, dictionary, dictLength); 333 dictionary += dictLength - length; /* use the tail of the dictionary */
|
/external/rust/crates/libz-sys/src/zlib/contrib/pascal/ |
D | zlibpas.pas | 117 dictLength: Integer): Integer; 128 dictLength: Integer): Integer;
|
/external/rust/crates/libz-sys/src/ |
D | lib.rs | 91 dictLength: uInt) -> c_int; in deflateSetDictionary() 126 dictLength: uInt) -> c_int; in inflateSetDictionary()
|
/external/rust/crates/libz-sys/src/zlib/contrib/ada/ |
D | zlib-thin.ads | 136 dictLength : UInt) 153 dictLength : UInt)
|
/external/rust/crates/libz-sys/src/zlib/os400/ |
D | zlib.inc | 344 D dictLength 10U 0 value Dictionary length 389 D dictLength 10U 0 value Dictionary length 395 D dictLength 10U 0 Dictionary length 401 D dictLength 10U 0 Dictionary length
|
/external/rust/crates/libz-sys/src/zlib-ng/test/abi/ |
D | zlib-v1.2.11-x86_64-linux-gnu.abi | 598 …<parameter type-id='type-id-79' name='dictLength' filepath='src.d/deflate.c' line='448' column='1'… 604 …<parameter type-id='type-id-14' name='dictLength' filepath='src.d/deflate.c' line='379' column='1'… 718 …<parameter type-id='type-id-14' name='dictLength' filepath='src.d/inflate.c' line='1317' column='1… 724 …<parameter type-id='type-id-79' name='dictLength' filepath='src.d/inflate.c' line='1294' column='1…
|
/external/zlib/patches/ |
D | 0001-simd.patch | 671 @@ -418,11 +453,7 @@ int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength)
|