/third_party/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.13 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 "13 Oct 2022" 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 …]
|
/third_party/python/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 …]
|
/third_party/node/doc/api/ |
D | zlib.md | 1 # Zlib chapter 7 <!-- source_link=lib/zlib.js --> 9 The `node:zlib` module provides compression functionality implemented using 15 const zlib = require('node:zlib'); 21 piping the source stream through a `zlib` `Transform` stream into a destination 25 const { createGzip } = require('node:zlib'); 65 const { deflate, unzip } = require('node:zlib'); 100 All `zlib` APIs, except those that are explicitly synchronous, use the Node.js 104 Creating and using a large number of zlib objects simultaneously can cause 108 const zlib = require('node:zlib'); [all …]
|
D | zlib.json | 3 "source": "doc/api/zlib.md", 6 "textRaw": "Zlib", 7 "name": "zlib", 11 …zlib.js\">lib/zlib.js</a></p>\n<p>The <code>node:zlib</code> module provides compression functiona… 16 …zlib</code> APIs, except those that are explicitly synchronous, use the Node.js\ninternal threadpo… 23 …zlib</code> module can be used to implement support for the <code>gzip</code>, <code>deflate</code… 30 …zlib</code> return as much\noutput as currently possible. This may come at the cost of degraded co… 42 "textRaw": "For zlib-based streams", 44 …zlib/zconf.h</code>, modified for Node.js usage:</p>\n<p>The memory requirements for deflate are (… 46 "displayName": "For zlib-based streams" [all …]
|
/third_party/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 …]
|
/third_party/node/tools/dep_updaters/ |
D | update-zlib.sh | 3 # Shell script to update zlib in the source tree to the most recent version. 4 # Zlib rarely creates tags or releases, so we use the latest commit on the main branch. 15 git fetch https://chromium.googlesource.com/chromium/src/third_party/zlib.git HEAD 18 perl -i -pe 's|^//#include "chromeconf.h"|#include "chromeconf.h"|' "$DEPS_DIR/zlib/zconf.h" 19 git stash -- "$DEPS_DIR/zlib/zconf.h" 21 DIFF_TREE=$(git diff --diff-filter=d 'stash@{0}:deps/zlib' FETCH_HEAD) 26 echo "Skipped because zlib is on the latest version." 53 mkdir zlib 55 ZLIB_TARBALL="zlib-v$NEW_VERSION.tar.gz" 57 echo "Fetching zlib source archive" [all …]
|
/third_party/skia/third_party/externals/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 …]
|
/third_party/node/test/parallel/ |
D | test-zlib-deflate-constructors.js | 5 const zlib = require('zlib'); constant 9 assert.ok(zlib.Deflate() instanceof zlib.Deflate); 10 assert.ok(new zlib.Deflate() instanceof zlib.Deflate); 12 assert.ok(zlib.DeflateRaw() instanceof zlib.DeflateRaw); 13 assert.ok(new zlib.DeflateRaw() instanceof zlib.DeflateRaw); 17 () => new zlib.Deflate({ chunkSize: 'test' }), 27 () => new zlib.Deflate({ chunkSize: -Infinity }), 37 () => new zlib.Deflate({ chunkSize: 0 }), 47 assert.strictEqual(zlib.constants.Z_MAX_CHUNK, Infinity); 51 () => new zlib.Deflate({ windowBits: 'test' }), [all …]
|
D | test-zlib-empty-buffer.js | 3 const zlib = require('zlib'); constant 10 [ zlib.deflateRawSync, zlib.inflateRawSync, 'raw sync' ], 11 [ zlib.deflateSync, zlib.inflateSync, 'deflate sync' ], 12 [ zlib.gzipSync, zlib.gunzipSync, 'gzip sync' ], 13 [ zlib.brotliCompressSync, zlib.brotliDecompressSync, 'br sync' ], 14 [ promisify(zlib.deflateRaw), promisify(zlib.inflateRaw), 'raw' ], 15 [ promisify(zlib.deflate), promisify(zlib.inflate), 'deflate' ], 16 [ promisify(zlib.gzip), promisify(zlib.gunzip), 'gzip' ], 17 [ promisify(zlib.brotliCompress), promisify(zlib.brotliDecompress), 'br' ],
|
D | test-zlib-const.js | 5 const zlib = require('zlib'); constant 7 assert.strictEqual(zlib.constants.Z_OK, 0, 10 `got ${zlib.constants.Z_OK}`, 12 zlib.constants.Z_OK = 1; 13 assert.strictEqual(zlib.constants.Z_OK, 0, 16 `Expected to get 0, got ${zlib.constants.Z_OK}`, 19 assert.strictEqual(zlib.codes.Z_OK, 0, 20 `Expected Z_OK to be 0; got ${zlib.codes.Z_OK}`); 21 zlib.codes.Z_OK = 1; 22 assert.strictEqual(zlib.codes.Z_OK, 0, [all …]
|
/third_party/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 …]
|
D | 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.h [all …]
|
/third_party/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 …]
|
/third_party/zlib/win32/ |
D | README-WIN32.txt | 1 ZLIB DATA COMPRESSION LIBRARY 3 zlib 1.2.13 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 …]
|
D | Makefile.gcc | 1 # Makefile for zlib, derived from Makefile.dj2. 3 # Updated for zlib 1.2.x by Christian Spieler and Cosmin Truta, Mar-2003. 8 # For conditions of distribution and use, see copyright notice in zlib.h 10 # To compile, or to compile and test, type from the top level zlib directory: 14 # To install libz.a, zconf.h and zlib.h in the system directories, type: 90 $(SHAREDLIB): win32/zlib.def $(OBJS) $(OBJA) zlibrc.o 92 -o $@ win32/zlib.def $(OBJS) $(OBJA) zlibrc.o 111 example.o: test/example.c zlib.h zconf.h 114 minigzip.o: test/minigzip.c zlib.h zconf.h 122 install: zlib.h zconf.h $(STATICLIB) $(IMPLIB) [all …]
|
/third_party/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 …]
|
/third_party/node/deps/zlib/ |
D | zlib.3 | 1 .TH ZLIB 3 "xx Oct 2022" 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 …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | Compression.cpp | 21 #include <zlib.h> 34 return "zlib error: Z_MEM_ERROR"; in convertZlibCodeToString() 36 return "zlib error: Z_BUF_ERROR"; in convertZlibCodeToString() 38 return "zlib error: Z_STREAM_ERROR"; in convertZlibCodeToString() 40 return "zlib error: Z_DATA_ERROR"; in convertZlibCodeToString() 43 llvm_unreachable("unknown or unexpected zlib status code"); in convertZlibCodeToString() 47 bool zlib::isAvailable() { return true; } in isAvailable() 49 Error zlib::compress(StringRef InputBuffer, in compress() 56 // Tell MemorySanitizer that zlib output buffer is fully initialized. in compress() 57 // This avoids a false report when running LLVM with uninstrumented ZLib. in compress() [all …]
|
/third_party/zlib/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 …]
|
/third_party/zlib/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 …]
|