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

<<31323334353637383940>>

  /external/zlib/src/contrib/pascal/
example.pas 1 (* example.c -- usage example of the zlib compression library
3 * For conditions of distribution and use, see copyright notice in zlib.h
419 d_stream.avail_in := 2; (* just read the zlib header *)
533 EXIT_ERR('Incompatible zlib version');
535 WriteLn('zlib version: ', zlibVersion);
536 WriteLn('zlib compile flags: ', Format('0x%x', [zlibCompileFlags]));
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngconf.h 84 # ifdef OF /* zlib prototype munger */
113 * specify the calling convention for zlib).
463 * large using the far keyword. The zlib version used must also support
464 * model independent data. As of version zlib 1.0.4, the necessary changes
465 * have been made in zlib. The USE_FAR_KEYWORD define triggers other
469 /* Separate compiler dependencies (problem here is that zlib.h always
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
zipfile.py 11 import zlib # We may need its compression method namespace
12 crc32 = zlib.crc32
14 zlib = None variable
526 self._decompressor = zlib.decompressobj(-15)
713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib).
730 if not zlib:
732 "Compression requires the (missing) zlib module"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
zipfile.py 11 import zlib # We may need its compression method namespace
12 crc32 = zlib.crc32
14 zlib = None variable
526 self._decompressor = zlib.decompressobj(-15)
713 compression: ZIP_STORED (no compression) or ZIP_DEFLATED (requires zlib).
730 if not zlib:
732 "Compression requires the (missing) zlib module"
    [all...]
  /external/chromium_org/third_party/libpng/
pngconf.h 96 * usage. Note that zlib allocates at least 32Kb also. For readers,
160 * large file), zlib needs to know how big of a chunk it can use, and
312 #ifdef OF /* zlib prototype munger */
    [all...]
pngwutil.c 238 png_error(png_ptr, "zlib error");
286 /* Tell zlib we are finished */
339 png_error(png_ptr, "zlib error");
381 /* Reset zlib for another zTXt/iTXt or image data */
519 /* Initialize zlib with PNG info */
552 "zlib failed to initialize compressor -- version error");
554 "zlib failed to initialize compressor -- stream error");
556 "zlib failed to initialize compressor -- mem error");
557 png_error(png_ptr, "zlib failed to initialize compressor");
562 /* Set it to a predefined value, to avoid its evaluation inside zlib */
    [all...]
  /external/qemu/distrib/libpng-1.2.46/
pngconf.h 100 * usage. Note that zlib allocates at least 32Kb also. For readers,
164 * large file), zlib needs to know how big of a chunk it can use, and
316 #ifdef OF /* zlib prototype munger */
    [all...]
pngwutil.c 238 png_error(png_ptr, "zlib error");
286 /* Tell zlib we are finished */
339 png_error(png_ptr, "zlib error");
381 /* Reset zlib for another zTXt/iTXt or image data */
519 /* Initialize zlib with PNG info */
552 "zlib failed to initialize compressor -- version error");
554 "zlib failed to initialize compressor -- stream error");
556 "zlib failed to initialize compressor -- mem error");
557 png_error(png_ptr, "zlib failed to initialize compressor");
562 /* Set it to a predefined value, to avoid its evaluation inside zlib */
    [all...]
  /external/chromium_org/net/quic/crypto/
cert_compressor.cc 10 #include "third_party/zlib/zlib.h"
21 // in order to help zlib. This was generated via a fairly dumb algorithm from
157 // COMPRESSED means that the certificate is included in the trailing zlib
284 // ZlibDictForEntries returns a string that contains the zlib pre-shared
285 // dictionary to use in order to decompress a zlib block following |entries|.
417 // ScopedZLib deals with the automatic destruction of a zlib context.
  /external/chromium_org/third_party/zlib/
inflate.c 1 /* inflate.c -- zlib decompression
3 * For conditions of distribution and use, see copyright notice in zlib.h
13 * improve code readability and style over the previous zlib inflate code
80 * The history for versions after 1.2.0 are in ChangeLog in zlib distribution.
300 Then that can be linked with zlib built with MAKEFIXED defined and run:
316 puts(" subject to change. Applications should only use zlib.h.");
410 /* check function to use adler32() for zlib or crc32() for gzip */
579 return code (per zlib.h). inflate() always writes as much as possible to
581 documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
583 provides the effect documented in zlib.h for Z_FINISH when the entire inpu
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inflate.c 1 /* inflate.c -- zlib decompression
3 * For conditions of distribution and use, see copyright notice in zlib.h
13 * improve code readability and style over the previous zlib inflate code
80 * The history for versions after 1.2.0 are in ChangeLog in zlib distribution.
321 Then that can be linked with zlib built with MAKEFIXED defined and run:
337 puts(" subject to change. Applications should only use zlib.h.");
431 /* check function to use adler32() for zlib or crc32() for gzip */
595 return code (per zlib.h). inflate() always writes as much as possible to
597 documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
599 provides the effect documented in zlib.h for Z_FINISH when the entire inpu
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
inflate.c 1 /* inflate.c -- zlib decompression
3 * For conditions of distribution and use, see copyright notice in zlib.h
13 * improve code readability and style over the previous zlib inflate code
80 * The history for versions after 1.2.0 are in ChangeLog in zlib distribution.
321 Then that can be linked with zlib built with MAKEFIXED defined and run:
337 puts(" subject to change. Applications should only use zlib.h.");
431 /* check function to use adler32() for zlib or crc32() for gzip */
595 return code (per zlib.h). inflate() always writes as much as possible to
597 documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
599 provides the effect documented in zlib.h for Z_FINISH when the entire inpu
    [all...]
  /external/zlib/src/
