HomeSort by relevance Sort by last modified time
    Searched refs:zstream (Results 26 - 38 of 38) sorted by null

12

  /external/qemu/distrib/libpng-1.2.19/
pngwrite.c 961 ret = deflate(&png_ptr->zstream, Z_SYNC_FLUSH);
967 if (png_ptr->zstream.msg != NULL)
968 png_error(png_ptr, png_ptr->zstream.msg);
973 if (!(png_ptr->zstream.avail_out))
978 png_ptr->zstream.next_out = png_ptr->zbuf;
979 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size;
985 if (png_ptr->zbuf_size != png_ptr->zstream.avail_out)
989 png_ptr->zbuf_size - png_ptr->zstream.avail_out);
990 png_ptr->zstream.next_out = png_ptr->zbuf;
991 png_ptr->zstream.avail_out = (uInt)png_ptr->zbuf_size
    [all...]
png.c 808 return (inflateReset(&png_ptr->zstream));
pngset.c     [all...]
png.h 1153 z_stream zstream; \/* pointer to decompression structure (below) *\/ member in struct:png_struct_def
    [all...]
  /external/qemu/
vnc-android.c 566 z_streamp zstream = &vs->zlib_stream[stream_id]; local
577 if (zstream->opaque != vs) {
581 VNC_DEBUG("VNC: opaque = %p | vs = %p\n", zstream->opaque, vs);
582 zstream->zalloc = Z_NULL;
583 zstream->zfree = Z_NULL;
585 err = deflateInit2(zstream, vs->tight_compression, Z_DEFLATED, MAX_WBITS,
593 zstream->opaque = vs;
602 zstream->next_in = vs->zlib.buffer;
603 zstream->avail_in = vs->zlib.offset;
604 zstream->next_out = vs->output.buffer + vs->output.offset
    [all...]
vnc.c 560 z_streamp zstream = &vs->zlib_stream[stream_id]; local
571 if (zstream->opaque != vs) {
575 VNC_DEBUG("VNC: opaque = %p | vs = %p\n", zstream->opaque, vs);
576 zstream->zalloc = Z_NULL;
577 zstream->zfree = Z_NULL;
579 err = deflateInit2(zstream, vs->tight_compression, Z_DEFLATED, MAX_WBITS,
587 zstream->opaque = vs;
596 zstream->next_in = vs->zlib.buffer;
597 zstream->avail_in = vs->zlib.offset;
598 zstream->next_out = vs->output.buffer + vs->output.offset
    [all...]
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngstruct.h 66 z_stream zstream; /* pointer to decompression structure (below) */ member in struct:png_struct_def
71 /* Added in 1.5.4: state to keep track of whether the zstream has been
  /external/chromium_org/third_party/libpng/
pngset.c     [all...]
png.c 805 return (inflateReset(&png_ptr->zstream));
png.h     [all...]
  /external/libpng/
png.c 806 return (inflateReset(&png_ptr->zstream));
pngset.c     [all...]
png.h     [all...]

Completed in 1340 milliseconds

12