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

  /external/syslinux/com32/libupload/
upload_backend.h 27 z_stream zstream; member in struct:upload_backend
  /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 186 z_stream zstream; /* zlib input stream */ member in struct:FT_GZipFileRec_
288 z_stream* zstream = &zip->zstream; local
312 zstream->zalloc = (alloc_func)ft_gzip_alloc;
313 zstream->zfree = (free_func) ft_gzip_free;
314 zstream->opaque = stream->memory;
316 zstream->avail_in = 0;
317 zstream->next_in = zip->buffer;
319 if ( inflateInit2( zstream, -MAX_WBITS ) != Z_OK ||
320 !zstream->next_in
331 z_stream* zstream = &zip->zstream; local
360 z_stream* zstream = &zip->zstream; local
382 z_stream* zstream = &zip->zstream; local
423 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...]
  /system/core/libziparchive/
zip_archive.cc 908 z_stream zstream; local
914 memset(&zstream, 0, sizeof(zstream));
915 zstream.zalloc = Z_NULL;
916 zstream.zfree = Z_NULL;
917 zstream.opaque = Z_NULL;
918 zstream.next_in = NULL;
919 zstream.avail_in = 0;
920 zstream.next_out = &write_buf[0];
921 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/libpng16/
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/skia/third_party/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 */

Completed in 440 milliseconds