HomeSort by relevance Sort by last modified time
    Searched refs:zlib (Results 276 - 300 of 435) sorted by null

<<1112131415161718

  /external/deqp/scripts/
make_release.py 27 import zlib
88 return zlib.crc32(self.releaseConfig.getName() + self.releaseConfig.getVersion()) & 0xffffffff
  /external/llvm/lib/DebugInfo/Symbolize/
Symbolize.cpp 163 return !zlib::isAvailable() || CRCHash == zlib::crc32(MB.get()->getBuffer());
  /external/python/cpython3/Lib/
zipfile.py 23 import zlib # We may need its compression method
24 crc32 = zlib.crc32
26 zlib = None variable
645 if not zlib:
647 "Compression requires the (missing) zlib module")
662 return zlib.compressobj(zlib.Z_DEFAULT_COMPRESSION,
663 zlib.DEFLATED, -15)
676 return zlib.decompressobj(-15)
    [all...]
  /prebuilts/go/darwin-x86/src/compress/zlib/
writer_test.go 5 package zlib package
  /prebuilts/go/darwin-x86/src/go/internal/gccgoimporter/
gccgoinstallation_test.go 22 "compress/zlib",
  /prebuilts/go/darwin-x86/test/stress/
parsego.go 90 "compress/zlib",
  /prebuilts/go/linux-x86/src/compress/zlib/
writer_test.go 5 package zlib package
  /prebuilts/go/linux-x86/src/go/internal/gccgoimporter/
gccgoinstallation_test.go 22 "compress/zlib",
  /prebuilts/go/linux-x86/test/stress/
parsego.go 90 "compress/zlib",
  /external/kmod/libkmod/
libkmod-file.c 33 #include <zlib.h>
  /external/libcups/cups/
testfile.c 26 # include <zlib.h>
  /external/libpng/contrib/pngminus/
png2pnm.c 25 #include <zlib.h>
  /external/libpng/contrib/visupng/
PngFile.c 16 #include <zlib.h>
  /external/squashfs-tools/kernel/fs/squashfs/
cache.c 54 #include <linux/zlib.h>
inode.c 43 #include <linux/zlib.h>
super.c 37 #include <linux/zlib.h>
91 ERROR("Failed to allocate zlib workspace\n");
  /external/squashfs-tools/squashfs-tools/
gzip_wrapper.c 21 * Support for ZLIB compression http://www.zlib.net
27 #include <zlib.h>
  /libcore/ojluni/src/main/native/
java_util_zip_Deflater.c 36 #include <zlib.h>
91 "zlib returned Z_VERSION_ERROR: "
92 "compile time and runtime zlib implementations differ" :
93 "unknown error initializing zlib library");
  /system/core/storaged/
storaged.cpp 24 #include <zlib.h>
  /toolchain/binutils/binutils-2.27/bfd/
compress.c 22 #include <zlib.h>
68 and pointed to by @var{uncompressed_buffer} using zlib and store
93 /* Either ELF compression header or the 12-byte, "ZLIB" + 8-byte size,
291 /* Set header size to the zlib header size if it is a
392 /* In this case, it should be "ZLIB" followed by the uncompressed
394 compressed = CONST_STRNEQ ((char*) header , "ZLIB");
411 contains the string ZLIB.... as the first entry. We assume that
493 /* In this case, it should be "ZLIB" followed by the uncompressed
495 if (! CONST_STRNEQ ((char*) header, "ZLIB"))
  /external/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 598 // Consume "ZLIB" prefix.
599 if (!data.startswith("ZLIB"))
639 if (!zlib::isAvailable())
647 if (!Result || zlib::uncompress(Data, Out, OriginalSize) != zlib::StatusOK)
  /external/scapy/scapy/tools/
UTscapy.py 13 import hashlib, copy, bz2, base64, os.path, time, traceback, zlib
307 return "%08X" % (0xffffffff & zlib.crc32(x))
313 return "%08X" % (0xffffffff & zlib.crc32(bytearray(x, "utf8")))
  /prebuilts/go/darwin-x86/src/compress/flate/
inflate.go 6 // RFC 1951. The gzip and zlib packages implement access to DEFLATE-based file
78 // zlib. There is a lookup table of a fixed bit width (huffmanChunkBits),
164 // Exception: To be compatible with zlib, we also need to
  /prebuilts/go/darwin-x86/src/go/build/
deps_test.go 237 "compress/zlib": {"L4", "compress/flate"},
242 "debug/elf": {"L4", "OS", "debug/dwarf", "compress/zlib"},
263 "image/png": {"L4", "compress/zlib"},
  /prebuilts/go/darwin-x86/src/image/png/
reader_test.go 418 {"invalid-zlib.png", "zlib: invalid checksum"},
481 // but the zlib-compressed IDAT payload contains two bytes "\x02\x00",

Completed in 716 milliseconds

<<1112131415161718