/external/rust/crates/libz-sys/src/zlib-ng/ |
D | FAQ.zlib | 2 # THIS IS AN UNMAINTAINED COPY OF THE ORIGINAL FILE DISTRIBUTED WITH ZLIB 1.2.11 8 Frequently Asked Questions about zlib 11 If your question is not there, please check the zlib home page 12 http://zlib.net/ which may have more recent information. 13 The lastest zlib FAQ is at http://zlib.net/zlib_faq.html 16 1. Is zlib Y2K-compliant? 18 Yes. zlib doesn't handle dates. 22 The zlib sources can be compiled without change to produce a DLL. See the 23 file win32/DLL_FAQ.txt in the zlib distribution. Pointers to the 24 precompiled DLL are found in the zlib web site at http://zlib.net/ . [all …]
|
D | README.md | 1 ## zlib-ng 2 *zlib data compression library for the next generation systems* 5 aka Dead2 (zlib-ng àt circlestorm dót org) 9 …zlib-ng/zlib-ng/workflows/CI%20CMake/badge.svg)](https://github.com/zlib-ng/zlib-ng/actions) [| 11 …www.codefactor.io/repository/github/zlib-ng/zlib-ng/badge)](https://www.codefactor.io/repository/g… 12 …storage.googleapis.com/badges/zlib-ng.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=… 13 …cov.io](https://codecov.io/github/zlib-ng/zlib-ng/coverage.svg?branch=develop)](https://codecov.io… 19 * Zlib compatible API with support for dual-linking 20 * Modernized native API based on zlib API for ease of porting [all …]
|
D | PORTING.md | 1 Porting applications to use zlib-ng 4 Zlib-ng can be used/compiled in two different modes, that require some 7 zlib-compat mode 9 Zlib-ng can be compiled in zlib-compat mode, suitable for zlib-replacement 12 Please note that zlib-ng in zlib-compat mode is API-compatible but not 13 ABI-compatible, meaning that you cannot simply replace the zlib library/dll 15 recompiled against the zlib-ng headers and libs to ensure full compatability. 22 - Can conflict with a system-installed zlib, as that can often be linked in 27 (looking at you nginx), you should be aware that zlib-ng needs to allocate 28 more memory than stock zlib needs. The same problem exists with Intels and [all …]
|
/external/python/cpython2/Modules/zlib/ |
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 | README | 1 ZLIB DATA COMPRESSION LIBRARY 3 zlib 1.2.11 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 [all …]
|
/external/rust/crates/libz-sys/src/zlib/ |
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 | README | 1 ZLIB DATA COMPRESSION LIBRARY 3 zlib 1.2.11 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 [all …]
|
D | zlib.3 | 1 .TH ZLIB 3 "15 Jan 2017" 3 zlib \- compression/decompression library 6 .I zlib.h 10 .I zlib 36 .IR zlib.h . 50 .I zlib 56 .I zlib 64 .I zlib 68 .I zlib 71 http://zlib.net/ [all …]
|
/external/python/cpython2/Lib/test/ |
D | test_zlib.py | 15 zlib = import_module('zlib') variable 18 hasattr(zlib.compressobj(), "copy"), 21 hasattr(zlib.decompressobj(), "copy"), 28 self.assertEqual(zlib.crc32(""), zlib.crc32("", 0)) 29 self.assertTrue(zlib.crc32("abc", 0xffffffff)) 32 self.assertEqual(zlib.crc32("", 0), 0) 33 self.assertEqual(zlib.crc32("", 1), 1) 34 self.assertEqual(zlib.crc32("", 432), 432) 37 self.assertEqual(zlib.adler32(""), zlib.adler32("", 1)) 38 self.assertTrue(zlib.adler32("abc", 0xffffffff)) [all …]
|
/external/python/cpython3/Lib/test/ |
D | test_zlib.py | 12 zlib = import_helper.import_module('zlib') variable 15 hasattr(zlib.compressobj(), "copy"), 18 hasattr(zlib.decompressobj(), "copy"), 30 self.assertEqual(zlib.ZLIB_RUNTIME_VERSION[0], zlib.ZLIB_VERSION[0]) 36 self.assertEqual(zlib.crc32(b""), zlib.crc32(b"", 0)) 37 self.assertTrue(zlib.crc32(b"abc", 0xffffffff)) 40 self.assertEqual(zlib.crc32(b"", 0), 0) 41 self.assertEqual(zlib.crc32(b"", 1), 1) 42 self.assertEqual(zlib.crc32(b"", 432), 432) 45 self.assertEqual(zlib.adler32(b""), zlib.adler32(b"", 1)) [all …]
|
/external/rust/crates/libz-sys/src/zlib/contrib/ada/ |
D | 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:127 [all …]
|
D | test.adb | 2 -- ZLib for Ada thick binding. -- 6 -- Open source license information is in the zlib.ads file. -- 12 -- 1. Test ZLib.Ada95 thick binding functionality. 13 -- 2. Show the example of use main functionality of the ZLib.Ada95 binding. 14 -- 3. Build this program automatically compile all ZLib.Ada95 packages under 17 with ZLib.Streams; 37 Header : constant ZLib.Header_Type := ZLib.Default; 38 -- ZLib.None; 39 -- ZLib.Auto; 40 -- ZLib.GZip; [all …]
|
D | readme.txt | 1 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. 31 How to build ZLib.Ada under GNAT 33 You should have the ZLib library already build on your computer, before 34 building ZLib.Ada. Make the directory of ZLib.Ada sources current and [all …]
|
/external/libpng/projects/visualc71/ |
D | zlib.vcproj | 5 Name="zlib"> 13 OutputDirectory=".\Win32_DLL_Release\ZLib" 14 IntermediateDirectory=".\Win32_DLL_Release\ZLib" 19 AdditionalIncludeDirectories="..\..\..\zlib" 32 ModuleDefinitionFile="..\..\..\zlib\win32\zlib.def"/> 58 OutputDirectory=".\Win32_DLL_Debug\ZLib" 59 IntermediateDirectory=".\Win32_DLL_Debug\ZLib" 64 AdditionalIncludeDirectories="..\..\..\zlib" 76 ModuleDefinitionFile="..\..\..\zlib\win32\zlib.def" 103 OutputDirectory=".\Win32_LIB_Release\ZLib" [all …]
|
/external/llvm/lib/Support/ |
D | Compression.cpp | 21 #include <zlib.h> 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() 34 llvm_unreachable("Invalid zlib::CompressionLevel!"); 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() [all …]
|
/external/llvm/test/MC/ELF/ |
D | compression.s | 1 // Check zlib-gnu style 2 // RUN: llvm-mc -filetype=obj -compress-debug-sections=zlib-gnu -triple x86_64-pc-linux-gnu < %s -o… 5 // RUN: llvm-mc -filetype=obj -compress-debug-sections=zlib-gnu -triple i386-pc-linux-gnu < %s \ 8 // Check zlib style 9 // RUN: llvm-mc -filetype=obj -compress-debug-sections=zlib -triple x86_64-pc-linux-gnu < %s -o %t 10 // RUN: llvm-objdump -s %t | FileCheck --check-prefix=CHECK-ZLIB-STYLE %s 12 // RUN: llvm-mc -filetype=obj -compress-debug-sections=zlib -triple i386-pc-linux-gnu < %s \ 13 // RUN: | llvm-readobj -symbols - | FileCheck --check-prefix=386-SYMBOLS-ZLIB %s 14 // RUN: llvm-readobj -sections %t | FileCheck --check-prefix=ZLIB-STYLE-FLAGS %s 16 // REQUIRES: zlib [all …]
|
/external/rust/crates/libz-sys/src/zlib/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 …]
|
/external/skia/third_party/zlib/ |
D | BUILD.gn | 13 system("zlib") { 72 sources = [ "../externals/zlib/adler32_simd.c" ] 103 sources = [ "../externals/zlib/crc32_simd.c" ] 123 "../externals/zlib/", 124 "../externals/zlib/contrib/optimizations/", 127 "../externals/zlib/contrib/optimizations/inffast_chunk.c", 128 "../externals/zlib/contrib/optimizations/inflate.c", 148 "../externals/zlib/crc_folding.c", 149 "../externals/zlib/fill_window_sse.c", 154 third_party("zlib") { [all …]
|
/external/rust/crates/libz-sys/src/zlib-ng/win32/ |
D | README-WIN32.txt | 1 ZLIB DATA COMPRESSION LIBRARY 3 zlib 1.2.11 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 [all …]
|
D | DLL_FAQ.txt | 6 of the official DLL build of zlib, named ZLIB1.DLL. If you have 7 general questions about zlib, you should see the file "FAQ" found 8 in the zlib distribution, or at the following location: 9 http://www.gzip.org/zlib/zlib_faq.html 14 - ZLIB1.DLL is the official build of zlib as a DLL. 17 Pointers to a precompiled ZLIB1.DLL can be found in the zlib 19 http://www.zlib.net/ 25 files "zlib.h" and "zlib.def", found in an official zlib 34 It is recommended to download the prebuilt DLL from the zlib 47 What happened to the old ZLIB.DLL? [all …]
|
/external/rust/crates/libz-sys/src/zlib/win32/ |
D | README-WIN32.txt | 1 ZLIB DATA COMPRESSION LIBRARY 3 zlib 1.2.11 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 [all …]
|
D | DLL_FAQ.txt | 6 of the official DLL build of zlib, named ZLIB1.DLL. If you have 7 general questions about zlib, you should see the file "FAQ" found 8 in the zlib distribution, or at the following location: 9 http://www.gzip.org/zlib/zlib_faq.html 14 - ZLIB1.DLL is the official build of zlib as a DLL. 17 Pointers to a precompiled ZLIB1.DLL can be found in the zlib 19 http://www.zlib.net/ 25 files "zlib.h" and "zlib.def", found in an official zlib 34 It is recommended to download the prebuilt DLL from the zlib 47 What happened to the old ZLIB.DLL? [all …]
|
/external/rust/crates/libz-sys/ |
D | build.rs | 19 let want_ng = cfg!(feature = "zlib-ng") && !cfg!(feature = "stock-zlib"); in main() 40 let zlib = pkg_config::Config::new() in main() localVariable 43 .probe("zlib"); in main() 44 if zlib.is_ok() { in main() 82 // In any case test if zlib is actually installed and if so we link to it, in main() 96 cfg.warnings(false).out_dir(&lib).include("src/zlib"); in build_zlib() 98 cfg.file("src/zlib/adler32.c") in build_zlib() 99 .file("src/zlib/compress.c") in build_zlib() 100 .file("src/zlib/crc32.c") in build_zlib() 101 .file("src/zlib/deflate.c") in build_zlib() [all …]
|
D | Cargo.toml.orig | 11 Low-level bindings to the system libz library (also known as zlib). 14 keywords = ["zlib", "zlib-ng"] 20 # When this feature is disabled, zlib will be built in Z_SOLO mode which 36 default = ["libc", "stock-zlib"] 37 # By default, libz-sys uses stock zlib. If you set default-features=false, 38 # enable the zlib-ng feature, and don't enable the stock-zlib feature, libz-sys 39 # will instead supply the high-performance zlib-ng, in zlib-compat mode. Any 40 # application or library designed for zlib should work with zlib-ng in 41 # zlib-compat mode, as long as it doesn't make assumptions about the exact size 44 # of stock zlib (which will produce conflicting symbols). If a single crate in [all …]
|
/external/rust/crates/libz-sys/src/zlib/old/os2/ |
D | Makefile.os2 | 1 # Makefile for zlib under OS/2 using GCC (PGCC) 2 # For conditions of distribution and use, see copyright notice in zlib.h 31 ZLIB=z.lib 34 LIBS=$(ZLIB) $(SHAREDLIB) $(SHAREDLIBIMP) 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 \ 65 echo ' *** zlib test OK ***'; \ 67 echo ' *** zlib test FAILED ***'; \ 70 $(ZLIB): $(OBJS) 94 v=`sed -n -e 's/\.//g' -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`;\ [all …]
|