HomeSort by relevance Sort by last modified time
    Searched full:zlib (Results 526 - 550 of 1648) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/
zlib.h 0 /* zlib.h -- interface of the 'zlib' general purpose compression library
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
44 The 'zlib' compression library provides in-memory compression and
57 the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped
62 with "gz". The gzip format is different from the zlib format. gzip is a
67 The zlib format was designed to be compact and fast for use in memory
69 file compression on file systems, has a larger header than zlib to maintai
    [all...]
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/
zlib.h 0 /* zlib.h -- interface of the 'zlib' general purpose compression library
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
44 The 'zlib' compression library provides in-memory compression and
57 the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped
62 with "gz". The gzip format is different from the zlib format. gzip is a
67 The zlib format was designed to be compact and fast for use in memory
69 file compression on file systems, has a larger header than zlib to maintai
    [all...]
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/
zlib.h 0 /* zlib.h -- interface of the 'zlib' general purpose compression library
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
44 The 'zlib' compression library provides in-memory compression and
57 the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped
62 with "gz". The gzip format is different from the zlib format. gzip is a
67 The zlib format was designed to be compact and fast for use in memory
69 file compression on file systems, has a larger header than zlib to maintai
    [all...]
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/
zlib.h 0 /* zlib.h -- interface of the 'zlib' general purpose compression library
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
44 The 'zlib' compression library provides in-memory compression and
57 the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped
62 with "gz". The gzip format is different from the zlib format. gzip is a
67 The zlib format was designed to be compact and fast for use in memory
69 file compression on file systems, has a larger header than zlib to maintai
    [all...]
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/
zlib.h 0 /* zlib.h -- interface of the 'zlib' general purpose compression library
26 The data format used by the zlib library is described by RFCs (Request for
28 (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format).
44 The 'zlib' compression library provides in-memory compression and
57 the zlib format, which is a zlib wrapper documented in RFC 1950, wrapped
62 with "gz". The gzip format is different from the zlib format. gzip is a
67 The zlib format was designed to be compact and fast for use in memory
69 file compression on file systems, has a larger header than zlib to maintai
    [all...]
  /external/zlib/src/test/
infcover.c 1 /* infcover.c -- test zlib's inflate routines with full code coverage
3 * For conditions of distribution and use, see copyright notice in zlib.h
12 #include "zlib.h"
25 These memory tracking routines are provided to zlib and track all of zlib's
35 memory tracking for all zlib operations on strm
44 for the tracking as well as leaked zlib blocks, if
51 allocation routines on the next zlib initialization
70 /* memory allocation routine to pass to zlib */
111 /* memory free routine to pass to zlib */
    [all...]
  /external/zlib/src/examples/
zran.c 1 /* zran.c -- example of zlib/gzip stream indexing and random access
3 * For conditions of distribution and use, see copyright notice in zlib.h
12 for random access of a compressed file. A file containing a zlib or gzip
24 input zlib or gzip stream a block at a time, and at the end of each block
58 #include "zlib.h"
140 of the first zlib or gzip stream in the file is ignored. build_index()
160 ret = inflateInit2(&strm, 47); /* automatic zlib or gzip decoding */
166 information at the end of the gzip or zlib stream */
210 entry point after the zlib or gzip header, and assures that the
  /external/chromium_org/third_party/zlib/contrib/minizip/
zip.h 1 /* zip.h -- IO on .zip files using zlib
14 Condition of use and distribution are the same than zlib :
50 #include "third_party/zlib/zlib.h"
120 pathname contain on Windows XP a filename like "c:\\zlib\\zlib113.zip" or on
121 an Unix computer "zlib/zlib113.zip".
  /external/deqp/
CMakeLists.txt 59 # zlib
60 find_path(ZLIB_INCLUDE_PATH zlib.h)
64 message(STATUS "System version of zlib not found, using external/zlib")
65 add_subdirectory(external/zlib)
66 # \note ZLIB_LIBRARY and ZLIB_INCLUDE_PATH are promoted from external/zlib/CMakeLists.txt
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
gzip.py 6 # based on Andrew Kuchling's minigzip.py distributed with the zlib module
9 import zlib namespace
123 self.compress = zlib.compressobj(compresslevel,
124 zlib.DEFLATED,
125 -zlib.MAX_WBITS,
126 zlib.DEF_MEM_LEVEL,
159 self.crc = zlib.crc32("") & 0xffffffffL
184 self.crc = zlib.crc32("") & 0xffffffffL
235 self.crc = zlib.crc32(data, self.crc) & 0xffffffffL
297 self.decompress = zlib.decompressobj(-zlib.MAX_WBITS
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
gzip.py 6 # based on Andrew Kuchling's minigzip.py distributed with the zlib module
9 import zlib namespace
123 self.compress = zlib.compressobj(compresslevel,
124 zlib.DEFLATED,
125 -zlib.MAX_WBITS,
126 zlib.DEF_MEM_LEVEL,
159 self.crc = zlib.crc32("") & 0xffffffffL
184 self.crc = zlib.crc32("") & 0xffffffffL
235 self.crc = zlib.crc32(data, self.crc) & 0xffffffffL
297 self.decompress = zlib.decompressobj(-zlib.MAX_WBITS
    [all...]
  /external/chromium_org/build/linux/unbundle/
replace_gyp_files.py 42 'use_system_zlib': 'third_party/zlib/zlib.gyp',
  /external/chromium_org/net/filter/
gzip_header.cc 10 #include "third_party/zlib/zlib.h"
  /external/chromium_org/net/websockets/
websocket_deflater.cc 14 #include "third_party/zlib/zlib.h"
  /external/chromium_org/third_party/protobuf/
CONTRIBUTORS.txt 63 * gzip/zlib I/O support.
79 * Detect whether zlib is new enough in configure script.
  /external/chromium_org/third_party/skia/
DEPS 42 "third_party/externals/zlib" :
43 "https://android.googlesource.com/platform/external/zlib.git@android-4.2.2_r1.2",
  /external/chromium_org/third_party/zlib/
compress.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
9 #include "zlib.h"
  /external/fonttools/Lib/fontTools/ttLib/
sfnt.py 198 import zlib namespace
199 compressedMetaData = zlib.compress(data.metaData)
391 import zlib namespace
396 data = zlib.decompress(rawData)
401 import zlib namespace
404 compressedData = zlib.compress(data, self.zlibCompressionLevel)
430 import zlib namespace
431 data = zlib.decompress(rawData)
  /external/freetype/src/gzip/
infutil.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/libpng/projects/owatcom/
libpng.tgt 80 "$(%zlib);$(%watcom)/h;$(%watcom)/h/nt"
96 "$(%zlib);$(%watcom)/h;$(%watcom)/h/nt"
  /external/libpng/scripts/
makefile.atari 12 CPPFLAGS = -I..\zlib
15 LDFLAGS = -L. -L..\zlib -lpng -lz -lm
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_compress.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
9 #include "zlib.h"
  /external/protobuf/
CONTRIBUTORS.txt 63 * gzip/zlib I/O support.
79 * Detect whether zlib is new enough in configure script.
  /external/qemu/distrib/zlib-1.2.8/
compress.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
9 #include "zlib.h"
  /external/skia/
DEPS 43 "third_party/externals/zlib" :
44 "https://android.googlesource.com/platform/external/zlib.git@android-4.2.2_r1.2",

Completed in 713 milliseconds

<<21222324252627282930>>