Home
last modified time | relevance | path

Searched refs:total_out (Results 1 – 16 of 16) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dzlibmodule.c198 zst.total_out); in PyZlib_compress()
300 _PyString_Resize(&result_str, zst.total_out); in PyZlib_decompress()
428 start_total_out = self->zst.total_out; in PyZlib_objcompress()
463 _PyString_Resize(&RetVal, self->zst.total_out - start_total_out); in PyZlib_objcompress()
550 start_total_out = self->zst.total_out; in PyZlib_objdecompress()
607 _PyString_Resize(&RetVal, self->zst.total_out - start_total_out); in PyZlib_objdecompress()
645 start_total_out = self->zst.total_out; in PyZlib_flush()
694 _PyString_Resize(&RetVal, self->zst.total_out - start_total_out); in PyZlib_flush()
832 start_total_out = self->zst.total_out; in PyZlib_unflush()
876 _PyString_Resize(&retval, self->zst.total_out - start_total_out); in PyZlib_unflush()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dzlibmodule.c192 zst.total_out); in PyZlib_compress()
294 _PyString_Resize(&result_str, zst.total_out); in PyZlib_decompress()
422 start_total_out = self->zst.total_out; in PyZlib_objcompress()
457 _PyString_Resize(&RetVal, self->zst.total_out - start_total_out); in PyZlib_objcompress()
501 start_total_out = self->zst.total_out; in PyZlib_objdecompress()
581 _PyString_Resize(&RetVal, self->zst.total_out - start_total_out); in PyZlib_objdecompress()
619 start_total_out = self->zst.total_out; in PyZlib_flush()
668 _PyString_Resize(&RetVal, self->zst.total_out - start_total_out); in PyZlib_flush()
806 start_total_out = self->zst.total_out; in PyZlib_unflush()
841 _PyString_Resize(&retval, self->zst.total_out - start_total_out); in PyZlib_unflush()
Dbz2module.c75 #define BZS_TOTAL_OUT(bzs) bzs->total_out
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dexample.c187 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
227 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
333 if (d_stream.total_out != 2*uncomprLen + comprLen/2) {
334 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
376 *comprLen = c_stream.total_out;
Duncompr.c57 *destLen = stream.total_out;
Dcompress.c54 *destLen = stream.total_out;
Dinflate.c110 strm->total_in = strm->total_out = state->total = 0;
1081 strm->total_out += out;
1143 strm->total_out += out;
1298 in = strm->total_in; out = strm->total_out;
1300 strm->total_in = in; strm->total_out = out;
Dzlib.h89 uLong total_out; /* total nb of bytes output so far */ member
Ddeflate.c367 strm->total_in = strm->total_out = 0;
543 strm->total_out += len;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Duncompr.c55 *destLen = stream.total_out;
Dexample.c218 while (c_stream.total_in != len && c_stream.total_out < comprLen) {
258 while (d_stream.total_out < uncomprLen && d_stream.total_in < comprLen) {
364 if (d_stream.total_out != 2*uncomprLen + comprLen/2) {
365 fprintf(stderr, "bad large inflate: %ld\n", d_stream.total_out);
407 *comprLen = c_stream.total_out;
Dcompress.c54 *destLen = stream.total_out;
Dinflate.c111 strm->total_in = strm->total_out = state->total = 0;
1178 strm->total_out += out;
1241 strm->total_out += out;
1413 in = strm->total_in; out = strm->total_out;
1415 strm->total_in = in; strm->total_out = out;
Dzlib.h92 uLong total_out; /* total number of bytes output so far */ member
Ddeflate.c402 strm->total_in = strm->total_out = 0;
656 strm->total_out += len;
DChangeLog232 - Spell out "number" (instead of "nb") in zlib.h for total_in, total_out