Home
last modified time | relevance | path

Searched +full:zlib +full:- +full:level (Results 1 – 25 of 1062) sorted by relevance

12345678910>>...43

/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_zlib.py13 zlib = import_helper.import_module('zlib') variable
16 hasattr(zlib.compressobj(), "copy"),
19 hasattr(zlib.decompressobj(), "copy"),
22 # bpo-46623: On s390x, when a hardware accelerator is used, using different
23 # ways to compress data with zlib can produce different compressed data.
27 # return zlib.compress(data)
30 # co = zlib.compressobj()
35 # On s390x if zlib uses a hardware accelerator, func1() creates a single
44 # zlib.decompress(func1(data)) == zlib.decompress(func2(data)) == data
60 self.assertEqual(zlib.ZLIB_RUNTIME_VERSION[0], zlib.ZLIB_VERSION[0])
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/libz-sys/src/zlib/contrib/ada/
Dtest.adb1 ----------------------------------------------------------------
2 -- ZLib for Ada thick binding. --
3 -- --
4 -- Copyright (C) 2002-2003 Dmitriy Anisimkov --
5 -- --
6 -- Open source license information is in the zlib.ads file. --
7 ----------------------------------------------------------------
9 -- $Id: test.adb,v 1.17 2003/08/12 12:13:30 vagul Exp $
11 -- The program has a few aims.
12 -- 1. Test ZLib.Ada95 thick binding functionality.
[all …]
Dzlib-thin.ads1 ----------------------------------------------------------------
2 -- ZLib for Ada thick binding. --
3 -- --
4 -- Copyright (C) 2002-2003 Dmitriy Anisimkov --
5 -- --
6 -- Open source license information is in the zlib.ads file. --
7 ----------------------------------------------------------------
9 -- $Id: zlib-thin.ads,v 1.11 2004/07/23 06:33:11 vagul Exp $
15 private package ZLib.Thin is
17 -- From zconf.h
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/lib/Support/
H A DCompression.cpp1 //===--- Compression.cpp - Compression implementation ---------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
21 #include <zlib.h>
32 case compression::Format::Zlib: in getReasonIfUnsupported()
33 if (zlib::isAvailable()) in getReasonIfUnsupported()
35 return "LLVM was not built with LLVM_ENABLE_ZLIB or did not find zlib at " in getReasonIfUnsupported()
49 case compression::Format::Zlib: in compress()
50 zlib::compress(Input, Output, P.level); in compress()
[all …]
/aosp_15_r20/external/sandboxed-api/sandboxed_api/bazel/external/
H A Dzlib.patch1 diff -ur zlib-1.2.11/adler32.c zlib-1.2.11__patched/adler32.c
2 --- zlib-1.2.11/adler32.c 2017-01-01 08:37:10.000000000 +0100
3 +++ zlib-1.2.11__patched/adler32.c 2019-10-22 17:36:13.389965314 +0200
4 @@ -7,7 +7,7 @@
8 -local uLong adler32_combine_ OF((uLong adler1, uLong adler2, z_off64_t len2));
13 diff -ur zlib-1.2.11/crc32.c zlib-1.2.11__patched/crc32.c
14 --- zlib-1.2.11/crc32.c 2017-01-01 08:37:10.000000000 +0100
15 +++ zlib-1.2.11__patched/crc32.c 2019-10-22 17:36:13.393965277 +0200
16 @@ -35,29 +35,29 @@
20 - local unsigned long crc32_little OF((unsigned long,
[all …]
/aosp_15_r20/external/python/cpython3/Doc/library/
Dzlib.rst1 :mod:`zlib` --- Compression compatible with :program:`gzip`
4 .. module:: zlib
5 :synopsis: Low-level interface to compression and decompression routines
8 --------------
11 allow compression and decompression, using the zlib library. The zlib library
12 has its own home page at https://www.zlib.net. There are known
13 incompatibilities between the Python module and versions of the zlib library
14 earlier than 1.1.3; 1.1.3 has a `security vulnerability <https://zlib.net/zlib_faq.html#faq33>`_, s…
17 zlib's functions have many options and often need to be used in a particular
19 consult the zlib manual at http://www.zlib.net/manual.html for authoritative
[all …]
/aosp_15_r20/external/llvm/lib/Support/
H A DCompression.cpp1 //===--- Compression.cpp - Compression implementation ---------------------===//
8 //===----------------------------------------------------------------------===//
12 //===----------------------------------------------------------------------===//
21 #include <zlib.h>
27 static int encodeZlibCompressionLevel(zlib::CompressionLevel Level) { in encodeZlibCompressionLevel() argument
28 switch (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()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/libz-sys/src/zlib-ng/
Dzlib-ng.h.in3 /* zlib-ng.h -- interface of the 'zlib-ng' compression library, forked from zlib.
5 Copyright (C) 1995-2016 Jean-loup Gailly and Mark Adler
7 This software is provided 'as-is', without any express or implied
23 Jean-loup Gailly Mark Adler
27 The data format used by the zlib library is described by RFCs (Request for
29 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
33 # error Include zlib-ng.h for zlib-ng API or zlib.h for zlib-compat API but not both
37 #include "zconf-ng.h"
42 # error Missing zconf-ng.h add binary output directory to include directories
55 #define ZLIBNG_VER_STATUS 0 /* 0=devel, 1-E=beta, F=Release */
[all …]
Dzlib.h.in3 /* zlib.h -- interface of the 'zlib-ng' compression library
4 Forked from and compatible with zlib 1.2.11
6 Copyright (C) 1995-2016 Jean-loup Gailly and Mark Adler
8 This software is provided 'as-is', without any express or implied
24 Jean-loup Gailly Mark Adler
28 The data format used by the zlib library is described by RFCs (Request for
30 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
34 # error Include zlib-ng.h for zlib-ng API or zlib.h for zlib-compat API but not both
57 #define ZLIBNG_VER_STATUS 0 /* 0=devel, 1-E=beta, F=Release */
58 #define ZLIBNG_VER_MODIFIED 0 /* non-zero if modified externally from zlib-ng */
[all …]
/aosp_15_r20/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 …]
/aosp_15_r20/out/soong/ndk/sysroot/usr/include/
Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
40 #define ZLIB_VERSION "1.3.0.1-motley"
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
[all …]
/aosp_15_r20/prebuilts/build-tools/sysroots/x86_64-unknown-linux-musl/include/
H A Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
40 #define ZLIB_VERSION "1.3.0.1-motley"
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
[all …]
/aosp_15_r20/prebuilts/module_sdk/art/current/sdk/common_os/include/external/zlib/
Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
40 #define ZLIB_VERSION "1.3.0.1-motley"
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
[all …]
/aosp_15_r20/prebuilts/module_sdk/art/13/common_os/include/external/zlib/
Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
40 #define ZLIB_VERSION "1.3.0.1-motley"
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
[all …]
/aosp_15_r20/external/zlib/
H A Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
40 #define ZLIB_VERSION "1.3.0.1-motley"
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
[all …]
/aosp_15_r20/prebuilts/build-tools/sysroots/arm-unknown-linux-musleabihf/include/
H A Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
40 #define ZLIB_VERSION "1.3.0.1-motley"
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
[all …]
/aosp_15_r20/prebuilts/build-tools/sysroots/aarch64-unknown-linux-musl/include/
H A Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
40 #define ZLIB_VERSION "1.3.0.1-motley"
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
[all …]
/aosp_15_r20/prebuilts/build-tools/sysroots/i686-unknown-linux-musl/include/
H A Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2023 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
40 #define ZLIB_VERSION "1.3.0.1-motley"
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
[all …]
/aosp_15_r20/prebuilts/vndk/v34/arm64/include/external/zlib/
Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
56 * https://android.googlesource.com/platform/external/zlib/+/refs/heads/jb-mr2-dev/src/zlib.h
[all …]
/aosp_15_r20/prebuilts/vndk/v34/x86/include/external/zlib/
Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
56 * https://android.googlesource.com/platform/external/zlib/+/refs/heads/jb-mr2-dev/src/zlib.h
[all …]
/aosp_15_r20/prebuilts/vndk/v34/x86_64/include/external/zlib/
Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
56 * https://android.googlesource.com/platform/external/zlib/+/refs/heads/jb-mr2-dev/src/zlib.h
[all …]
/aosp_15_r20/prebuilts/module_sdk/art/7/common_os/include/external/zlib/
Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
56 * https://android.googlesource.com/platform/external/zlib/+/refs/heads/jb-mr2-dev/src/zlib.h
[all …]
/aosp_15_r20/prebuilts/vndk/v34/arm/include/external/zlib/
Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2022 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
56 * https://android.googlesource.com/platform/external/zlib/+/refs/heads/jb-mr2-dev/src/zlib.h
[all …]
/aosp_15_r20/prebuilts/vndk/v32/x86/include/external/zlib/
Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
56 * https://android.googlesource.com/platform/external/zlib/+/refs/heads/jb-mr2-dev/src/zlib.h
[all …]
/aosp_15_r20/prebuilts/vndk/v33/x86/include/external/zlib/
Dzlib.h1 /* zlib.h -- interface of the 'zlib' general purpose compression library
4 Copyright (C) 1995-2017 Jean-loup Gailly and Mark Adler
6 This software is provided 'as-is', without any express or implied
22 Jean-loup Gailly Mark Adler
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951 (deflate format) and rfc1952 (gzip format).
48 * In Android's NDK we have one zlib.h for all the versions.
49 * zlib users tend to use ZLIB_VERNUM to check API availability,
55 * jb-mr2-dev (18): 1.2.7 (but not 1.2.7.1, where the APIs were added!)
56 * https://android.googlesource.com/platform/external/zlib/+/refs/heads/jb-mr2-dev/src/zlib.h
[all …]

12345678910>>...43