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

12 3 4 5

  /bootable/recovery/applypatch/
imgpatch.c 140 strm.next_out = expanded_source;
197 strm.next_out = temp_data;
bspatch.c 85 stream->next_out = (char*)buffer;
  /external/zlib/contrib/masmx64/
inffas8664.c 88 /* 32 16 */ unsigned char FAR *out; /* edi rdi local strm->next_out */
89 /* 40 20 */ unsigned char FAR *beg; /* inflate()'s init next_out */
129 ar.out = strm->next_out;
174 strm->next_out = ar.out;
  /external/zlib/
example.c 185 c_stream.next_out = compr;
222 d_stream.next_out = uncompr;
262 c_stream.next_out = compr;
323 d_stream.next_out = uncompr; /* discard the output */
360 c_stream.next_out = compr;
401 d_stream.next_out = uncompr;
445 c_stream.next_out = compr;
482 d_stream.next_out = uncompr;
inffast.c 74 unsigned char FAR *out; /* local strm->next_out */
75 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */
101 out = strm->next_out - OFF;
317 strm->next_out = out + OFF;
gzwrite.c 50 strm->next_out = state->out;
51 state->next = strm->next_out;
78 have = (unsigned)(strm->next_out - state->next);
86 strm->next_out = state->out;
88 state->next = strm->next_out;
gzread.c 225 /* Decompress from input to the provided next_out and avail_out in the state.
272 state->next = strm->next_out - state->have;
322 strm->next_out = state->out;
434 strm->next_out = buf;
  /external/zlib/examples/
zpipe.c 66 strm.next_out = out;
124 strm.next_out = out;
zran.c 183 strm.next_out = window;
293 strm.next_out = buf;
298 strm.next_out = discard;
303 strm.next_out = discard;
  /frameworks/base/libs/utils/
StreamingZipInflater.cpp 87 mInflateState.next_out = (Bytef*) mOutBuf;
151 mInflateState.next_out = (Bytef*) mOutBuf;
155 LOGV("Inflating to outbuf: avail_in=%u avail_out=%u next_in=%p next_out=%p",
157 mInflateState.next_in, mInflateState.next_out);
ZipFileRO.cpp 798 zstream.next_out = (Bytef*) outBuf;
824 zstream.next_out, zstream.avail_out);
865 zstream.next_out = (Bytef*) writeBuf;
895 zstream.next_out, zstream.avail_out);
903 long writeSize = zstream.next_out - writeBuf;
910 zstream.next_out = writeBuf;
ZipUtils.cpp 69 zstream.next_out = (Bytef*) buf;
181 zstream.next_out = (Bytef*) buf;
  /external/kernel-headers/original/linux/
zlib.h 89 Byte *next_out; /* next output byte should be put there */ member in struct:z_stream_s
90 uInt avail_out; /* remaining free space at next_out */
107 dropped to zero. It must update next_out and avail_out when avail_out
227 - Provide more output starting at next_out and update next_out and avail_out
285 if next_in or next_out was NULL), Z_BUF_ERROR if no progress is possible
328 avail_in may be modified, but next_out and avail_out are unchanged.)
347 - Provide more output starting at next_out and update next_out and avail_out
377 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /external/webp/src/enc/
alpha.c 48 strm.next_out = chunk;
  /libcore/luni/src/main/native/
java_util_zip_Inflater.cpp 95 stream->stream.next_out = reinterpret_cast<Bytef*>(out.get() + off);
99 Bytef* initialNextOut = stream->stream.next_out;
121 jint bytesWritten = stream->stream.next_out - initialNextOut;
  /external/bzip2/
bzlib.c 347 *(s->strm->next_out) = s->zbits[s->state_out_pos];
350 s->strm->next_out++;
547 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
550 s->strm->next_out++;
599 char* cs_next_out = s->strm->next_out;
677 s->strm->next_out = cs_next_out;
717 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
720 s->strm->next_out++;
766 *( (UChar*)(s->strm->next_out) ) = s->state_out_ch;
769 s->strm->next_out++
    [all...]
bzlib.h 55 char *next_out; member in struct:__anon2218
  /external/chromium/net/base/
gzip_filter_unittest.cc 139 zlib_stream.next_out = bit_cast<Bytef*>(dest);
146 memcpy(zlib_stream.next_out, kGZipHeader, sizeof(kGZipHeader));
147 zlib_stream.next_out += sizeof(kGZipHeader);
gzip_filter.cc 214 zlib_stream_.get()->next_out = bit_cast<Bytef*>(dest_buffer);
280 zlib_stream_.get()->next_out = bit_cast<Bytef*>(&dummy_output[0]);
  /dalvik/libdex/
ZipArchive.cpp 608 zstream.next_out = (Bytef*) writeBuf;
653 zstream.next_out, zstream.avail_out);
661 size_t writeSize = zstream.next_out - writeBuf;
665 zstream.next_out = writeBuf;
  /external/zlib/contrib/pascal/
example.pas 199 c_stream.next_out := compr;
242 d_stream.next_out := uncompr;
284 c_stream.next_out := compr;
343 d_stream.next_out := uncompr; (* discard the output *)
383 c_stream.next_out := compr;
424 d_stream.next_out := uncompr;
465 c_stream.next_out := compr;
501 d_stream.next_out := uncompr;
  /external/qemu/distrib/zlib-1.2.3/
inffast.c 74 unsigned char FAR *out; /* local strm->next_out */
75 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */
101 out = strm->next_out - OFF;
295 strm->next_out = out + OFF;
  /external/zlib/contrib/testzlib/
testzlib.c 201 zcpr.next_out = CprPtr;
242 zcpr.next_out = UncprPtr;
  /system/extras/tests/bionic/libc/other/
test_zlib.c 75 strm.next_out = out;
125 strm.next_out = out;
  /external/qemu/block/
cloop.c 117 s->zstream.next_out = s->uncompressed_block;

Completed in 743 milliseconds

12 3 4 5