Home
last modified time | relevance | path

Searched full:zlib (Results 1 – 25 of 1412) sorted by relevance

12345678910>>...57

/external/zlib/src/
DFAQ2 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 …]
DREADME1 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 …]
Dzlib.31 .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/Modules/zlib/
DFAQ2 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 …]
DREADME1 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 …]
Dzlib.31 .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/
Dtest_zlib.py15 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/
Dtest_zlib.py9 zlib = support.import_module('zlib') variable
12 hasattr(zlib.compressobj(), "copy"),
15 hasattr(zlib.decompressobj(), "copy"),
27 self.assertEqual(zlib.ZLIB_RUNTIME_VERSION[0], zlib.ZLIB_VERSION[0])
33 self.assertEqual(zlib.crc32(b""), zlib.crc32(b"", 0))
34 self.assertTrue(zlib.crc32(b"abc", 0xffffffff))
37 self.assertEqual(zlib.crc32(b"", 0), 0)
38 self.assertEqual(zlib.crc32(b"", 1), 1)
39 self.assertEqual(zlib.crc32(b"", 432), 432)
42 self.assertEqual(zlib.adler32(b""), zlib.adler32(b"", 1))
[all …]
/external/zlib/src/contrib/ada/
Dzlib-thin.ads2 -- 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 …]
Dtest.adb2 -- 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 …]
Dreadme.txt1 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/
Dzlib.vcproj5 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/
DCompression.cpp21 #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/zlib/src/amiga/
DMakefile.pup44 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 …]
DMakefile.sas1 # 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.h
[all …]
/external/llvm/test/MC/ELF/
Dcompression.s1 // 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/swiftshader/third_party/llvm-7.0/llvm/test/MC/ELF/
Dcompression.s1 // REQUIRES: zlib
2 // Check zlib-gnu style
3 // RUN: llvm-mc -filetype=obj -compress-debug-sections=zlib-gnu -triple x86_64-pc-linux-gnu < %s -o…
6 // RUN: llvm-mc -filetype=obj -compress-debug-sections=zlib-gnu -triple i386-pc-linux-gnu < %s \
9 // Check zlib style
10 // RUN: llvm-mc -filetype=obj -compress-debug-sections=zlib -triple x86_64-pc-linux-gnu < %s -o %t
11 // RUN: llvm-objdump -s %t | FileCheck --check-prefix=CHECK-ZLIB-STYLE %s
13 // RUN: llvm-mc -filetype=obj -compress-debug-sections=zlib -triple i386-pc-linux-gnu < %s \
14 // RUN: | llvm-readobj -symbols - | FileCheck --check-prefix=386-SYMBOLS-ZLIB %s
15 // RUN: llvm-readobj -sections %t | FileCheck --check-prefix=ZLIB-STYLE-FLAGS %s
[all …]
/external/skqp/third_party/zlib/
DBUILD.gn13 system("zlib") {
17 third_party("zlib") {
18 public_include_dirs = [ "../externals/zlib" ]
24 "../externals/zlib/adler32.c",
25 "../externals/zlib/compress.c",
26 "../externals/zlib/crc32.c",
27 "../externals/zlib/deflate.c",
28 "../externals/zlib/gzclose.c",
29 "../externals/zlib/gzlib.c",
30 "../externals/zlib/gzread.c",
[all …]
/external/skia/third_party/zlib/
DBUILD.gn13 system("zlib") {
17 third_party("zlib") {
18 public_include_dirs = [ "../externals/zlib" ]
24 "../externals/zlib/adler32.c",
25 "../externals/zlib/compress.c",
26 "../externals/zlib/crc32.c",
27 "../externals/zlib/deflate.c",
28 "../externals/zlib/gzclose.c",
29 "../externals/zlib/gzlib.c",
30 "../externals/zlib/gzread.c",
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DCompression.cpp22 #include <zlib.h>
32 static int encodeZlibCompressionLevel(zlib::CompressionLevel Level) { in encodeZlibCompressionLevel()
34 case zlib::NoCompression: return 0; in encodeZlibCompressionLevel()
35 case zlib::BestSpeedCompression: return 1; in encodeZlibCompressionLevel()
36 case zlib::DefaultCompression: return Z_DEFAULT_COMPRESSION; in encodeZlibCompressionLevel()
37 case zlib::BestSizeCompression: return 9; in encodeZlibCompressionLevel()
39 llvm_unreachable("Invalid zlib::CompressionLevel!"); in encodeZlibCompressionLevel()
45 return "zlib error: Z_MEM_ERROR"; in convertZlibCodeToString()
47 return "zlib error: Z_BUF_ERROR"; in convertZlibCodeToString()
49 return "zlib error: Z_STREAM_ERROR"; in convertZlibCodeToString()
[all …]
/external/zlib/src/win32/
DREADME-WIN32.txt1 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 …]
DDLL_FAQ.txt6 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/zlib/src/old/os2/
DMakefile.os21 # 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 …]
/external/tensorflow/tensorflow/contrib/cmake/external/
Dzlib.cmake17 pkg_search_module(ZLIB REQUIRED zlib)
22 # To meet DEPENDS zlib from other projects.
23 # If we hit this line, zlib is already built and installed to the system.
24 add_custom_target(zlib) target
31 set(ZLIB_URL https://github.com/madler/zlib)
32 set(ZLIB_BUILD ${CMAKE_CURRENT_BINARY_DIR}/zlib/src/zlib)
33 set(ZLIB_INSTALL ${CMAKE_CURRENT_BINARY_DIR}/zlib/install)
34 # Match zlib version in tensorflow/workspace.bzl
40 debug ${CMAKE_CURRENT_BINARY_DIR}/zlib/install/lib/zlibstaticd.lib
41 optimized ${CMAKE_CURRENT_BINARY_DIR}/zlib/install/lib/zlibstatic.lib)
[all …]
/external/zlib/src/contrib/delphi/
Dzlibd32.mak1 # 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 …]

12345678910>>...57