/external/chromium_org/chrome/common/safe_browsing/ |
DEPS | 2 "+third_party/zlib",
|
/external/chromium_org/tools/imagediff/ |
DEPS | 3 "+third_party/zlib/zlib.h",
|
/external/chromium/net/base/ |
DEPS | 3 "+third_party/zlib",
|
/external/chromium_org/net/base/ |
DEPS | 3 "+third_party/zlib",
|
/external/chromium_org/remoting/base/ |
DEPS | 5 "+third_party/zlib",
|
/external/chromium_org/ui/gfx/codec/ |
DEPS | 6 "+third_party/zlib",
|
/external/zlib/src/as400/ |
readme.txt | 0 ZLIB version 1.2.8 for AS400 installation instructions 9 _ Create the ZLIB AS400 library: 11 CRTLIB LIB(ZLIB) TYPE(*PROD) TEXT('ZLIB compression API library') 15 CRTSAVF FILE(ZLIB/ZLIBSAVF) 24 2) Populating the ZLIB AS400 source library 28 _ Extract the saved objects into the ZLIB AS400 library using: 30 RSTOBJ OBJ(*ALL) SAVLIB(ZLIB) DEV(*SAVF) SAVF(ZLIB/ZLIBSAVF) RSTLIB(ZLIB) [all...] |
/external/libpng/projects/cbuilder5/ |
zlib.readme.txt | 2 explicitly build zlib. By taking this decision, there is no need 4 the list of zlib source files. After all, this list is private to 5 zlib, and applications (such as libpng) should not assume anything 8 If you wish to contribute a project that builds zlib under Borland 9 C++ Builder, please submit it to the zlib developers, not to the 12 By default, the libpng project uses zlib as a static library. If 13 you wish to use zlib as a DLL, please read the important notes from 14 the zlib DLL FAQ, found inside the zlib distribution.
|
libpng.readme.txt | 5 1). Install zlib in a directory at the same level with libpng. 7 2). In a console window, go to the zlib directory and type: 10 zlib.lib in the zlib directory. 18 5). If the build fails, add the paths to png.h and zlib.h to 21 By default, the libpng project uses zlib as a static library. If 22 you wish to use zlib as a DLL, please read the important notes from 23 the zlib DLL FAQ, found inside the zlib distribution.
|
/external/chromium_org/chrome/browser/media/ |
DEPS | 6 "+third_party/zlib"
|
/external/zlib/src/win32/ |
VisualC.txt | 2 To build zlib using the Microsoft Visual C++ environment,
|
/external/llvm/lib/Support/ |
Compression.cpp | 22 #include <zlib.h> 28 static int encodeZlibCompressionLevel(zlib::CompressionLevel Level) { 30 case zlib::NoCompression: return 0; 31 case zlib::BestSpeedCompression: return 1; 32 case zlib::DefaultCompression: return Z_DEFAULT_COMPRESSION; 33 case zlib::BestSizeCompression: return 9; 35 llvm_unreachable("Invalid zlib::CompressionLevel!"); 38 static zlib::Status encodeZlibReturnValue(int ReturnValue) { 40 case Z_OK: return zlib::StatusOK; 41 case Z_MEM_ERROR: return zlib::StatusOutOfMemory [all...] |
/external/zlib/src/contrib/ada/ |
readme.txt | 0 ZLib for Ada thick binding (ZLib.Ada) 4 ZLib.Ada is a thick binding interface to the popular ZLib data 5 compression library, available at http://www.gzip.org/zlib/. 6 It provides Ada-style access to the ZLib C library. 9 Here are the main changes since ZLib.Ada 1.2: 11 - Attension: ZLib.Read generic routine have a initialization requirement 16 - Added Is_Open routines to ZLib and ZLib.Streams packages [all...] |
/external/zlib/src/amiga/ |
Makefile.pup | 44 zip -ul9 zlib README ChangeLog Makefile Make????.??? Makefile.?? \ 48 cd ..; tar cfz zlib/zlib.tgz zlib/README zlib/ChangeLog zlib/Makefile \ 49 zlib/Make????.??? zlib/Makefile.?? zlib/descrip.mms zlib/*.[ch [all...] |
/external/llvm/unittests/Support/ |
CompressionTest.cpp | 27 void TestZlibCompression(StringRef Input, zlib::CompressionLevel Level) { 30 EXPECT_EQ(zlib::StatusOK, zlib::compress(Input, Compressed, Level)); 32 EXPECT_EQ(zlib::StatusOK, zlib::uncompress(Compressed->getBuffer(), 39 EXPECT_EQ(zlib::StatusBufferTooShort, 40 zlib::uncompress(Compressed->getBuffer(), Uncompressed, 45 TEST(CompressionTest, Zlib) { 46 TestZlibCompression("", zlib::DefaultCompression); 48 TestZlibCompression("hello, world!", zlib::NoCompression) [all...] |
/external/zlib/src/old/ |
descrip.mms | 1 # descrip.mms: MMS description file for building zlib on VMS 33 adler32.obj : zutil.h zlib.h zconf.h 34 compress.obj : zlib.h zconf.h 35 crc32.obj : zutil.h zlib.h zconf.h 36 deflate.obj : deflate.h zutil.h zlib.h zconf.h 37 example.obj : zlib.h zconf.h 38 gzio.obj : zutil.h zlib.h zconf.h 39 infblock.obj : zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h 40 infcodes.obj : zutil.h zlib.h zconf.h inftrees.h infutil.h infcodes.h inffast.h 41 inffast.obj : zutil.h zlib.h zconf.h inftrees.h infutil.h inffast. [all...] |
/external/chromium_org/native_client_sdk/src/libraries/zlib/ |
library.dsc | 5 '../../../../third_party/zlib', 9 'NAME' : 'zlib', 11 'INCLUDES': ['../../include/zlib'], 31 'DEST': 'include/zlib', 42 'zlib.h', 54 'NAME': 'zlib',
|
/external/chromium/net/ |
DEPS | 6 "+third_party/zlib",
|
/external/chromium_org/chrome/test/chromedriver/ |
DEPS | 9 "+third_party/zlib",
|
/external/chromium_org/third_party/skia/gyp/ |
zlib.gyp | 4 'target_name': 'zlib', 21 'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ], 29 'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ], 33 'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ],
|
/external/libpng/projects/visualc6/ |
libpng.dsw | 15 Project_Dep_Name zlib
36 Project: "zlib"="..\..\..\zlib\projects\visualc6\zlib.dsp" - Package Owner=<4>
|
/external/llvm/test/DebugInfo/ |
dwarfdump-zlib.test | 1 REQUIRES: zlib 3 RUN: llvm-dwarfdump %p/Inputs/dwarfdump-test-zlib.elf-x86-64 \ 5 RUN: llvm-dwarfdump %p/Inputs/dwarfdump-test-zlib.elf-x86-64 \ 12 MAIN-NEXT: /tmp/dbginfo{{[/\\]}}dwarfdump-test-zlib.cc:16
|
/external/skia/gyp/ |
zlib.gyp | 4 'target_name': 'zlib', 21 'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ], 29 'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ], 33 'defines': [ 'SK_ZLIB_INCLUDE=<zlib.h>', ],
|
/external/zlib/src/contrib/delphi/ |
ZLibConst.pas | 6 sTargetBufferTooSmall = 'ZLib error: target buffer may be too small';
|
/external/zlib/src/contrib/untgz/ |
Makefile.msc | 4 untgz.exe: untgz.obj ..\..\zlib.lib 5 $(CC) $(CFLAGS) untgz.obj ..\..\zlib.lib 7 untgz.obj: untgz.c ..\..\zlib.h 10 ..\..\zlib.lib:
|