HomeSort by relevance Sort by last modified time
    Searched refs:zlib (Results 26 - 50 of 511) sorted by null

12 3 4 5 6 7 8 91011>>

  /frameworks/native/cmds/atrace/
Android.mk 8 LOCAL_C_INCLUDES += external/zlib
  /external/llvm/include/llvm/Support/
Compression.h 25 namespace zlib { namespace in namespace:llvm
36 StatusUnsupported, // zlib is unavailable
54 } // End of namespace zlib
  /external/zlib/src/contrib/untgz/
Makefile 7 untgz.o: untgz.c ../../zlib.h
  /external/chromium_org/third_party/zlib/
zlib.target.darwin-arm.mk 26 third_party/zlib/adler32.c \
27 third_party/zlib/compress.c \
28 third_party/zlib/crc32.c \
29 third_party/zlib/deflate.c \
30 third_party/zlib/gzclose.c \
31 third_party/zlib/gzlib.c \
32 third_party/zlib/gzread.c \
33 third_party/zlib/gzwrite.c \
34 third_party/zlib/infback.c \
35 third_party/zlib/inffast.c
    [all...]
zlib.target.linux-arm.mk 26 third_party/zlib/adler32.c \
27 third_party/zlib/compress.c \
28 third_party/zlib/crc32.c \
29 third_party/zlib/deflate.c \
30 third_party/zlib/gzclose.c \
31 third_party/zlib/gzlib.c \
32 third_party/zlib/gzread.c \
33 third_party/zlib/gzwrite.c \
34 third_party/zlib/infback.c \
35 third_party/zlib/inffast.c
    [all...]
  /external/libpng/contrib/libtests/
fakepng.c 3 #include <zlib.h> /* for crc32 */
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
util.py 57 import zlib namespace
213 # ADLER32 (4 octet) fields of zlib so that we can use zlib module just as
222 # See zconf.h, deflate.cc, inflate.cc of zlib library, and zlibmodule.c of
223 # Python. See also RFC1950 (ZLIB 3.3).
231 self._compress = zlib.compressobj(
232 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -window_bits)
242 compressed_bytes += self._compress.flush(zlib.Z_SYNC_FLUSH)
249 compressed_bytes += self._compress.flush(zlib.Z_FINISH
    [all...]
  /build/tools/zipalign/
Android.mk 15 LOCAL_C_INCLUDES += external/zlib \
  /external/libpng/projects/visualc71/
README_zlib.txt 2 It is expected to be part of the next zlib release under
5 Microsoft Developer Studio Project File, Format Version 7.10 for zlib.
11 For conditions of distribution and use, see copyright notice in zlib.h.
19 Open "zlib.sln".
24 binaries set "zlib" as the startup project (Select "zlib" tree view item +
38 This project builds the zlib binaries as follows:
42 * Win32_LIB_Release\zlib.lib static build
  /external/chromium_org/v8/tools/testrunner/server/
compression.py 36 import zlib namespace
42 Sends a JSON encodable object over the specified socket (zlib-compressed).
46 compressed = zlib.compress(obj, compression_level)
89 result = zlib.decompress(result)
  /external/qemu/distrib/ext4_utils/
sources.mk 52 emulator-zlib
65 emulator64-zlib
  /external/tcpdump/
print-ipcomp.c 43 #include <zlib.h>
  /external/zlib/src/
make_vms.com 8 $! Make procedure history for Zlib
43 $ name = "Zlib"
46 $ v_file = "zlib.h"
174 $ write sys$output "Compiling Zlib sources ..."
180 adler32.c zlib.h zconf.h
182 compress.c zlib.h zconf.h
184 crc32.c zlib.h zconf.h
186 deflate.c deflate.h zutil.h zlib.h zconf.h
188 gzclose.c zutil.h zlib.h zconf.h
190 gzlib.c zutil.h zlib.h zconf.
    [all...]
  /frameworks/base/include/androidfw/
StreamingZipInflater.h 22 #include <zlib.h>
  /bootable/recovery/minui/
Android.mk 9 external/zlib
  /development/tools/etc1tool/
Android.mk 13 LOCAL_C_INCLUDES += external/zlib
  /external/libpng/
Android.mk 68 LOCAL_C_INCLUDES += $(common_C_INCLUDES) external/zlib
92 external/zlib
114 external/zlib
130 LOCAL_C_INCLUDES:= $(common_C_INCLUDES) external/zlib
  /external/sonivox/jet_tools/JetCreator/
img_Copy.py 5 import cStringIO, zlib namespace
9 return zlib.decompress(
img_Find.py 5 import cStringIO, zlib namespace
9 return zlib.decompress(
  /hardware/ti/omap4xxx/hwc/
Android.mk 18 LOCAL_C_INCLUDES += external/libpng external/zlib
  /system/core/libsparse/
Android.mk 19 LOCAL_C_INCLUDES += $(LOCAL_PATH)/include external/zlib
28 LOCAL_C_INCLUDES += $(LOCAL_PATH)/include external/zlib
39 LOCAL_C_INCLUDES += $(LOCAL_PATH)/include external/zlib
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
util.py 57 import zlib namespace
214 # ADLER32 (4 octet) fields of zlib so that we can use zlib module just as
223 # See zconf.h, deflate.cc, inflate.cc of zlib library, and zlibmodule.c of
224 # Python. See also RFC1950 (ZLIB 3.3).
232 self._compress = zlib.compressobj(
233 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -window_bits)
237 compressed_bytes += self._compress.flush(zlib.Z_SYNC_FLUSH)
272 # zlib.Decompress object for the new stream. Create a ne
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 32 # some tests will fail if zlib is not available
34 import zlib namespace
36 zlib = None variable
55 @unittest.skipUnless(zlib, "requires zlib")
119 @unittest.skipUnless(zlib, "Requires zlib")
205 @unittest.skipUnless(zlib, "Requires zlib")
230 @unittest.skipUnless(zlib, "Requires zlib"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 32 # some tests will fail if zlib is not available
34 import zlib namespace
36 zlib = None variable
55 @unittest.skipUnless(zlib, "requires zlib")
119 @unittest.skipUnless(zlib, "Requires zlib")
205 @unittest.skipUnless(zlib, "Requires zlib")
230 @unittest.skipUnless(zlib, "Requires zlib"
    [all...]
  /external/libpng/contrib/pngminim/decoder/
makefile 27 ZLIBSRC=$(PNGSRC)/../zlib
30 # Zlib (minimal inflate requirements - crc32 is used by libpng)
37 ZH = zlib.h crc32.h inffast.h inffixed.h \
44 ZINC = zlib.h $(ZCONF)
46 # Headers the Zlib source uses
138 # zlib release

Completed in 1483 milliseconds

12 3 4 5 6 7 8 91011>>