Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Ddeflate.c367 strm->total_in = strm->total_out = 0;
438 if (func != configuration_table[level].func && strm->total_in != 0) {
839 put_byte(s, (Byte)(strm->total_in & 0xff));
840 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
841 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
842 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
978 strm->total_in += len;
Dinflate.c110 strm->total_in = strm->total_out = state->total = 0;
1142 strm->total_in += in;
1294 strm->total_in += len;
1298 in = strm->total_in; out = strm->total_out;
1300 strm->total_in = in; strm->total_out = out;
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) {
Dzlib.h85 uLong total_in; /* total nb of input bytes read so far */ member
DFAQ244 strm.total_in and strm_total_out counters may be limited to 4 GB. These
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dinflate.c111 strm->total_in = strm->total_out = state->total = 0;
1240 strm->total_in += in;
1409 strm->total_in += len;
1413 in = strm->total_in; out = strm->total_out;
1415 strm->total_in = in; strm->total_out = out;
Ddeflate.c402 strm->total_in = strm->total_out = 0;
513 strm->total_in != 0) {
959 put_byte(s, (Byte)(strm->total_in & 0xff));
960 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
961 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
962 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
1098 strm->total_in += len;
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) {
Dzlib.h88 uLong total_in; /* total number of input bytes read so far */ member
DFAQ247 strm.total_in and strm_total_out counters may be limited to 4 GB. These
DChangeLog232 - Spell out "number" (instead of "nb") in zlib.h for total_in, total_out