/system/core/libzipfile/ |
zipfile.c | 93 zstream.avail_out = unlen;
|
/external/chromium/net/spdy/ |
spdy_framer.cc | [all...] |
/external/chromium_org/third_party/zlib/ |
gzread.c | 225 /* Decompress from input to the provided next_out and avail_out in the state. 242 had = strm->avail_out; 268 } while (strm->avail_out && ret != Z_STREAM_END); 271 state->have = had - strm->avail_out; 321 strm->avail_out = state->size << 1; 433 strm->avail_out = len;
|
zlib.h | 91 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s 134 to zero. It must update next_out and avail_out when avail_out has dropped 266 - Provide more output starting at next_out and update next_out and avail_out 274 output, and updating avail_in or avail_out accordingly; avail_out should 276 output when it wants, for example when the output buffer is full (avail_out 278 zero avail_out, it must be called again after making room in the output 318 If deflate returns with avail_out == 0, this function must be called again 320 avail_out), until the flush is complete (deflate returns with non-zer [all...] |
/external/zlib/src/ |
gzread.c | 167 /* Decompress from input to the provided next_out and avail_out in the state. 180 had = strm->avail_out; 206 } while (strm->avail_out && ret != Z_STREAM_END); 209 state->x.have = had - strm->avail_out; 246 strm->avail_out = state->size << 1; 362 strm->avail_out = len;
|
zlib.h | 91 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s 133 to zero. It must update next_out and avail_out when avail_out has dropped 261 - Provide more output starting at next_out and update next_out and avail_out 269 output, and updating avail_in or avail_out accordingly; avail_out should 271 output when it wants, for example when the output buffer is full (avail_out 273 zero avail_out, it must be called again after making room in the output 313 If deflate returns with avail_out == 0, this function must be called again 315 avail_out), until the flush is complete (deflate returns with non-zer [all...] |
/frameworks/native/cmds/atrace/ |
atrace.cpp | 600 zs.avail_out = bufSize; 620 if (zs.avail_out == 0) { 627 zs.avail_out = bufSize; // skip the final write 631 zs.avail_out = bufSize; 640 if (zs.avail_out < bufSize) { 641 size_t bytes = bufSize - zs.avail_out;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
zlib.h | 91 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s 133 dropped to zero. It must update next_out and avail_out when avail_out 260 - Provide more output starting at next_out and update next_out and avail_out 268 more output, and updating avail_in or avail_out accordingly; avail_out 271 (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK 272 and with zero avail_out, it must be called again after making room in the 292 If deflate returns with avail_out == 0, this function must be called again 294 avail_out), until the flush is complete (deflate returns with non-zer [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
zlib.h | 91 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s 133 dropped to zero. It must update next_out and avail_out when avail_out 260 - Provide more output starting at next_out and update next_out and avail_out 268 more output, and updating avail_in or avail_out accordingly; avail_out 271 (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK 272 and with zero avail_out, it must be called again after making room in the 292 If deflate returns with avail_out == 0, this function must be called again 294 avail_out), until the flush is complete (deflate returns with non-zer [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
zlib.h | 91 uInt avail_out; /* remaining free space at next_out */ member in struct:z_stream_s 133 dropped to zero. It must update next_out and avail_out when avail_out 260 - Provide more output starting at next_out and update next_out and avail_out 268 more output, and updating avail_in or avail_out accordingly; avail_out 271 (avail_out == 0), or after each call of deflate(). If deflate returns Z_OK 272 and with zero avail_out, it must be called again after making room in the 292 If deflate returns with avail_out == 0, this function must be called again 294 avail_out), until the flush is complete (deflate returns with non-zer [all...] |
/frameworks/base/libs/androidfw/ |
ZipFileRO.cpp | 860 zstream.avail_out = uncompLen; 885 zstream.next_out, zstream.avail_out); 927 zstream.avail_out = sizeof(writeBuf); 956 zstream.next_out, zstream.avail_out); 961 if (zstream.avail_out == 0 || 962 (zerr == Z_STREAM_END && zstream.avail_out != sizeof(writeBuf))) 975 zstream.avail_out = sizeof(writeBuf);
|
ZipUtils.cpp | 71 zstream.avail_out = uncompressedLen; 184 zstream.avail_out = uncompressedLen;
|
/external/chromium_org/third_party/zlib/contrib/minizip/ |
zip.c | [all...] |
unzip.c | [all...] |
/external/zlib/src/contrib/minizip/ |
zip.c | [all...] |
unzip.c | [all...] |
/dalvik/libdex/ |
ZipArchive.cpp | 690 zstream.avail_out = kBufSize; 734 zstream.next_out, zstream.avail_out); 739 if (zstream.avail_out == 0 || 740 (zerr == Z_STREAM_END && zstream.avail_out != kBufSize)) 747 zstream.avail_out = kBufSize;
|
/external/chromium_org/third_party/libpng/ |
pngwutil.c | 224 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; 241 if (!(png_ptr->zstream.avail_out)) 277 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; 292 if (!(png_ptr->zstream.avail_out)) 329 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; 345 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size) 346 text_len += png_ptr->zbuf_size - (png_size_t)png_ptr->zstream.avail_out; 377 if (png_ptr->zstream.avail_out < (png_uint_32)png_ptr->zbuf_size) 379 (png_size_t)(png_ptr->zbuf_size - png_ptr->zstream.avail_out)); 560 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size [all...] |
/external/libpng/ |
pngwutil.c | 224 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; 241 if (!(png_ptr->zstream.avail_out)) 277 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; 292 if (!(png_ptr->zstream.avail_out)) 329 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; 345 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size) 346 text_len += png_ptr->zbuf_size - (png_size_t)png_ptr->zstream.avail_out; 377 if (png_ptr->zstream.avail_out < (png_uint_32)png_ptr->zbuf_size) 379 (png_size_t)(png_ptr->zbuf_size - png_ptr->zstream.avail_out)); 560 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size [all...] |
/external/qemu/distrib/libpng-1.2.19/ |
pngwutil.c | 210 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; 227 if (!(png_ptr->zstream.avail_out)) 262 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; 277 if (!(png_ptr->zstream.avail_out)) 313 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size; 329 if (png_ptr->zstream.avail_out < png_ptr->zbuf_size) 330 text_len += png_ptr->zbuf_size - (png_size_t)png_ptr->zstream.avail_out; 361 if (png_ptr->zstream.avail_out < (png_uint_32)png_ptr->zbuf_size) 363 png_ptr->zbuf_size - png_ptr->zstream.avail_out); 531 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size [all...] |
/external/bzip2/ |
bzlib.h | 56 unsigned int avail_out; member in struct:__anon4001
|
/external/qemu/block/ |
cloop.c | 118 s->zstream.avail_out = s->block_size;
|
/external/zlib/src/test/ |
infcover.c | 318 strm.avail_out = len; 419 strm.avail_out = 1; 539 strm.avail_out = size; 545 } while (strm.avail_in || strm.avail_out == 0);
|
/libcore/luni/src/main/native/ |
java_util_zip_Inflater.cpp | 98 stream->stream.avail_out = len;
|
/external/qemu/distrib/zlib-1.2.3/ |
inflate.c | 348 copy = out - strm->avail_out; 406 left = strm->avail_out; \ 417 strm->avail_out = left; \ 537 Progress is defined as a change in either strm->avail_in or strm->avail_out. [all...] |