/external/zlib/src/old/ |
README | 1 This directory contains files that have not been updated for zlib 1.2.x
|
/external/chromium_org/chrome/browser/ui/webui/ |
DEPS | 11 "+third_party/zlib/zlib.h", # For compression level constants.
|
/external/libpng/contrib/pngminim/decoder/ |
README | 3 To build a minimal read-only decoder with embedded libpng and zlib, run 5 gather.sh # to collect needed files from pngminus, libpng, and zlib
|
gather.sh | 6 # change the following 2 lines if zlib is somewhere else 7 cp ../../../../zlib/*.h . 8 cp ../../../../zlib/*.c .
|
/external/libpng/contrib/pngminim/encoder/ |
README | 3 To build a minimal write-only decoder with embedded libpng and zlib, run 5 gather.sh # to collect needed files from pngminus, libpng, and zlib
|
gather.sh | 6 # Change the next 2 lines if zlib is somewhere else. 7 cp ../../../../zlib/*.h . 8 cp ../../../../zlib/*.c .
|
/external/zlib/src/ |
zlib.pc | 7 Name: zlib 8 Description: zlib compression library
|
zlib.pc.cmakein | 7 Name: zlib 8 Description: zlib compression library
|
zlib.pc.in | 7 Name: zlib 8 Description: zlib compression library
|
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 documentatio [all...] |
README | 0 ZLIB DATA COMPRESSION LIBRARY 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 t [all...] |
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/ [all...] |
treebuild.xml | 2 <package name="zlib" version="1.2.8"> 3 <library name="zlib" dlversion="1.2.8" dlname="z"> 10 <include-file name="zlib.h" scope="public" mode="644" /> 14 <depend name="zlib.h" /> 18 <depend name="zlib.h" /> 22 <depend name="zlib.h" /> 27 <depend name="zlib.h" /> 32 <depend name="zlib.h" /> 37 <depend name="zlib.h" /> 42 <depend name="zlib.h" / [all...] |
zlib.3 | 1 .TH ZLIB 3 "28 Apr 2013" 3 zlib \- compression/decompression library 6 .I zlib.h 10 .I zlib 36 .IR zlib.h . 50 .I zlib 56 .IR zlib , 61 http://search.cpan.org/~pmqs/IO-Compress-Zlib/ 64 .IR zlib , 68 http://docs.python.org/library/zlib.htm [all...] |
/external/zlib/src/amiga/ |
Makefile.sas | 1 # SMakefile for zlib 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. [all...] |
/external/zlib/src/win32/ |
README-WIN32.txt | 0 ZLIB DATA COMPRESSION LIBRARY 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 t [all...] |
/external/zlib/src/contrib/ada/ |
zlib-thin.ads | 2 -- ZLib for Ada thick binding. -- 6 -- Open source license information is in the zlib.ads file. -- 9 -- $Id: zlib-thin.ads,v 1.11 2004/07/23 06:33:11 vagul Exp $ 15 private package ZLib.Thin is 54 Z_NO_FLUSH : constant := 8#0000#; -- zlib.h:125 55 -- zlib.h:125 56 Z_PARTIAL_FLUSH : constant := 1; -- zlib.h:126 59 -- zlib.h:126 60 Z_SYNC_FLUSH : constant := 2; -- zlib.h:127 61 -- zlib.h:12 [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_zlib.py | 13 zlib = import_module('zlib') variable 19 self.assertEqual(zlib.crc32(""), zlib.crc32("", 0)) 20 self.assertTrue(zlib.crc32("abc", 0xffffffff)) 23 self.assertEqual(zlib.crc32("", 0), 0) 24 self.assertEqual(zlib.crc32("", 1), 1) 25 self.assertEqual(zlib.crc32("", 432), 432) 28 self.assertEqual(zlib.adler32(""), zlib.adler32("", 1) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_zlib.py | 13 zlib = import_module('zlib') variable 19 self.assertEqual(zlib.crc32(""), zlib.crc32("", 0)) 20 self.assertTrue(zlib.crc32("abc", 0xffffffff)) 23 self.assertEqual(zlib.crc32("", 0), 0) 24 self.assertEqual(zlib.crc32("", 1), 1) 25 self.assertEqual(zlib.crc32("", 432), 432) 28 self.assertEqual(zlib.adler32(""), zlib.adler32("", 1) [all...] |
/external/libpng/projects/visualc71/ |
README_zlib.txt | 2 It is expected to be part of the next zlib release under 5 Microsoft Developer Studio Project File, Format Version 7.10 for zlib. 9 For conditions of distribution and use, see copyright notice in zlib.h. 15 Open "zlib.sln". 20 binaries set "zlib" as the startup project (Select "zlib" tree view item + 34 This project builds the zlib binaries as follows: 40 * Win32_LIB_Release\zlib.lib static build 42 * Win32_LIB_ASM_Release\zlib.lib static build using ASM code
|
/external/chromium_org/third_party/ots/ |
ots.gyp | 30 '../zlib/zlib.gyp:zlib',
|
/external/chromium_org/third_party/zlib/contrib/minizip/ |
mztools.h | 4 License: Same as ZLIB (www.gzip.org) 15 #include "third_party/zlib/zlib.h"
|
/external/llvm/test/DebugInfo/Inputs/ |
dwarfdump-test-zlib.cc | 21 // $ cp dwarfdump-test-zlib.cc /tmp/dbginfo 23 // $ clang++ -g dwarfdump-test-zlib.cc -Wl,--compress-debug-sections=zlib \
|
/system/core/libzipfile/ |
Android.mk | 15 LOCAL_C_INCLUDES += external/zlib 31 LOCAL_C_INCLUDES += external/zlib 46 LOCAL_C_INCLUDES += external/zlib
|
/external/chromium_org/net/ |
DEPS | 7 "+third_party/zlib",
|