HomeSort by relevance Sort by last modified time
    Searched defs:zstream (Results 1 - 10 of 10) sorted by null

  /system/core/libzipfile/
zipfile.c 81 z_stream zstream; local
85 memset(&zstream, 0, sizeof(zstream));
86 zstream.zalloc = Z_NULL;
87 zstream.zfree = Z_NULL;
88 zstream.opaque = Z_NULL;
89 zstream.next_in = (void*)in;
90 zstream.avail_in = clen;
91 zstream.next_out = (Bytef*) out;
92 zstream.avail_out = unlen
    [all...]
  /frameworks/base/libs/androidfw/
ZipUtils.cpp 59 z_stream zstream; local
71 memset(&zstream, 0, sizeof(zstream));
72 zstream.zalloc = Z_NULL;
73 zstream.zfree = Z_NULL;
74 zstream.opaque = Z_NULL;
75 zstream.next_in = NULL;
76 zstream.avail_in = 0;
77 zstream.next_out = (Bytef*) buf;
78 zstream.avail_out = uncompressedLen
    [all...]
  /external/freetype/src/gzip/
ftgzip.c 175 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->next_in == NULL
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...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 750 z_stream zstream; local
768 memset(&zstream, 0, sizeof(zstream));
769 zstream.zalloc = Z_NULL;
770 zstream.zfree = Z_NULL;
771 zstream.opaque = Z_NULL;
772 zstream.next_in = NULL;
773 zstream.avail_in = 0;
774 zstream.next_out = outBuf;
775 zstream.avail_out = kBufSize
    [all...]
  /bootable/recovery/minzip/
Zip.c 515 z_stream zstream; local
524 memset(&zstream, 0, sizeof(zstream));
525 zstream.zalloc = Z_NULL;
526 zstream.zfree = Z_NULL;
527 zstream.opaque = Z_NULL;
528 zstream.next_in = pArchive->addr + pEntry->offset;
529 zstream.avail_in = pEntry->compLen;
530 zstream.next_out = (Bytef*) procBuf;
531 zstream.avail_out = sizeof(procBuf)
    [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
  /system/core/libziparchive/
zip_archive.cc 980 z_stream zstream; local
    [all...]
  /external/libpng/
pngstruct.h 230 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/
vnc-android.c 568 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->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...]

Completed in 585 milliseconds