inflate.c 1 /* inflate.c -- zlib decompression
3 * For conditions of distribution and use, see copyright notice in zlib.h
13 * improve code readability and style over the previous zlib inflate code
80 * The history for versions after 1.2.0 are in ChangeLog in zlib distribution.
321 Then that can be linked with zlib built with MAKEFIXED defined and run:
337 puts(" subject to change. Applications should only use zlib.h.");
431 /* check function to use adler32() for zlib or crc32() for gzip */
595 return code (per zlib.h). inflate() always writes as much as possible to
597 documented in zlib.h of Z_SYNC_FLUSH. Furthermore, inflate() always defers
599 provides the effect documented in zlib.h for Z_FINISH when the entire inpu
    [all...]
  /bootable/recovery/applypatch/
imgdiff.c 36 * is available in applypatch, namely, the one in the zlib library.
38 * "minigzip" tool included in the zlib distribution, not the GNU gzip
106 * the bsdiff patch. The next five parameters specify the zlib
132 #include "zlib.h"
323 // -15 means we are decoding a 'raw' deflate stream; zlib will
324 // not expect zlib headers.
448 // -15 means we are decoding a 'raw' deflate stream; zlib will
449 // not expect zlib headers.
525 * using the zlib parameters stored in the chunk, and checks that it
    [all...]
  /external/chromium_org/third_party/freetype/include/freetype/config/
ftoption.h 160 /* that come with XFree86. The implementation uses `zlib' to */
171 /* ZLib library selection */
175 /* installation of the ZLib library. This is useful on systems like */
179 /* of the zlib sources instead. These have been modified to be */
182 /* _and_ ZLib without linking conflicts. */
    [all...]
  /external/chromium_org/third_party/freetype2/include/
ftoption.h 160 /* that come with XFree86. The implementation uses `zlib' to */
171 /* ZLib library selection */
175 /* installation of the ZLib library. This is useful on systems like */
179 /* of the zlib sources instead. These have been modified to be */
182 /* _and_ ZLib without linking conflicts. */
    [all...]
  /external/chromium_org/third_party/skia/third_party/freetype/include_overrides/freetype/config/
ftoption.h 160 /* that come with XFree86. The implementation uses `zlib' to */
171 /* ZLib library selection */
175 /* installation of the ZLib library. This is useful on systems like */
179 /* of the zlib sources instead. These have been modified to be */
182 /* _and_ ZLib without linking conflicts. */
    [all...]
  /external/freetype/include/config/
ftoption.h 160 /* that come with XFree86. The implementation uses `zlib' to */
171 /* ZLib library selection */
175 /* installation of the ZLib library. This is useful on systems like */
179 /* of the zlib sources instead. These have been modified to be */
182 /* _and_ ZLib without linking conflicts. */
    [all...]
  /external/pdfium/core/include/thirdparties/freetype/freetype/config/
ftoption.h 160 /* that come with XFree86. The implementation uses `zlib' to */
171 /* ZLib library selection */
175 /* installation of the ZLib library. This is useful on systems like */
179 /* of the zlib sources instead. These have been modified to be */
182 /* _and_ ZLib without linking conflicts. */
    [all...]
  /external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/config/
ftoption.h 160 /* that come with XFree86. The implementation uses `zlib' to */
171 /* ZLib library selection */
175 /* installation of the ZLib library. This is useful on systems like */
179 /* of the zlib sources instead. These have been modified to be */
182 /* _and_ ZLib without linking conflicts. */
    [all...]
  /external/zlib/src/examples/
gun.c 3 * For conditions of distribution and use, see copyright notice in zlib.h
21 1.7 12 Aug 2012 Update for z_const usage in zlib 1.2.8
54 1.2.4) is on the same file, when gun is linked with zlib 1.2.2. Also the
69 #include "zlib.h" /* inflateBackInit(), inflateBack(), */
377 The return value is a zlib error code: Z_MEM_ERROR if out of memory,
gzappend.c 35 * - Use new data_type definition for zlib 1.2.1
53 zlib 1.2.x's inflate() function. This option returns from inflate() at each
56 another required feature of zlib 1.2.x is that inflate() now provides the
58 with versions of zlib earlier than 1.2.1.
85 #include "zlib.h"
  /ndk/docs/text/
STABLE-APIS.text 119 ### ZLib Compression Library:
121 `<zlib.h>` and `<zconf.h>` are available and can be used to use the ZLib
122 compression library. Documentation for it is at the ZLib page:
124 > http://www.zlib.net/manual.html
  /external/chromium_org/skia/
skia_library.gypi 17 '../third_party/zlib/zlib.gyp:zlib',
  /external/chromium_org/sync/
sync.gyp 52 '../third_party/zlib/zlib.gyp:zlib',

Completed in 1091 milliseconds

<<31323334353637383940>>