Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dinflate.c1268 int ZEXPORT inflateGetDictionary(strm, dictionary, dictLength) in inflateGetDictionary() argument
1271 uInt *dictLength;
1286 if (dictLength != Z_NULL)
1287 *dictLength = state->whave;
1291 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument
1294 uInt dictLength;
1309 dictid = adler32(dictid, dictionary, dictLength);
1316 ret = updatewindow(strm, dictionary + dictLength, dictLength);
Dzlib.h589 uInt dictLength));
821 uInt dictLength));
844 uInt *dictLength));
Ddeflate.c323 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument
326 uInt dictLength;
343 strm->adler = adler32(strm->adler, dictionary, dictLength);
347 if (dictLength >= s->w_size) {
354 dictionary += dictLength - s->w_size; /* use the tail */
355 dictLength = s->w_size;
361 strm->avail_in = dictLength;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dinflate.c1169 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument
1172 uInt dictLength;
1186 id = adler32(id, dictionary, dictLength);
1196 if (dictLength > state->wsize) {
1197 zmemcpy(state->window, dictionary + dictLength - state->wsize,
1202 zmemcpy(state->window + state->wsize - dictLength, dictionary,
1203 dictLength);
1204 state->whave = dictLength;
Dzlib.h540 uInt dictLength));
738 uInt dictLength));
Ddeflate.c315 int ZEXPORT deflateSetDictionary (strm, dictionary, dictLength) in deflateSetDictionary() argument
318 uInt dictLength;
321 uInt length = dictLength;
332 strm->adler = adler32(strm->adler, dictionary, dictLength);
337 dictionary += dictLength - length; /* use the tail of the dictionary */
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/ZLib/
Dzlib.h613 uInt dictLength));
657 uInt *dictLength));
886 uInt dictLength));
909 uInt *dictLength));
Dinflate.c1292 int ZEXPORT inflateGetDictionary(strm, dictionary, dictLength) in inflateGetDictionary() argument
1295 uInt *dictLength;
1310 if (dictLength != Z_NULL)
1311 *dictLength = state->whave;
1315 int ZEXPORT inflateSetDictionary(strm, dictionary, dictLength) in inflateSetDictionary() argument
1318 uInt dictLength;
1333 dictid = adler32(dictid, dictionary, dictLength);
1340 ret = updatewindow(strm, dictionary + dictLength, dictLength);