Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/zlib/
Dzlib.h613 uInt dictLength));
657 uInt *dictLength));
886 uInt dictLength));
909 uInt *dictLength));
Dinflate.c1291 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);
Ddeflate.c376 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/src/
Dzlib.h613 uInt dictLength));
657 uInt *dictLength));
887 uInt dictLength));
910 uInt *dictLength));
Dinflate.c1291 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);
Ddeflate.c376 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/
Dzlib.h613 uInt dictLength));
657 uInt *dictLength));
887 uInt dictLength));
910 uInt *dictLength));
/external/zlib/src/contrib/pascal/
Dzlibpas.pas117 dictLength: Integer): Integer;
128 dictLength: Integer): Integer;
/external/zlib/src/contrib/ada/
Dzlib-thin.ads136 dictLength : UInt)
153 dictLength : UInt)
/external/u-boot/lib/zlib/
Ddeflate.c311 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/u-boot/include/u-boot/
Dzlib.h529 uInt dictLength));