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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/safe_browsing/
DEPS 2 "+third_party/zlib",
  /external/chromium_org/extensions/browser/api/cast_channel/
DEPS 2 "+third_party/zlib",
  /external/chromium_org/mojo/tools/package_manager/
DEPS 2 '+third_party/zlib',
  /external/chromium_org/build/android/rezip/
DEPS 2 "+third_party/zlib/contrib/minizip",
  /external/chromium_org/tools/imagediff/
DEPS 3 "+third_party/zlib/zlib.h",
  /external/chromium_org/components/metrics/
DEPS 4 "+third_party/zlib",
  /external/chromium_org/third_party/skia/gyp/
zlib.gyp 12 'target_name': 'zlib',
18 '../third_party/externals/zlib',
22 'SK_ZLIB_INCLUDE="zlib.h"',
25 '../third_party/externals/zlib',
29 '../third_party/externals/zlib/src/adler32.c',
30 '../third_party/externals/zlib/src/compress.c',
31 '../third_party/externals/zlib/src/crc32.c',
32 '../third_party/externals/zlib/src/deflate.c',
33 '../third_party/externals/zlib/src/gzclose.c',
34 '../third_party/externals/zlib/src/gzlib.c'
    [all...]
skflate.gyp 11 # When zlib is not availible on a system,
16 'zlib.gyp:zlib',
  /external/skia/gyp/
zlib.gyp 12 'target_name': 'zlib',
18 '../third_party/externals/zlib',
22 'SK_ZLIB_INCLUDE="zlib.h"',
25 '../third_party/externals/zlib',
29 '../third_party/externals/zlib/src/adler32.c',
30 '../third_party/externals/zlib/src/compress.c',
31 '../third_party/externals/zlib/src/crc32.c',
32 '../third_party/externals/zlib/src/deflate.c',
33 '../third_party/externals/zlib/src/gzclose.c',
34 '../third_party/externals/zlib/src/gzlib.c'
    [all...]
skflate.gyp 11 # When zlib is not availible on a system,
16 'zlib.gyp:zlib',
  /external/chromium_org/content/browser/tracing/
DEPS 4 "+third_party/zlib/zlib.h",
  /external/chromium_org/net/base/
DEPS 3 "+third_party/zlib",
  /external/chromium_org/remoting/base/
DEPS 5 "+third_party/zlib",
  /external/chromium_org/ui/gfx/codec/
DEPS 6 "+third_party/zlib",
  /external/elfutils/0.153/libdwfl/
bzip2.c 1 /* bzlib is almost just like zlib. */
lzma.c 1 /* liblzma is pretty close to zlib and bzlib. */
  /external/zlib/src/as400/
readme.txt 0 ZLIB version 1.2.8 for AS400 installation instructions
9 _ Create the ZLIB AS400 library:
11 CRTLIB LIB(ZLIB) TYPE(*PROD) TEXT('ZLIB compression API library')
15 CRTSAVF FILE(ZLIB/ZLIBSAVF)
24 2) Populating the ZLIB AS400 source library
28 _ Extract the saved objects into the ZLIB AS400 library using:
30 RSTOBJ OBJ(*ALL) SAVLIB(ZLIB) DEV(*SAVF) SAVF(ZLIB/ZLIBSAVF) RSTLIB(ZLIB)
    [all...]
  /external/llvm/test/DebugInfo/
dwarfdump-zlib.test 1 REQUIRES: zlib
3 RUN: llvm-dwarfdump %p/Inputs/dwarfdump-test-zlib.elf-x86-64 | FileCheck %s
llvm-symbolizer-zlib.test 1 REQUIRES: zlib
3 RUN: echo "%p/Inputs/dwarfdump-test-zlib.elf-x86-64 0x400559" > %t.input
7 CHECK-NEXT: /tmp/dbginfo{{[/\\]}}dwarfdump-test-zlib.cc:16
  /external/chromium_org/media/cast/
DEPS 7 "+third_party/zlib",
  /external/zlib/src/win32/
VisualC.txt 2 To build zlib using the Microsoft Visual C++ environment,
  /external/llvm/lib/Support/
Compression.cpp 20 #include <zlib.h>
26 static int encodeZlibCompressionLevel(zlib::CompressionLevel Level) {
28 case zlib::NoCompression: return 0;
29 case zlib::BestSpeedCompression: return 1;
30 case zlib::DefaultCompression: return Z_DEFAULT_COMPRESSION;
31 case zlib::BestSizeCompression: return 9;
33 llvm_unreachable("Invalid zlib::CompressionLevel!");
36 static zlib::Status encodeZlibReturnValue(int ReturnValue) {
38 case Z_OK: return zlib::StatusOK;
39 case Z_MEM_ERROR: return zlib::StatusOutOfMemory
    [all...]
  /external/zlib/src/contrib/ada/
readme.txt 0 ZLib for Ada thick binding (ZLib.Ada)
4 ZLib.Ada is a thick binding interface to the popular ZLib data
5 compression library, available at http://www.gzip.org/zlib/.
6 It provides Ada-style access to the ZLib C library.
9 Here are the main changes since ZLib.Ada 1.2:
11 - Attension: ZLib.Read generic routine have a initialization requirement
16 - Added Is_Open routines to ZLib and ZLib.Streams packages
    [all...]
  /external/zlib/src/amiga/
Makefile.pup 44 zip -ul9 zlib README ChangeLog Makefile Make????.??? Makefile.?? \
48 cd ..; tar cfz zlib/zlib.tgz zlib/README zlib/ChangeLog zlib/Makefile \
49 zlib/Make????.??? zlib/Makefile.?? zlib/descrip.mms zlib/*.[ch
    [all...]
  /external/llvm/unittests/Support/
CompressionTest.cpp 26 void TestZlibCompression(StringRef Input, zlib::CompressionLevel Level) {
29 EXPECT_EQ(zlib::StatusOK, zlib::compress(Input, Compressed, Level));
31 EXPECT_EQ(zlib::StatusOK,
32 zlib::uncompress(Compressed, Uncompressed, Input.size()));
36 EXPECT_EQ(zlib::StatusBufferTooShort,
37 zlib::uncompress(Compressed, Uncompressed, Input.size() - 1));
41 TEST(CompressionTest, Zlib) {
42 TestZlibCompression("", zlib::DefaultCompression);
44 TestZlibCompression("hello, world!", zlib::NoCompression)
    [all...]

Completed in 420 milliseconds

1 2 3 4 5 6 7 8 91011>>