/external/python/cpython2/Lib/test/ |
test_zipfile64.py | 14 # We can test part of the module without zlib. 16 import zlib 18 zlib = None variable 87 @unittest.skipUnless(zlib, "requires zlib")
|
test_zipfile.py | 1 # We can test part of the module without zlib. 3 import zlib 5 zlib = None variable 269 @skipUnless(zlib, "requires zlib") 274 @skipUnless(zlib, "requires zlib") 279 @skipUnless(zlib, "requires zlib") 284 @skipUnless(zlib, "requires zlib" [all...] |
/prebuilts/go/darwin-x86/src/image/png/ |
writer.go | 9 "compress/zlib" 41 // Positive CompressionLevel values are reserved to mean a numeric zlib 277 zw, err := zlib.NewWriterLevel(w, level) 427 if level != zlib.NoCompression && cb != cbP8 { 457 // Encoder.CompressionLevel to map to zlib.DefaultCompression. 461 return zlib.DefaultCompression 463 return zlib.NoCompression 465 return zlib.BestSpeed 467 return zlib.BestCompression 469 return zlib.DefaultCompressio [all...] |
/prebuilts/go/linux-x86/src/image/png/ |
writer.go | 9 "compress/zlib" 41 // Positive CompressionLevel values are reserved to mean a numeric zlib 277 zw, err := zlib.NewWriterLevel(w, level) 427 if level != zlib.NoCompression && cb != cbP8 { 457 // Encoder.CompressionLevel to map to zlib.DefaultCompression. 461 return zlib.DefaultCompression 463 return zlib.NoCompression 465 return zlib.BestSpeed 467 return zlib.BestCompression 469 return zlib.DefaultCompressio [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_zipfile.py | 1 # We can test part of the module without zlib.
3 import zlib
5 zlib = None
variable 257 @skipUnless(zlib, "requires zlib")
262 @skipUnless(zlib, "requires zlib")
267 @skipUnless(zlib, "requires zlib")
272 @skipUnless(zlib, "requires zlib") [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_zipfile.py | 1 # We can test part of the module without zlib. 3 import zlib 5 zlib = None variable 264 @skipUnless(zlib, "requires zlib") 269 @skipUnless(zlib, "requires zlib") 274 @skipUnless(zlib, "requires zlib") 279 @skipUnless(zlib, "requires zlib" [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_zipfile.py | 1 # We can test part of the module without zlib. 3 import zlib 5 zlib = None variable 264 @skipUnless(zlib, "requires zlib") 269 @skipUnless(zlib, "requires zlib") 274 @skipUnless(zlib, "requires zlib") 279 @skipUnless(zlib, "requires zlib" [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_zipfile.py | 1 # We can test part of the module without zlib. 3 import zlib 5 zlib = None variable 264 @skipUnless(zlib, "requires zlib") 269 @skipUnless(zlib, "requires zlib") 274 @skipUnless(zlib, "requires zlib") 279 @skipUnless(zlib, "requires zlib" [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_zipfile.py | 1 # We can test part of the module without zlib. 3 import zlib 5 zlib = None variable 264 @skipUnless(zlib, "requires zlib") 269 @skipUnless(zlib, "requires zlib") 274 @skipUnless(zlib, "requires zlib") 279 @skipUnless(zlib, "requires zlib" [all...] |
/external/libpng/projects/owatcom/ |
pngconfig.mak | 108 $# locations of the zlib include file zlib.h and the built zlib library,
109 $# zlib.lib.
160 $(DELETE) zlib.inf awk.inf config.inf pngconfig.dfa
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
configure | 2 # configure script for zlib. This script is needed only if
23 VER=`sed -n -e '/VERSION "/s/.*"\(.*\)".*/\1/p' < zlib.h`
24 VER2=`sed -n -e '/VERSION "/s/.*"\([0-9]*\\.[0-9]*\)\\..*/\1/p' < zlib.h`
25 VER1=`sed -n -e '/VERSION "/s/.*"\([0-9]*\)\\..*/\1/p' < zlib.h`
275 echo " WARNING: apparently vsnprintf() does not return a value. zlib"
282 echo " WARNING: vsnprintf() not found, falling back to vsprintf(). zlib"
313 echo " WARNING: apparently vsprintf() does not return a value. zlib"
362 echo " WARNING: apparently snprintf() does not return a value. zlib"
369 echo " WARNING: snprintf() not found, falling back to sprintf(). zlib"
394 echo " WARNING: apparently sprintf() does not return a value. zlib"
[all...] |
/external/curl/docs/examples/ |
Makefile.netware | 15 # Edit the path below to point to the base of your Zlib sources. 17 ZLIB_PATH = ../../../zlib-1.2.8 208 ifeq ($(findstring -zlib,$(CFG)),-zlib)
|
/external/elfutils/tests/ |
run-compress-test.sh | 52 testrun ${abs_top_builddir}/src/elfcompress -v -t zlib -o ${elfcompressedfile} ${uncompressedfile}
|
/external/squashfs-tools/kernel/fs/squashfs/ |
export.c | 42 #include <linux/zlib.h>
|
/system/core/toolbox/upstream-netbsd/usr.bin/grep/ |
grep.h | 40 #include <zlib.h>
|
/toolchain/binutils/binutils-2.25/gold/ |
compressed_output.cc | 26 #include <zlib.h> 40 // (including not having zlib support in the library). If it returns 44 // "ZLIB", and 8 bytes indicating the uncompressed size, in big-endian 70 memcpy(*compressed_data, "ZLIB", 4); 154 /* Verify the compression header. Currently, we support only zlib 155 compression, so it should be "ZLIB" followed by the uncompressed 159 "ZLIB", 4) == 0) 174 /* Verify the compression header. Currently, we support only zlib 175 compression, so it should be "ZLIB" followed by the uncompressed 179 "ZLIB", 4) == 0 [all...] |
/dalvik/libdex/ |
Android.mk | 38 external/zlib \
|
/external/curl/packages/DOS/ |
common.dj | 51 # Use zlib for contents encoding 88 ZLIB_ROOT = $(DJDIR)/contrib/zlib
|
/external/libpng/contrib/gregbook/ |
makevms.com | 8 $! Set locations where zlib and libpng sources live. 13 $ if f$search("[---.zlib]zlib.h").nes."" then zpath = "[---.zlib]" 16 $ if f$search("[-.zlib]zlib.h").nes."" then zpath = "[-.zlib]" 21 $ write sys$output "zlib include not found. Exiting..."
|
/external/sonivox/jet_tools/JetCreator/ |
img_Cut.py | 5 import cStringIO, zlib
9 return zlib.decompress(
|
img_Save.py | 5 import cStringIO, zlib
9 return zlib.decompress(
|
img_Undo.py | 5 import cStringIO, zlib
9 return zlib.decompress(
|
/external/zlib/src/watcom/ |
watcom_f.mak | 1 # Makefile for zlib
|
/external/python/cpython2/Lib/sqlite3/test/ |
types.py | 29 import zlib 31 zlib = None variable 338 @unittest.skipUnless(zlib, "requires zlib") 341 return zlib.decompress(s) 354 result = self.con.execute('select ? as "x [bin]"', (buffer(zlib.compress(testdata)),)).fetchone()[0]
|
/prebuilts/gdb/darwin-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]
|