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

1 2 3 4 5 6 7 8 91011>>

  /external/deqp/external/
.gitignore 3 zlib/*
4 !zlib/CMakeLists.txt
  /external/skia/gyp/
zlib.gyp 14 '../third_party/externals/zlib/crc_folding.c',
15 '../third_party/externals/zlib/fill_window_sse.c',
28 'target_name': 'zlib',
31 [ 'skia_android_framework', { 'include_dirs': [ 'external/zlib' ] }],
48 '../third_party/externals/zlib/adler32.c',
49 '../third_party/externals/zlib/compress.c',
50 '../third_party/externals/zlib/crc32.c',
51 '../third_party/externals/zlib/crc32.h',
52 '../third_party/externals/zlib/deflate.c',
53 '../third_party/externals/zlib/deflate.h'
    [all...]
skflate.gyp 13 'zlib.gyp:zlib',
  /external/elfutils/src/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/lib/Support/
Compression.cpp 21 #include <zlib.h>
27 static int encodeZlibCompressionLevel(zlib::CompressionLevel Level) {
29 case zlib::NoCompression: return 0;
30 case zlib::BestSpeedCompression: return 1;
31 case zlib::DefaultCompression: return Z_DEFAULT_COMPRESSION;
32 case zlib::BestSizeCompression: return 9;
34 llvm_unreachable("Invalid zlib::CompressionLevel!");
37 static zlib::Status encodeZlibReturnValue(int ReturnValue) {
39 case Z_OK: return zlib::StatusOK;
40 case Z_MEM_ERROR: return zlib::StatusOutOfMemory
    [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/zlib/src/win32/
VisualC.txt 2 To build zlib using the Microsoft Visual C++ environment,
  /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...]
  /external/libpng/projects/visualc71/
zlib.vcproj 5 Name="zlib">
13 OutputDirectory=".\Win32_DLL_Release\ZLib"
14 IntermediateDirectory=".\Win32_DLL_Release\ZLib"
19 AdditionalIncludeDirectories="..\..\..\zlib"
32 ModuleDefinitionFile="..\..\..\zlib\win32\zlib.def"/>
58 OutputDirectory=".\Win32_DLL_Debug\ZLib"
59 IntermediateDirectory=".\Win32_DLL_Debug\ZLib"
64 AdditionalIncludeDirectories="..\..\..\zlib"
76 ModuleDefinitionFile="..\..\..\zlib\win32\zlib.def
    [all...]
  /external/zlib/src/old/
descrip.mms 1 # descrip.mms: MMS description file for building zlib on VMS
33 adler32.obj : zutil.h zlib.h zconf.h
34 compress.obj : zlib.h zconf.h
35 crc32.obj : zutil.h zlib.h zconf.h
36 deflate.obj : deflate.h zutil.h zlib.h zconf.h
37 example.obj : zlib.h zconf.h
38 gzio.obj : zutil.h zlib.h zconf.h
39 infblock.obj : zutil.h zlib.h zconf.h infblock.h inftrees.h infcodes.h infutil.h
40 infcodes.obj : zutil.h zlib.h zconf.h inftrees.h infutil.h infcodes.h inffast.h
41 inffast.obj : zutil.h zlib.h zconf.h inftrees.h infutil.h inffast.
    [all...]
README 1 This directory contains files that have not been updated for zlib 1.2.x
  /external/zlib/src/contrib/delphi/
ZLibConst.pas 6 sTargetBufferTooSmall = 'ZLib error: target buffer may be too small';
  /external/zlib/src/contrib/untgz/
Makefile.msc 4 untgz.exe: untgz.obj ..\..\zlib.lib
5 $(CC) $(CFLAGS) untgz.obj ..\..\zlib.lib
7 untgz.obj: untgz.c ..\..\zlib.h
10 ..\..\zlib.lib:
  /external/libpng/contrib/pngminim/encoder/
README 4 and zlib.
6 Specify the location of the zlib source (1.2.1 or later) as ZLIBSRC
  /external/zlib/src/
zlib.pc 7 Name: zlib
8 Description: zlib compression library
zlib.pc.cmakein 7 Name: zlib
8 Description: zlib compression library
zlib.pc.in 7 Name: zlib
8 Description: zlib compression library
INDEX 3 FAQ Frequently Asked Questions about zlib
10 test/example.c zlib usages examples for build testing
16 zlib.3 Man page for zlib
17 zlib.3.pdf Man page in PDF format
18 zlib.map Linux symbol information
19 zlib.pc.in Template for pkg-config descriptor
20 zlib.pc.cmakein zlib.pc template for cmake
28 old/ makefiles for various architectures and zlib documentatio
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib/pkgconfig/
zlib.pc 6 Name: zlib
7 Description: zlib compression library
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/pkgconfig/
zlib.pc 6 Name: zlib
7 Description: zlib compression library

Completed in 301 milliseconds

1 2 3 4 5 6 7 8 91011>>