/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/lib/ |
libz.so | |
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/lib/ |
libz.so | |
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/lib/ |
libz.so | |
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/lib/ |
libz.so | |
/prebuilts/ndk/6/platforms/android-3/arch-arm/usr/lib/ |
libz.so | |
/external/pdfium/core/include/thirdparties/zlib/ |
zlib.h | 0 /* zlib.h -- interface of the 'zlib' general purpose compression library 26 The data format used by the zlib library is described by RFCs (Request for 28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format). 113 The 'zlib' compression library provides in-memory compression and 125 the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped 130 with "gz". The gzip format is different from the zlib format. gzip is a 135 The zlib format was designed to be compact and fast for use in memory 137 file compression on file systems, has a larger header than zlib to maintai [all...] |
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/ |
zlib.h | 0 /* zlib.h -- interface of the 'zlib' general purpose compression library 26 The data format used by the zlib library is described by RFCs (Request for 28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format). 117 The 'zlib' compression library provides in-memory compression and 129 the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped 134 with "gz". The gzip format is different from the zlib format. gzip is a 139 The zlib format was designed to be compact and fast for use in memory 141 file compression on file systems, has a larger header than zlib to maintai [all...] |
/external/zlib/src/ |
configure | 2 # configure script for zlib. 30 # extract zlib version numbers from zlib.h 31 VER=`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h` 32 VER3=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\\.[0-9]*\).*/\1/p' < zlib.h` 33 VER2=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\)\\..*/\1/p' < zlib.h` 34 VER1=`sed -n -e '/VERSION "/s/.*"\([0-9]*\)\\..*/\1/p' < zlib.h` 187 LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map"} ;; 189 LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map"} 313 # send working options for other systems to zlib@gzip.or [all...] |
zlib.h | 0 /* zlib.h -- interface of the 'zlib' general purpose compression library 26 The data format used by the zlib library is described by RFCs (Request for 28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format). 48 The 'zlib' compression library provides in-memory compression and 60 the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped 65 with "gz". The gzip format is different from the zlib format. gzip is a 70 The zlib format was designed to be compact and fast for use in memory 72 file compression on file systems, has a larger header than zlib to maintai [all...] |
/external/zlib/src/contrib/minizip/ |
zip.h | 1 /* zip.h -- IO on .zip files using zlib 14 Condition of use and distribution are the same than zlib : 50 #include "zlib.h" 120 pathname contain on Windows XP a filename like "c:\\zlib\\zlib113.zip" or on 121 an Unix computer "zlib/zlib113.zip".
|
unzip.h | 1 /* unzip.h -- IO for uncompress .zip files using zlib 17 Condition of use and distribution are the same than zlib : 51 #include "zlib.h" 170 on a Windows XP computer "c:\\zlib\\zlib113.zip" or on an Unix computer 171 "zlib/zlib113.zip". 390 (UNZ_ERRNO for IO error, or zLib error for uncompress error)
|
/external/libpng/scripts/ |
makefile.hp64 | 10 # Where the zlib library and include files are located 11 ZLIBLIB=/opt/zlib/lib 12 ZLIBINC=/opt/zlib/include 14 # Note that if you plan to build a libpng shared library, zlib must also 15 # be a shared library, which zlib's configure does not do. After running 16 # zlib's configure, edit the appropriate lines of makefile to read: 42 # Caution: be sure you have built zlib with the same CFLAGS.
|
makefile.hpux | 10 # Where the zlib library and include files are located 11 ZLIBLIB=/opt/zlib/lib 12 ZLIBINC=/opt/zlib/include 14 # Note that if you plan to build a libpng shared library, zlib must also 15 # be a shared library, which zlib's configure does not do. After running 16 # zlib's configure, edit the appropriate lines of makefile to read: 50 # Caution: be sure you have built zlib with the same CFLAGS.
|
makefile.hpgcc | 35 # Where the zlib library and include files are located 36 ZLIBLIB=/opt/zlib/lib 37 ZLIBINC=/opt/zlib/include 39 # Note that if you plan to build a libpng shared library, zlib must also 40 # be a shared library, which zlib's configure does not do. After running 41 # zlib's configure, edit the appropriate lines of makefile to read:
|
makefile.so9 | 35 # Where the zlib library and include files are located 36 # Changing these to ../zlib poses a security risk. If you want 37 # to have zlib in an adjacent directory, specify the full path instead of "..". 38 #ZLIBLIB=../zlib 39 #ZLIBINC=../zlib 42 #Use the preinstalled zlib that comes with Solaris 9:
|
/external/freetype/src/gzip/ |
zlib.h | 0 /* zlib.h -- interface of the 'zlib' general purpose compression library 26 The data format used by the zlib library is described by RFCs (Request for 28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). 43 The 'zlib' compression library provides in-memory compression and 104 If zlib is used in a multi-threaded application, zalloc and zfree must be 171 not compatible with the zlib.h header file used by the application. 191 Z_VERSION_ERROR if the zlib library version (zlib_version) is incompatible 295 compression method from the zlib header and allocates all data structures 301 memory, Z_VERSION_ERROR if the zlib library version is incompatible with th [all...] |
zconf.h | 1 /* zconf.h -- configuration of the zlib compression library 3 * For conditions of distribution and use, see copyright notice in zlib.h 13 * compile with -DZ_PREFIX. The "standard" zlib should be compiled without it.
|
/external/zopfli/src/zopflipng/lodepng/ |
lodepng.h | 43 /*deflate & zlib. If disabled, you must specify alternative zlib functions in 52 /*deflate&zlib decoder and png decoder*/ 56 /*deflate&zlib encoder and png encoder*/ 248 /*Settings for zlib decompression*/ 254 /*use custom zlib decoder instead of built in one (default: null)*/ 260 zlib function will call custom_deflate*/ 274 Settings for zlib compression. Tweaking these settings tweaks the balance 281 unsigned btype; /*the block type for LZ (0, 1, 2 or 3, see zlib standard). Should be 2 for proper compression.*/ 288 /*use custom zlib encoder instead of built in one (default: null)* [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/ |
zlib.h | 0 /* zlib.h -- interface of the 'zlib' general purpose compression library 26 The data format used by the zlib library is described by RFCs (Request for 28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). 47 The 'zlib' compression library provides in-memory compression and 60 the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped 65 with "gz". The gzip format is different from the zlib format. gzip is a 70 The zlib format was designed to be compact and fast for use in memory 72 file compression on file systems, has a larger header than zlib to maintai [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
zlib.h | 0 /* zlib.h -- interface of the 'zlib' general purpose compression library 26 The data format used by the zlib library is described by RFCs (Request for 28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format). 47 The 'zlib' compression library provides in-memory compression and 60 the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped 65 with "gz". The gzip format is different from the zlib format. gzip is a 70 The zlib format was designed to be compact and fast for use in memory 72 file compression on file systems, has a larger header than zlib to maintai [all...] |
/docs/source.android.com/src/source/ |
submit-patches.jd | 214 <h2 id="zlib">zlib</h2> 215 <p>All changes to the zlib project at <code>external/zlib</code> should be made upstream at 216 <a href="http://zlib.net">zlib.net</a>.</p>
|
/external/zlib/src/contrib/iostream3/ |
zfstream.h | 2 * A C++ I/O streams interface to the zlib gz* functions 15 #include "zlib.h" 23 * seeking (allowed by zlib but slow/limited), putback and read/write access 39 * @param comp_level Compression level (see zlib.h for allowed values) 40 * @param comp_strategy Compression strategy (see zlib.h for allowed values) 88 * @brief Convert ios open mode int to mode string used by zlib.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
types.py | 28 import zlib namespace 30 zlib = None variable 335 @unittest.skipUnless(zlib, "requires zlib") 338 return zlib.decompress(s) 350 result = self.con.execute('select ? as "x [bin]"', (buffer(zlib.compress(testdata)),)).fetchone()[0]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
types.py | 28 import zlib namespace 30 zlib = None variable 335 @unittest.skipUnless(zlib, "requires zlib") 338 return zlib.decompress(s) 350 result = self.con.execute('select ? as "x [bin]"', (buffer(zlib.compress(testdata)),)).fetchone()[0]
|
/external/libpng/contrib/pngminus/ |
README | 33 compiled three libraries: libpng, zlib and netpbm. Especially the latter 101 cases I used libpng-1.0.4 and zlib-1.1.3. Later versions should be OK, 107 that you have built the libraries in ../libpng and ../zlib. Using Linux,
|