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

  /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 174 z_stream zstream; /* zlib input stream */ member in struct:FT_GZipFileRec_
276 z_stream* zstream = &zip->zstream; local
300 zstream->zalloc = (alloc_func)ft_gzip_alloc;
301 zstream->zfree = (free_func) ft_gzip_free;
302 zstream->opaque = stream->memory;
304 zstream->avail_in = 0;
305 zstream->next_in = zip->buffer;
307 if ( inflateInit2( zstream, -MAX_WBITS ) != Z_OK ||
308 zstream->next_in == NULL
319 z_stream* zstream = &zip->zstream; local
348 z_stream* zstream = &zip->zstream; local
370 z_stream* zstream = &zip->zstream; local
405 z_stream* zstream = &zip->zstream; local
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
ftgzip.c 174 z_stream zstream; /* zlib input stream */ member in struct:FT_GZipFileRec_
276 z_stream* zstream = &zip->zstream; local
300 zstream->zalloc = (alloc_func)ft_gzip_alloc;
301 zstream->zfree = (free_func) ft_gzip_free;
302 zstream->opaque = stream->memory;
304 zstream->avail_in = 0;
305 zstream->next_in = zip->buffer;
307 if ( inflateInit2( zstream, -MAX_WBITS ) != Z_OK ||
308 zstream->next_in == NULL
319 z_stream* zstream = &zip->zstream; local
348 z_stream* zstream = &zip->zstream; local
370 z_stream* zstream = &zip->zstream; local
411 z_stream* zstream = &zip->zstream; local
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 747 z_stream zstream; local
765 memset(&zstream, 0, sizeof(zstream));
766 zstream.zalloc = Z_NULL;
767 zstream.zfree = Z_NULL;
768 zstream.opaque = Z_NULL;
769 zstream.next_in = NULL;
770 zstream.avail_in = 0;
771 zstream.next_out = outBuf;
772 zstream.avail_out = kBufSize
    [all...]
  /bootable/recovery/minzip/
Zip.c 510 z_stream zstream; local
519 memset(&zstream, 0, sizeof(zstream));
520 zstream.zalloc = Z_NULL;
521 zstream.zfree = Z_NULL;
522 zstream.opaque = Z_NULL;
523 zstream.next_in = pArchive->addr + pEntry->offset;
524 zstream.avail_in = pEntry->compLen;
525 zstream.next_out = (Bytef*) procBuf;
526 zstream.avail_out = sizeof(procBuf)
    [all...]
  /external/opencv3/3rdparty/libpng/
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
  /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 887 z_stream zstream; local
893 memset(&zstream, 0, sizeof(zstream));
894 zstream.zalloc = Z_NULL;
895 zstream.zfree = Z_NULL;
896 zstream.opaque = Z_NULL;
897 zstream.next_in = NULL;
898 zstream.avail_in = 0;
899 zstream.next_out = &write_buf[0];
900 zstream.avail_out = kBufSize
    [all...]
  /external/libpng/
pngstruct.h 182 png_uint_32 zowner; /* ID (chunk type) of zstream owner, 0 if none */
183 z_stream zstream; /* decompression structure */ member in struct:png_struct_def
206 int zlib_set_level; /* Actual values set into the zstream on write */
  /external/pdfium/third_party/lpng_v163/
pngstruct.h 183 png_uint_32 zowner; /* ID (chunk type) of zstream owner, 0 if none */
184 z_stream zstream; /* decompression structure */ member in struct:png_struct_def
207 int zlib_set_level; /* Actual values set into the zstream on write */

Completed in 300 milliseconds