Searched defs:zstream (Results 1 - 4 of 4) sorted by relevance

/external/freetype/src/gzip/
H A Dftgzip.c175 z_stream zstream; /* zlib input stream */ member in struct:FT_GZipFileRec_
277 z_stream* zstream = &zip->zstream; local
301 zstream->zalloc = (alloc_func)ft_gzip_alloc;
302 zstream->zfree = (free_func) ft_gzip_free;
303 zstream->opaque = stream->memory;
305 zstream->avail_in = 0;
306 zstream->next_in = zip->buffer;
308 if ( inflateInit2( zstream, -MAX_WBITS ) != Z_OK ||
309 zstream
320 z_stream* zstream = &zip->zstream; local
349 z_stream* zstream = &zip->zstream; local
371 z_stream* zstream = &zip->zstream; local
406 z_stream* zstream = &zip->zstream; local
[all...]
/external/libpng/
H A Dpngstruct.h230 png_uint_32 zowner; /* ID (chunk type) of zstream owner, 0 if none */
231 z_stream zstream; /* decompression structure */ member in struct:png_struct_def
254 int zlib_set_level; /* Actual values set into the zstream on write */
/external/qemu/ui/
H A Dvnc-android.c568 z_streamp zstream = &vs->zlib_stream[stream_id]; local
579 if (zstream->opaque != vs) {
583 VNC_DEBUG("VNC: opaque = %p | vs = %p\n", zstream->opaque, vs);
584 zstream->zalloc = Z_NULL;
585 zstream->zfree = Z_NULL;
587 err = deflateInit2(zstream, vs->tight_compression, Z_DEFLATED, MAX_WBITS,
595 zstream->opaque = vs;
604 zstream->next_in = vs->zlib.buffer;
605 zstream->avail_in = vs->zlib.offset;
606 zstream
[all...]
H A Dvnc.c560 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
[all...]

Completed in 1109 milliseconds