/external/chromium_org/third_party/zlib/ |
BUILD.gn | 9 static_library("zlib") { 40 "zlib.h", 76 # zlib uses `if ((a == b))` for some reason. 80 deps = [ ":zlib" ]
|
zlib.gyp | 8 'target_name': 'zlib', 35 'zlib.h', 69 'zlib', 82 # zlib uses `if ((a == b))` for some reason.
|
/external/chromium_org/tools/imagediff/ |
BUILD.gn | 18 "//third_party/zlib",
|
/external/libpng/scripts/ |
makefile.amiga | 9 # Location/path of zlib include files 10 ZLIB=/zlib 17 OPTLOOP OPTRDEP=4 OPTDEP=4 OPTCOMP=4 INCLUDEDIR=$(ZLIB) \
|
/external/qemu/distrib/libsparse/ |
sources.mk | 36 LOCAL_STATIC_LIBRARIES := emulator-libsparse emulator-zlib 42 LOCAL_STATIC_LIBRARIES := emulator-libsparse emulator-zlib 48 LOCAL_STATIC_LIBRARIES := emulator64-libsparse emulator64-zlib 54 LOCAL_STATIC_LIBRARIES := emulator64-libsparse emulator64-zlib
|
/external/zlib/src/examples/ |
README.examples | 1 This directory contains examples of the use of zlib and other relevant 11 - zlib isn't designed to do this, but fitblk does it anyway 42 reads and writes zlib streams from stdin to stdout 47 index a zlib or gzip stream and randomly access it
|
/external/zopfli/ |
README | 2 very good, but slow, deflate or zlib compression. 9 ZopfliCompress supports deflate, gzip and zlib output format with a parameter. 16 ZopfliZlibCompress creates a valid zlib stream in memory, see: 21 This library can only compress, not decompress. Existing zlib or deflate
|
/external/chromium_org/third_party/freetype/ |
freetype.gyp | 39 '../zlib/zlib.gyp:zlib',
|
/external/chromium_org/third_party/ots/ |
INSTALL | 11 1. If you are building OTS on Windows, download zlib from 12 http://www.zlib.net/ and put them in third_party/zlib.
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
gzip_stream.h | 46 #include <zlib.h> 55 // A ZeroCopyInputStream that reads compressed data through zlib 60 // zlib will autodetect gzip header or deflate stream 66 // Simpler zlib stream format. 67 ZLIB = 2, 117 // Simpler zlib stream format. 118 ZLIB = 2, 129 // compression. Defaults to Z_DEFAULT_COMPRESSION (see zlib.h). 134 // zlib.h for definitions of these constants. 164 // Please ensure that block size is > 6. Here is an excerpt from the zlib [all...] |
/external/libpng/projects/owatcom/ |
libpng.wpj | 16 # Locations of zlib and (if required) awk (change as required:)
17 set zlib=..\..\..\zlib
|
pngstest.tgt | 67 $(%zlib)
83 libpng.lib zlib.lib
115 $(%zlib)
131 libpng.lib zlib.lib
177 "$(%zlib);$(%watcom)/h;$(%watcom)/h/nt"
193 "$(%zlib);$(%watcom)/h;$(%watcom)/h/nt"
|
/external/protobuf/ |
configure.ac | 33 AC_ARG_WITH([zlib], 34 [AS_HELP_STRING([--with-zlib], 85 # Check for zlib. 88 AC_MSG_CHECKING([zlib version]) 90 # First check the zlib header version. 93 #include <zlib.h> 95 # error zlib version too old 102 AC_DEFINE([HAVE_ZLIB], [1], [Enable classes using zlib compression.]) 106 AC_MSG_FAILURE([--with-zlib was given, but no working zlib library was found] [all...] |
/external/protobuf/src/google/protobuf/io/ |
gzip_stream.h | 46 #include <zlib.h> 54 // A ZeroCopyInputStream that reads compressed data through zlib 59 // zlib will autodetect gzip header or deflate stream 65 // Simpler zlib stream format. 66 ZLIB = 2, 116 // Simpler zlib stream format. 117 ZLIB = 2, 128 // compression. Defaults to Z_DEFAULT_COMPRESSION (see zlib.h). 133 // zlib.h for definitions of these constants. 196 // Takes zlib flush mode [all...] |
/external/zlib/src/qnx/ |
package.qpg | 27 <QPG:Add file="../zlib.h" install="/opt/include/" user="root:sys" permission="644"/> 45 <QPM:ProductName>zlib</QPM:ProductName> 46 <QPM:ProductIdentifier>zlib</QPM:ProductIdentifier> 50 <QPM:VendorURL>www.gzip.org/zlib</QPM:VendorURL> 54 <QPM:AuthorURL>www.gzip.org/zlib</QPM:AuthorURL> 56 <QPM:AuthorEmail>zlib@gzip.org</QPM:AuthorEmail> 60 <QPM:ProductDescriptionLong>zlib is designed to be a free, general-purpose, legally unencumbered, lossless data compression library for use on virtually any computer hardware and operating system.</QPM:ProductDescriptionLong> 61 <QPM:ProductDescriptionURL>http://www.gzip.org/zlib</QPM:ProductDescriptionURL> 80 <QPM:ContentKeyword>zlib,compression</QPM:ContentKeyword> 118 <QPM:Product>zlib</QPM:Product [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_archive_util.py | 32 # some tests will fail if zlib is not available 34 import zlib namespace 36 zlib = None variable 55 @unittest.skipUnless(zlib, "requires zlib") 119 @unittest.skipUnless(zlib, "Requires zlib") 205 @unittest.skipUnless(zlib, "Requires zlib") 230 @unittest.skipUnless(zlib, "Requires zlib" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/ |
test_archive_util.py | 32 # some tests will fail if zlib is not available 34 import zlib namespace 36 zlib = None variable 55 @unittest.skipUnless(zlib, "requires zlib") 119 @unittest.skipUnless(zlib, "Requires zlib") 205 @unittest.skipUnless(zlib, "Requires zlib") 230 @unittest.skipUnless(zlib, "Requires zlib" [all...] |
/external/chromium_org/components/metrics/ |
compression_utils.cc | 12 #include "third_party/zlib/zlib.h" 16 // The difference in bytes between a zlib header and a gzip header. 20 // zlib header when calling deflateInit2() and inflateInit2(). 23 // This describes the amount of memory zlib uses to compress data. It can go 25 // http://www.zlib.net/manual.html (search for memLevel). 28 // This code is taken almost verbatim from third_party/zlib/compress.c. The only 30 // That causes a gzip header to be emitted rather than a zlib header. 74 // This code is taken almost verbatim from third_party/zlib/uncompr.c. The only 76 // That causes a gzip header to be parsed rather than a zlib header [all...] |
/external/libpng/projects/visualc71/ |
pngtest.vcproj | 20 AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib" 30 CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib 67 AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib" 77 CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib 115 AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib" 126 CommandLine="set path=$(OutDir)\..;$(OutDir)\..\..\Win32_DLL_Release\ZLib 165 AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib" 175 CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib 213 AdditionalIncludeDirectories="..\..\scripts;..\..\..\zlib" 223 CommandLine="set path=$(OutDir)\..;$(OutDir)\..\ZLib [all...] |
/external/libpng/ |
INSTALL | 39 Before installing libpng, you must first install zlib, if it 40 is not already on your system. zlib can usually be found 41 wherever you got libpng. zlib can be placed in another directory, 44 If your system already has a preinstalled zlib you will still need 45 to have access to the zlib.h and zconf.h include files that 46 correspond to the version of zlib that's installed. 48 If you wish to test with a particular zlib that is not first in the 69 might be called "libpng-x.y.z" or "libpngNN" and "zlib-1.2.7" 70 or "zlib127") so that you have directories called "zlib" and "libpng". 102 zlib [all...] |
/external/chromium_org/rlz/ |
rlz.gyp | 136 '../third_party/zlib/zlib.gyp:zlib', 182 '../third_party/zlib/zlib.gyp:zlib',
|
/external/llvm/test/MC/ELF/ |
compression.s | 7 // REQUIRES: zlib 10 // Check for the 'ZLIB' file magic at the start of the section only 11 // CHECK-NEXT: ZLIB 12 // CHECK-NOT: ZLIB 17 // CHECK-NOT: ZLIB 24 // CHECK-NOT: ZLIB
|
/external/zlib/src/msdos/ |
Makefile.dj2 | 1 # Makefile for zlib. Modified for djgpp v2.0 by F. J. Donahoe, 3/15/96. 3 # For conditions of distribution and use, see copyright notice in zlib.h 9 # To install libz.a, zconf.h and zlib.h in the djgpp directories, type: 46 INCL=zlib.h zconf.h 85 $(INSTALL) zlib.h $(INCLUDE_PATH) 90 $(RM) $(INCLUDE_PATH)\zlib.h
|
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/ |
alerts.py | 10 import zlib namespace 48 uncompressed = zlib.decompress(compressed) 70 compressed = zlib.compress(uncompressed, compression_level)
|
/external/chromium_org/third_party/fontconfig/ |
fontconfig.gyp | 11 '../zlib/zlib.gyp:zlib',
|