HomeSort by relevance Sort by last modified time
    Searched full:zlib (Results 201 - 225 of 1439) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/smack/src/com/kenai/jbosh/
ZLIBCodec.java 26 * Codec methods for compressing and uncompressing using ZLIB.
55 * Compress/encode the data provided using the ZLIB format.
77 * Uncompress/decode the data provided using the ZLIB format.
  /external/zlib/src/
gzlib.c 1 /* gzlib.c -- zlib functions common to reading and writing gzip files
3 * For conditions of distribution and use, see copyright notice in zlib.h
267 /* -- see zlib.h -- */
275 /* -- see zlib.h -- */
283 /* -- see zlib.h -- */
303 /* -- see zlib.h -- */
313 /* -- see zlib.h -- */
338 /* -- see zlib.h -- */
361 /* -- see zlib.h -- */
438 /* -- see zlib.h -- *
    [all...]
  /development/tools/etc1tool/
Android.mk 13 LOCAL_C_INCLUDES += external/zlib
  /external/chromium/chrome/common/
common.vsprops 6 InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\third_party\icu\build\using_icu.vsprops;$(SolutionDir)..\third_party\zlib\using_zlib.vsprops;$(SolutionDir)..\third_party\libpng\using_libpng.vsprops;$(SolutionDir)..\skia\using_skia.vsprops;$(SolutionDir)..\tools\grit\build\using_generated_resources.vsprops;$(SolutionDir)..\third_party\libxml\build\using_libxml.vsprops;$(SolutionDir)..\third_party\npapi\using_npapi.vsprops;$(SolutionDir)..\chrome\third_party\wtl\using_wtl.vsprops;$(SolutionDir)\common\extra_defines.vsprops"
  /external/chromium_org/chrome/
DEPS 39 "+third_party/zlib/google",
  /external/chromium_org/chrome/common/
common.vsprops 6 InheritedPropertySheets="$(SolutionDir)..\build\common.vsprops;$(SolutionDir)..\third_party\icu\build\using_icu.vsprops;$(SolutionDir)..\third_party\zlib\using_zlib.vsprops;$(SolutionDir)..\third_party\libpng\using_libpng.vsprops;$(SolutionDir)..\skia\using_skia.vsprops;$(SolutionDir)..\tools\grit\build\using_generated_resources.vsprops;$(SolutionDir)..\third_party\libxml\build\using_libxml.vsprops;$(SolutionDir)..\third_party\npapi\using_npapi.vsprops;$(SolutionDir)..\chrome\third_party\wtl\using_wtl.vsprops;$(SolutionDir)\common\extra_defines.vsprops"
  /external/chromium_org/sdch/open-vcdiff/vsprojects/vcdcom/
vcdcom.vcproj 184 RelativePath="..\..\src\zlib\zconf.h"
188 RelativePath="..\..\src\zlib\zlib.h"
212 RelativePath="..\..\src\zlib\adler32.c"
  /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...]
  /external/chromium_org/third_party/protobuf/vsprojects/
config.h 27 /* define if you want to use zlib. See readme.txt for additional
  /external/chromium_org/third_party/zlib/
gzlib.c 1 /* gzlib.c -- zlib functions common to reading and writing gzip files
3 * For conditions of distribution and use, see copyright notice in zlib.h
197 /* -- see zlib.h -- */
205 /* -- see zlib.h -- */
213 /* -- see zlib.h -- */
229 /* -- see zlib.h -- */
254 /* -- see zlib.h -- */
276 /* -- see zlib.h -- */
352 /* -- see zlib.h -- */
364 /* -- see zlib.h -- *
    [all...]
  /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/libpng/
Android.mk 48 LOCAL_C_INCLUDES += $(common_C_INCLUDES) external/zlib
66 external/zlib
82 external/zlib
98 LOCAL_C_INCLUDES:= $(common_C_INCLUDES) external/zlib
  /external/open-vcdiff/vsprojects/vcdcom/
vcdcom.vcproj 184 RelativePath="..\..\src\zlib\zconf.h"
188 RelativePath="..\..\src\zlib\zlib.h"
212 RelativePath="..\..\src\zlib\adler32.c"
  /external/protobuf/vsprojects/
config.h 27 /* define if you want to use zlib. See readme.txt for additional
  /external/zlib/src/contrib/puff/
README 9 does so more slowly than zlib, but the code is about one-fifth the size of the
10 inflate code in zlib, and written to be very easy to read.
27 Well, most likely you should just be reading puff.c and using zlib for actual
55 pretty, but it works. (This is one of the reasons you should be using zlib.)
  /hardware/ti/omap4xxx/hwc/
Android.mk 18 LOCAL_C_INCLUDES += external/libpng external/zlib
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zipimport.py 12 # some tests can be ran even without zlib
14 import zlib namespace
16 zlib = None variable
109 # This could cause a stack overflow before: importing zlib.py
110 # from a compressed archive would cause zlib to be imported
111 # which would find zlib.py in the archive, which would... etc.
114 # to trigger zipimport to import zlib (zipimport caches the
115 # zlib.decompress function object, after which the problem being
120 # This test fails on platforms on which the zlib module is
125 if "zlib" in sys.builtin_module_names
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zipimport.py 12 # some tests can be ran even without zlib
14 import zlib namespace
16 zlib = None variable
109 # This could cause a stack overflow before: importing zlib.py
110 # from a compressed archive would cause zlib to be imported
111 # which would find zlib.py in the archive, which would... etc.
114 # to trigger zipimport to import zlib (zipimport caches the
115 # zlib.decompress function object, after which the problem being
120 # This test fails on platforms on which the zlib module is
125 if "zlib" in sys.builtin_module_names
    [all...]
  /frameworks/base/libs/androidfw/
ZipUtils.cpp 32 #include <zlib.h>
62 * Initialize the zlib stream.
75 * Use the undocumented "negative window bits" feature to tell zlib
76 * that there's no zlib header waiting for it.
81 ALOGE("Installed zlib is not compatible with linked version (%s)\n",
119 ALOGD("zlib inflate call failed (zerr=%d)\n", zerr);
175 * Initialize the zlib stream.
188 * Use the undocumented "negative window bits" feature to tell zlib
189 * that there's no zlib header waiting for it.
194 ALOGE("Installed zlib is not compatible with linked version (%s)\n"
    [all...]
  /bootable/recovery/applypatch/
Android.mk 21 LOCAL_C_INCLUDES += external/bzip2 external/zlib bootable/recovery
53 LOCAL_C_INCLUDES += external/zlib external/bzip2
  /external/chromium/net/base/
gzip_filter.cc 8 #include <zlib.h>
10 #include "third_party/zlib/zlib.h"
37 // Initialize zlib control block
136 // mod_deflate don't generate zlib headers.
138 // Insert a dummy zlib header and try again.
211 // Fill in zlib control block
235 // According to zlib documentation, when calling inflate with Z_NO_FLUSH,
gzip_filter.h 10 // Internally GZipFilter uses zlib inflate to do decoding.
50 // return. For example, the internal zlib may process some pre-filter data
99 // Inserts a zlib header to the data stream before calling zlib inflate.
126 // a zlib header to this stream.
132 // The control block of zlib which actually does the decoding.
  /external/kernel-headers/original/linux/
zconf.h 1 /* zconf.h -- configuration of the zlib compression library
3 * For conditions of distribution and use, see copyright notice in zlib.h
  /external/zlib/src/contrib/infback9/
inflate9.h 3 * For conditions of distribution and use, see copyright notice in zlib.h
8 subject to change. Applications should only use zlib.h.
  /external/zlib/src/contrib/iostream3/
README 1 These classes provide a C++ stream interface to the zlib library. It allows you
11 and made available in the zlib contrib/iostream directory. The older version still

Completed in 548 milliseconds

1 2 3 4 5 6 7 891011>>