HomeSort by relevance Sort by last modified time
    Searched refs:next_out (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /external/protobuf/src/google/protobuf/io/
gzip_stream.cc 67 zcontext_.next_out = static_cast<Bytef*>(output_buffer_);
85 zcontext_.next_out = NULL;
105 zcontext_.next_out = static_cast<Bytef*>(output_buffer_);
114 *size = ((uintptr_t)zcontext_.next_out) - ((uintptr_t)output_position_);
115 output_position_ = zcontext_.next_out;
122 if ((!ok) || (zcontext_.next_out == NULL)) {
125 if (zcontext_.next_out != output_position_) {
135 if ((zerror_ == Z_STREAM_END) && (zcontext_.next_out == NULL)) {
166 (((uintptr_t)zcontext_.next_out) - ((uintptr_t)output_position_));
209 zcontext_.next_out = NULL
    [all...]
  /external/chromium/chrome/common/
bzip2_unittest.cc 39 stream.next_out = output;
60 stream.next_out = output2;
  /external/skia/src/core/
SkFlate.cpp 50 flateData.next_out = outputBuffer;
78 flateData.next_out = outputBuffer;
105 flateData.next_out = outputBuffer;
  /bionic/libc/kernel/common/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /development/ndk/platforms/android-3/include/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /external/qemu/distrib/zlib-1.2.3/
uncompr.c 40 stream.next_out = dest;
gzio.c 115 s->stream.next_out = s->outbuf = Z_NULL;
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
246 s->stream.next_out = s->outbuf;
401 Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */ local
408 next_out = (Byte*)buf;
409 s->stream.next_out = (Bytef*)buf;
413 *next_out++ = s->back;
414 s->stream.next_out++;
432 zmemcpy(s->stream.next_out, s->stream.next_in, n)
    [all...]
compress.c 38 stream.next_out = dest;
  /external/zlib/examples/
fitblk.c 105 inf->next_out = raw;
157 def.next_out = blk;
196 def.next_out = tmp;
211 def.next_out = blk;
  /external/zlib/
uncompr.c 38 stream.next_out = dest;
gzio.c 115 s->stream.next_out = s->outbuf = Z_NULL;
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
246 s->stream.next_out = s->outbuf;
401 Byte *next_out; /* == stream.next_out but not forced far (for MSDOS) */ local
408 next_out = (Byte*)buf;
409 s->stream.next_out = (Bytef*)buf;
413 *next_out++ = s->back;
414 s->stream.next_out++;
432 zmemcpy(s->stream.next_out, s->stream.next_in, n)
    [all...]
compress.c 38 stream.next_out = dest;
  /libcore/luni/src/main/native/
java_util_zip_Deflater.cpp 75 stream->stream.next_out = reinterpret_cast<Bytef*>(out.get() + off);
79 Bytef* initialNextOut = stream->stream.next_out;
100 jint bytesWritten = stream->stream.next_out - initialNextOut;
129 stream->stream.next_out = reinterpret_cast<Bytef*>(NULL);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/
zlib.h 24 Byte *next_out; member in struct:z_stream_s
  /external/openssl/crypto/comp/
c_zlib.c 152 state->istream.next_out = Z_NULL;
164 state->ostream.next_out = Z_NULL;
204 state->ostream.next_out = out;
232 state->istream.next_out = out;
316 stream.next_out = dest;
496 ctx->zin.next_out = NULL;
502 ctx->zout.next_out = NULL;
559 zin->next_out = (unsigned char *)out;
619 zout->next_out = ctx->obuf;
650 zout->next_out = ctx->obuf
    [all...]
  /external/webp/src/dec/
alpha.c 50 strm.next_out = output;
  /external/zlib/contrib/delphi/
ZLib.pas 28 next_out: PChar; // next output byte should be put here
29 avail_out: Integer; // remaining free space at next_out
300 strm.next_out := OutBuf;
309 strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
343 strm.next_out := OutBuf;
352 strm.next_out := PChar(Integer(OutBuf) + (Integer(strm.next_out) - Integer(P)));
376 strm.next_out := OutBuf;
413 FZRec.next_out := FBuffer
    [all...]

Completed in 284 milliseconds

1 2 3 4 5