/external/skia/gyp/ |
D | zlib.gyp | 14 '../third_party/externals/zlib/crc_folding.c', 15 '../third_party/externals/zlib/fill_window_sse.c', 28 'target_name': 'zlib', 31 [ 'skia_android_framework', { 'include_dirs': [ 'external/zlib' ] }], 48 '../third_party/externals/zlib/adler32.c', 49 '../third_party/externals/zlib/compress.c', 50 '../third_party/externals/zlib/crc32.c', 51 '../third_party/externals/zlib/crc32.h', 52 '../third_party/externals/zlib/deflate.c', 53 '../third_party/externals/zlib/deflate.h', [all …]
|
/external/llvm/lib/Support/ |
D | Compression.cpp | 27 static int encodeZlibCompressionLevel(zlib::CompressionLevel Level) { in encodeZlibCompressionLevel() 29 case zlib::NoCompression: return 0; in encodeZlibCompressionLevel() 30 case zlib::BestSpeedCompression: return 1; in encodeZlibCompressionLevel() 31 case zlib::DefaultCompression: return Z_DEFAULT_COMPRESSION; in encodeZlibCompressionLevel() 32 case zlib::BestSizeCompression: return 9; in encodeZlibCompressionLevel() 37 static zlib::Status encodeZlibReturnValue(int ReturnValue) { in encodeZlibReturnValue() 39 case Z_OK: return zlib::StatusOK; in encodeZlibReturnValue() 40 case Z_MEM_ERROR: return zlib::StatusOutOfMemory; in encodeZlibReturnValue() 41 case Z_BUF_ERROR: return zlib::StatusBufferTooShort; in encodeZlibReturnValue() 42 case Z_STREAM_ERROR: return zlib::StatusInvalidArg; in encodeZlibReturnValue() [all …]
|
/external/zlib/src/amiga/ |
D | 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] 53 adler32.o: zlib.h zconf.h 54 compress.o: zlib.h zconf.h 55 crc32.o: crc32.h zlib.h zconf.h 56 deflate.o: deflate.h zutil.h zlib.h zconf.h 57 example.o: zlib.h zconf.h 58 gzclose.o: zlib.h zconf.h gzguts.h 59 gzlib.o: zlib.h zconf.h gzguts.h [all …]
|
D | Makefile.sas | 29 copy clone zlib.h zconf.h INCLUDE: 52 adler32.o: zlib.h zconf.h 53 compress.o: zlib.h zconf.h 54 crc32.o: crc32.h zlib.h zconf.h 55 deflate.o: deflate.h zutil.h zlib.h zconf.h 56 example.o: zlib.h zconf.h 57 gzclose.o: zlib.h zconf.h gzguts.h 58 gzlib.o: zlib.h zconf.h gzguts.h 59 gzread.o: zlib.h zconf.h gzguts.h 60 gzwrite.o: zlib.h zconf.h gzguts.h [all …]
|
/external/llvm/unittests/Support/ |
D | CompressionTest.cpp | 26 void TestZlibCompression(StringRef Input, zlib::CompressionLevel Level) { in TestZlibCompression() 29 EXPECT_EQ(zlib::StatusOK, zlib::compress(Input, Compressed, Level)); in TestZlibCompression() 31 EXPECT_EQ(zlib::StatusOK, in TestZlibCompression() 32 zlib::uncompress(Compressed, Uncompressed, Input.size())); in TestZlibCompression() 36 EXPECT_EQ(zlib::StatusBufferTooShort, in TestZlibCompression() 37 zlib::uncompress(Compressed, Uncompressed, Input.size() - 1)); in TestZlibCompression() 42 TestZlibCompression("", zlib::DefaultCompression); in TEST() 44 TestZlibCompression("hello, world!", zlib::NoCompression); in TEST() 45 TestZlibCompression("hello, world!", zlib::BestSizeCompression); in TEST() 46 TestZlibCompression("hello, world!", zlib::BestSpeedCompression); in TEST() [all …]
|
/external/libpng/contrib/tools/ |
D | pngfix.c | 2011 struct zlib struct 2041 zlib_flevel(struct zlib *zlib) in zlib_flevel() argument 2043 switch (zlib->header[1] >> 6) in zlib_flevel() 2056 zlib_rc(struct zlib *zlib) in zlib_rc() argument 2059 switch (zlib->rc) in zlib_rc() 2075 zlib_message(struct zlib *zlib, int unexpected) in zlib_message() argument 2078 if (zlib->global->errors) in zlib_message() 2080 const char *reason = zlib->z.msg; in zlib_message() 2085 fputs(zlib->file->file_name, stderr); in zlib_message() 2087 type_name(zlib->chunk->chunk_type, stderr); in zlib_message() [all …]
|
/external/zlib/src/ |
D | FAQ | 2 Frequently Asked Questions about zlib 5 If your question is not there, please check the zlib home page 6 http://zlib.net/ which may have more recent information. 7 The lastest zlib FAQ is at http://zlib.net/zlib_faq.html 10 1. Is zlib Y2K-compliant? 12 Yes. zlib doesn't handle dates. 16 The zlib sources can be compiled without change to produce a DLL. See the 17 file win32/DLL_FAQ.txt in the zlib distribution. Pointers to the 18 precompiled DLL are found in the zlib web site at http://zlib.net/ . 20 3. Where can I get a Visual Basic interface to zlib? [all …]
|
D | Makefile.in | 116 infcover.o: test/infcover.c zlib.h zconf.h 143 example.o: test/example.c zlib.h zconf.h 146 minigzip.o: test/minigzip.c zlib.h zconf.h 149 example64.o: test/example.c zlib.h zconf.h 152 minigzip64.o: test/minigzip.c zlib.h zconf.h 206 cp zlib.3 $(DESTDIR)$(man3dir) 207 chmod 644 $(DESTDIR)$(man3dir)/zlib.3 208 cp zlib.pc $(DESTDIR)$(pkgconfigdir) 209 chmod 644 $(DESTDIR)$(pkgconfigdir)/zlib.pc 215 cp zlib.h zconf.h $(DESTDIR)$(includedir) [all …]
|
D | INDEX | 3 FAQ Frequently Asked Questions about zlib 10 test/example.c zlib usages examples for build testing 16 zlib.3 Man page for zlib 17 zlib.3.pdf Man page in PDF format 18 zlib.map Linux symbol information 19 zlib.pc.in Template for pkg-config descriptor 20 zlib.pc.cmakein zlib.pc template for cmake 28 old/ makefiles for various architectures and zlib documentation 29 files that have not yet been updated for zlib 1.2.x 34 zlib public header files (required for library use): [all …]
|
D | README | 3 zlib 1.2.8 is a general purpose data compression library. All the code is 4 thread safe. The data format used by the zlib library is described by RFCs 6 http://tools.ietf.org/html/rfc1950 (zlib format), rfc1951 (deflate format) and 9 All functions of the compression library are documented in the file zlib.h 10 (volunteer to write man pages welcome, contact zlib@gzip.org). A usage example 22 Questions about zlib should be sent to <zlib@gzip.org>, or to Gilles Vollant 23 <info@winimage.com> for the Windows DLL version. The zlib home page is 24 http://zlib.net/ . Before reporting a problem, please check this site to 25 verify that you have the latest version of zlib; otherwise get the latest 28 PLEASE read the zlib FAQ http://zlib.net/zlib_faq.html before asking for help. [all …]
|
D | CMakeLists.txt | 4 project(zlib C) project 75 message(STATUS "to 'zconf.h.included' because this file is included with zlib") 81 set(ZLIB_PC ${CMAKE_CURRENT_BINARY_DIR}/zlib.pc) 82 configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/zlib.pc.cmakein 90 # zlib 95 zlib.h 165 # parse the full version number from zlib.h and include in ZLIB_FULL_VERSION 166 file(READ ${CMAKE_CURRENT_SOURCE_DIR}/zlib.h _zlib_h_contents) 186 add_library(zlib SHARED ${ZLIB_SRCS} ${ZLIB_ASMS} ${ZLIB_DLL_SRCS} ${ZLIB_PUBLIC_HDRS} ${ZLIB_PRIVA… target 188 set_target_properties(zlib PROPERTIES DEFINE_SYMBOL ZLIB_DLL) [all …]
|
/external/zlib/src/win32/ |
D | Makefile.gcc | 95 $(SHAREDLIB): win32/zlib.def $(OBJS) $(OBJA) zlibrc.o 97 -o $@ win32/zlib.def $(OBJS) $(OBJA) zlibrc.o 116 example.o: test/example.c zlib.h zconf.h 119 minigzip.o: test/minigzip.c zlib.h zconf.h 127 install: zlib.h zconf.h $(STATICLIB) $(IMPLIB) 139 -$(INSTALL) zlib.h '$(DESTDIR)$(INCLUDE_PATH)' 148 -e 's|@VERSION@|'`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' zlib.h`'|g' \ 149 zlib.pc.in > '$(DESTDIR)$(LIBRARY_PATH)'/pkgconfig/zlib.pc 156 -$(RM) '$(DESTDIR)$(INCLUDE_PATH)'/zlib.h 168 adler32.o: zlib.h zconf.h [all …]
|
D | Makefile.bor | 25 ZLIB_LIB = zlib.lib 44 adler32.obj: adler32.c zlib.h zconf.h 46 compress.obj: compress.c zlib.h zconf.h 48 crc32.obj: crc32.c zlib.h zconf.h crc32.h 50 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h 52 gzclose.obj: gzclose.c zlib.h zconf.h gzguts.h 54 gzlib.obj: gzlib.c zlib.h zconf.h gzguts.h 56 gzread.obj: gzread.c zlib.h zconf.h gzguts.h 58 gzwrite.obj: gzwrite.c zlib.h zconf.h gzguts.h 60 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ [all …]
|
D | README-WIN32.txt | 3 zlib 1.2.8 is a general purpose data compression library. All the code is 4 thread safe. The data format used by the zlib library is described by RFCs 6 http://www.ietf.org/rfc/rfc1950.txt (zlib format), rfc1951.txt (deflate format) 9 All functions of the compression library are documented in the file zlib.h 10 (volunteer to write man pages welcome, contact zlib@gzip.org). Two compiled 14 Questions about zlib should be sent to <zlib@gzip.org>. The zlib home page 15 is http://zlib.net/ . Before reporting a problem, please check this site to 16 verify that you have the latest version of zlib; otherwise get the latest 19 PLEASE read DLL_FAQ.txt, and the the zlib FAQ http://zlib.net/zlib_faq.html 25 The package zlib-1.2.8-win32-x86.zip will contain the following files: [all …]
|
D | Makefile.msc | 20 STATICLIB = zlib.lib 50 $(SHAREDLIB): $(TOP)/win32/zlib.def $(OBJS) $(OBJA) zlib1.res 51 $(LD) $(LDFLAGS) -def:$(TOP)/win32/zlib.def -dll -implib:$(IMPLIB) \ 91 adler32.obj: $(TOP)/adler32.c $(TOP)/zlib.h $(TOP)/zconf.h 93 compress.obj: $(TOP)/compress.c $(TOP)/zlib.h $(TOP)/zconf.h 95 crc32.obj: $(TOP)/crc32.c $(TOP)/zlib.h $(TOP)/zconf.h $(TOP)/crc32.h 97 deflate.obj: $(TOP)/deflate.c $(TOP)/deflate.h $(TOP)/zutil.h $(TOP)/zlib.h $(TOP)/zconf.h 99 gzclose.obj: $(TOP)/gzclose.c $(TOP)/zlib.h $(TOP)/zconf.h $(TOP)/gzguts.h 101 gzlib.obj: $(TOP)/gzlib.c $(TOP)/zlib.h $(TOP)/zconf.h $(TOP)/gzguts.h 103 gzread.obj: $(TOP)/gzread.c $(TOP)/zlib.h $(TOP)/zconf.h $(TOP)/gzguts.h [all …]
|
/external/zlib/src/old/os2/ |
D | Makefile.os2 | 51 algorithm.txt zlib.3 msdos/Make*[a-z0-9] msdos/zlib.def msdos/zlib.rc \ 52 nt/Makefile.nt nt/zlib.dnt contrib/README.contrib contrib/*.txt \ 94 v=`sed -n -e 's/\.//g' -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ 95 zip -ul9 zlib$$v $(DISTFILES) 101 d=zlib-`sed -n '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ 119 adler32.o: zlib.h zconf.h 120 compress.o: zlib.h zconf.h 121 crc32.o: zlib.h zconf.h 122 deflate.o: deflate.h zutil.h zlib.h zconf.h 123 example.o: zlib.h zconf.h [all …]
|
/external/zlib/src/old/ |
D | 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.h [all …]
|
/external/zlib/src/contrib/delphi/ |
D | zlibd32.mak | 1 # Makefile for zlib 3 # Updated for zlib 1.2.x by Cosmin Truta 19 ZLIB_LIB = zlib.lib 33 adler32.obj: adler32.c zlib.h zconf.h 35 compress.obj: compress.c zlib.h zconf.h 37 crc32.obj: crc32.c zlib.h zconf.h crc32.h 39 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h 41 gzclose.obj: gzclose.c zlib.h zconf.h gzguts.h 43 gzlib.obj: gzlib.c zlib.h zconf.h gzguts.h 45 gzread.obj: gzread.c zlib.h zconf.h gzguts.h [all …]
|
/external/zlib/src/contrib/pascal/ |
D | zlibd32.mak | 1 # Makefile for zlib 3 # Updated for zlib 1.2.x by Cosmin Truta 19 ZLIB_LIB = zlib.lib 33 adler32.obj: adler32.c zlib.h zconf.h 35 compress.obj: compress.c zlib.h zconf.h 37 crc32.obj: crc32.c zlib.h zconf.h crc32.h 39 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h 41 gzclose.obj: gzclose.c zlib.h zconf.h gzguts.h 43 gzlib.obj: gzlib.c zlib.h zconf.h gzguts.h 45 gzread.obj: gzread.c zlib.h zconf.h gzguts.h [all …]
|
/external/zlib/src/msdos/ |
D | Makefile.msc | 50 adler32.obj: adler32.c zlib.h zconf.h 52 compress.obj: compress.c zlib.h zconf.h 54 crc32.obj: crc32.c zlib.h zconf.h crc32.h 56 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h 58 gzclose.obj: gzclose.c zlib.h zconf.h gzguts.h 60 gzlib.obj: gzlib.c zlib.h zconf.h gzguts.h 62 gzread.obj: gzread.c zlib.h zconf.h gzguts.h 64 gzwrite.obj: gzwrite.c zlib.h zconf.h gzguts.h 66 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ 69 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ [all …]
|
D | Makefile.tc | 41 adler32.obj: adler32.c zlib.h zconf.h 43 compress.obj: compress.c zlib.h zconf.h 45 crc32.obj: crc32.c zlib.h zconf.h crc32.h 47 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h 49 gzclose.obj: gzclose.c zlib.h zconf.h gzguts.h 51 gzlib.obj: gzlib.c zlib.h zconf.h gzguts.h 53 gzread.obj: gzread.c zlib.h zconf.h gzguts.h 55 gzwrite.obj: gzwrite.c zlib.h zconf.h gzguts.h 57 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ 60 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ [all …]
|
D | Makefile.bor | 56 adler32.obj: adler32.c zlib.h zconf.h 58 compress.obj: compress.c zlib.h zconf.h 60 crc32.obj: crc32.c zlib.h zconf.h crc32.h 62 deflate.obj: deflate.c deflate.h zutil.h zlib.h zconf.h 64 gzclose.obj: gzclose.c zlib.h zconf.h gzguts.h 66 gzlib.obj: gzlib.c zlib.h zconf.h gzguts.h 68 gzread.obj: gzread.c zlib.h zconf.h gzguts.h 70 gzwrite.obj: gzwrite.c zlib.h zconf.h gzguts.h 72 infback.obj: infback.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ 75 inffast.obj: inffast.c zutil.h zlib.h zconf.h inftrees.h inflate.h \ [all …]
|
/external/zlib/src/contrib/vstudio/ |
D | readme.txt | 4 This directory contains projects that build zlib and minizip using 19 - Uncompress current zlib, including all contrib/* files 28 - Uncompress current zlib, including all contrib/* files 33 - Uncompress current zlib, including all contrib/* files 45 - This DLL, named zlibwapi.dll, is compatible to the old zlib.dll built 46 by Gilles Vollant from the zlib 1.1.x sources, and distributed at 50 particular build of zlib.dll, you can rename zlibwapi.dll to zlib.dll. 53 versions of zlib.dll on the Internet. 55 - There is also an official DLL build of zlib, named zlib1.dll. This one 57 win32\DLL_FAQ.txt found in this zlib distribution. [all …]
|
/external/libpng/projects/owatcom/ |
D | pngtest.tgt | 52 $(%zlib) 68 libpng.lib zlib.lib 84 $(%zlib) 100 libpng.lib zlib.lib 137 "$(%zlib);$(%watcom)/h;$(%watcom)/h/nt" 153 "$(%zlib);$(%watcom)/h;$(%watcom)/h/nt"
|
D | pngvalid.tgt | 67 $(%zlib) 83 libpng.lib zlib.lib 115 $(%zlib) 131 libpng.lib zlib.lib 168 "$(%zlib);$(%watcom)/h;$(%watcom)/h/nt" 184 "$(%zlib);$(%watcom)/h;$(%watcom)/h/nt"
|