HomeSort by relevance Sort by last modified time
    Searched refs:total_in (Results 51 - 75 of 166) sorted by null

1 23 4 5 6 7

  /prebuilts/ndk/9/platforms/android-18/arch-arm/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
zlib.h 22 uLong total_in; member in struct:z_stream_s
  /external/zlib/src/contrib/testzlib/
testzlib.c 206 long all_read_before = zcpr.total_in;
210 lOrigDone += (zcpr.total_in-all_read_before);
211 lOrigToDo -= (zcpr.total_in-all_read_before);
247 long all_read_before = zcpr.total_in;
251 lOrigDone += (zcpr.total_in-all_read_before);
252 lOrigToDo -= (zcpr.total_in-all_read_before);
  /external/freetype/src/gzip/
zlib.h 71 uLong total_in; /* total nb of input bytes read so far */ member in struct:z_stream_s
116 The fields total_in and total_out can be used for statistics or
117 progress reports. After compression, total_in holds the total size of
259 so far (that is, total_in bytes).
563 case, the application may save the current current value of total_in which
    [all...]
infutil.h 67 #define UPDIN {z->avail_in=n;z->total_in+=p-z->next_in;z->next_in=p;}
inflate.c 59 z->total_in = z->total_out = 0;
144 #define NEXTBYTE (z->avail_in--,z->total_in++,*z->next_in++)
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
gzip_stream.cc 58 zcontext_.total_in = 0;
220 zcontext_.total_in = 0;
298 return zcontext_.total_in + zcontext_.avail_in;
  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 58 zcontext_.total_in = 0;
214 zcontext_.total_in = 0;
293 return zcontext_.total_in + zcontext_.avail_in;
  /external/zlib/src/examples/
gzappend.c 367 /* set up deflate stream with window, crc, total_in, and leftover bits */
372 strm->total_in = tot;
443 out[4] = (unsigned char)(strm->total_in);
444 out[5] = (unsigned char)(strm->total_in >> 8);
445 out[6] = (unsigned char)(strm->total_in >> 16);
446 out[7] = (unsigned char)(strm->total_in >> 24);
fitblk.c 231 size - have, size, def.total_in);
  /libcore/luni/src/main/native/
java_util_zip_Deflater.cpp 31 return toNativeZipStream(handle)->stream.total_in;
java_util_zip_Inflater.cpp 159 return toNativeZipStream(handle)->stream.total_in;
  /external/zlib/src/contrib/delphi/
ZLib.pas 26 total_in: Longint; // total nb of input bytes read so far
467 Result := FZRec.total_in
474 if FZRec.total_in = 0 then
477 Result := (1.0 - (FZRec.total_out / FZRec.total_in)) * 100.0;
  /external/chromium_org/third_party/zlib/
deflate.c 367 strm->total_in = strm->total_out = 0;
441 strm->total_in != 0) {
898 put_byte(s, (Byte)(strm->total_in & 0xff));
899 put_byte(s, (Byte)((strm->total_in >> 8) & 0xff));
900 put_byte(s, (Byte)((strm->total_in >> 16) & 0xff));
901 put_byte(s, (Byte)((strm->total_in >> 24) & 0xff));
    [all...]

Completed in 2073 milliseconds

1 23 4 5 6 7