/prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/test/ |
types.py | 28 import zlib 30 zlib = None variable 335 @unittest.skipUnless(zlib, "requires zlib") 338 return zlib.decompress(s) 350 result = self.con.execute('select ? as "x [bin]"', (buffer(zlib.compress(testdata)),)).fetchone()[0]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/test/ |
types.py | 28 import zlib 30 zlib = None variable 335 @unittest.skipUnless(zlib, "requires zlib") 338 return zlib.decompress(s) 350 result = self.con.execute('select ? as "x [bin]"', (buffer(zlib.compress(testdata)),)).fetchone()[0]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/test/ |
types.py | 28 import zlib 30 zlib = None variable 335 @unittest.skipUnless(zlib, "requires zlib") 338 return zlib.decompress(s) 350 result = self.con.execute('select ? as "x [bin]"', (buffer(zlib.compress(testdata)),)).fetchone()[0]
|
/external/python/cpython2/Lib/test/ |
test_shutil.py | 32 import zlib 34 zlib = None variable 374 @unittest.skipUnless(zlib, "requires zlib") 431 @unittest.skipUnless(zlib, "Requires zlib") 463 @unittest.skipUnless(zlib, "Requires zlib") 501 @unittest.skipUnless(zlib, "Requires zlib") [all...] |
/external/llvm/lib/ProfileData/ |
InstrProf.cpp | 69 return "Failed to compress data (zlib)"; 71 return "Failed to uncompress data (zlib)"; 268 zlib::Status Success = 269 zlib::compress(StringRef(UncompressedNameStrings), CompressedNameStrings, 270 zlib::BestSizeCompression); 272 if (Success != zlib::StatusOK) 293 NameStrs, zlib::isAvailable() && doCompression, Result); 312 if (zlib::uncompress(CompressedNameStrings, UncompressedNameStrings, 313 UncompressedSize) != zlib::StatusOK)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
zipfile.py | 11 import zlib # We may need its compression method
12 crc32 = zlib.crc32
14 zlib = None
variable 526 self._decompressor = zlib.decompressobj(-15)
717 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib).
734 if not zlib:
736 "Compression requires the (missing) zlib module"
[all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
configure | 2 # configure script for zlib.
30 # extract zlib version numbers from zlib.h
31 VER=`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`
32 VER3=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\\.[0-9]*\).*/\1/p' < zlib.h`
33 VER2=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\)\\..*/\1/p' < zlib.h`
34 VER1=`sed -n -e '/VERSION "/s/.*"\([0-9]*\)\\..*/\1/p' < zlib.h`
187 LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map"} ;;
189 LDSHARED=${LDSHARED-"$cc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map"}
313 # send working options for other systems to zlib@gzip.org [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
zipfile.py | 10 import zlib # We may need its compression method
11 crc32 = zlib.crc32
13 zlib = None
variable 485 self._decompressor = zlib.decompressobj(-15)
660 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib).
677 if not zlib:
679 "Compression requires the (missing) zlib module"
[all...] |
/external/chromium-trace/catapult/third_party/zipfile/ |
zipfile_2_7_13.py | 11 import zlib # We may need its compression method 12 crc32 = zlib.crc32 14 zlib = None variable 526 self._decompressor = zlib.decompressobj(-15) 717 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib). 734 if not zlib: 736 "Compression requires the (missing) zlib module" [all...] |
/external/python/cpython2/Lib/ |
zipfile.py | 11 import zlib # We may need its compression method 12 crc32 = zlib.crc32 14 zlib = None variable 526 self._decompressor = zlib.decompressobj(-15) 717 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib). 734 if not zlib: 736 "Compression requires the (missing) zlib module" [all...] |
/external/zlib/src/contrib/pascal/ |
example.pas | 1 (* example.c -- usage example of the zlib compression library 3 * For conditions of distribution and use, see copyright notice in zlib.h 419 d_stream.avail_in := 2; (* just read the zlib header *) 533 EXIT_ERR('Incompatible zlib version'); 535 WriteLn('zlib version: ', zlibVersion); 536 WriteLn('zlib compile flags: ', Format('0x%x', [zlibCompileFlags]));
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
zipfile.py | 11 import zlib # We may need its compression method 12 crc32 = zlib.crc32 14 zlib = None variable 526 self._decompressor = zlib.decompressobj(-15) 713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib). 730 if not zlib: 732 "Compression requires the (missing) zlib module" [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/ |
zipfile.py | 11 import zlib # We may need its compression method 12 crc32 = zlib.crc32 14 zlib = None variable 526 self._decompressor = zlib.decompressobj(-15) 713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib). 730 if not zlib: 732 "Compression requires the (missing) zlib module" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
zipfile.py | 11 import zlib # We may need its compression method 12 crc32 = zlib.crc32 14 zlib = None variable 526 self._decompressor = zlib.decompressobj(-15) 713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib). 730 if not zlib: 732 "Compression requires the (missing) zlib module" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
zipfile.py | 11 import zlib # We may need its compression method 12 crc32 = zlib.crc32 14 zlib = None variable 526 self._decompressor = zlib.decompressobj(-15) 713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib). 730 if not zlib: 732 "Compression requires the (missing) zlib module" [all...] |
/external/libpng/contrib/gregbook/ |
readpng.c | 58 #include <zlib.h> 81 fprintf(stderr, " Compiled with zlib %s; using zlib %s.\n",
|
/external/libxml2/os400/ |
wrappers.c | 114 #include <zlib.h>
|
/external/squashfs-tools/kernel/fs/squashfs/ |
dir.c | 33 #include <linux/zlib.h>
|
namei.c | 60 #include <linux/zlib.h>
|
/external/toybox/toys/pending/ |
gzip.c | 57 #include <zlib.h>
|
/external/zlib/src/contrib/masmx64/ |
gvmat64.asm | 11 ; from Jean-loup Gailly in deflate.c of zLib and infoZip zip.
34 ; http://www.zlib.net
41 ; to compile this file for zLib, I use option:
43 ; Be carrefull to adapt zlib1222add below to your version of zLib
44 ; (if you use a version of zLib before 1.0.4 or after 1.2.2.2, change
114 ; all the +4 offsets are due to the addition of pending_buf_size (in zlib
116 ; (if you compile with zlib 1.0.4 or older, remove the +4).
133 ; in zlib in the deflate_state structure since the asm code was first written
134 ; (if you compile with zlib 1.0.4 or older, use "zlib1222add equ (-4)").
135 ; (if you compile with zlib between 1.0.5 and 1.2.2.1, use "zlib1222add equ 0"). [all...] |
/system/bt/btif/src/ |
btif_debug_btsnoop.cc | 23 #include <zlib.h>
|
/system/core/toolbox/upstream-netbsd/usr.bin/grep/ |
file.c | 57 #include <zlib.h>
|
/system/libvintf/ |
RuntimeInfo-target.cpp | 38 #include <zlib.h>
|
/system/nfc/src/adaptation/ |
debug_nfcsnoop.cc | 21 #include <zlib.h>
|