HomeSort by relevance Sort by last modified time
    Searched defs:compress (Results 1 - 25 of 481) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/zlib/
minigzip.py 25 def compress (filename, input, output): function
44 output.write(compobj.compress(data))
125 compress(filename, input, output)
  /external/python/cpython2/Demo/zlib/
minigzip.py 25 def compress (filename, input, output): function
44 output.write(compobj.compress(data))
125 compress(filename, input, output)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
compress.c 0 /* compress.c -- compress a memory buffer
62 int ZEXPORT compress (dest, destLen, source, sourceLen) function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
compress.c 0 /* compress.c -- compress a memory buffer
62 int ZEXPORT compress (dest, destLen, source, sourceLen) function
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
Compressor.java 22 * An interface for implementing a streaming compressor. A compressor may be used to compress
33 public void compress(InputStream uncompressedIn, OutputStream compressedOut) throws IOException; method in interface:Compressor
  /external/llvm/lib/Support/
IntEqClasses.cpp 16 // Once the classes are built, compress() will number them 0 .. M-1 and prevent
26 assert(NumClasses == 0 && "grow() called after compress().");
33 assert(NumClasses == 0 && "join() called after compress().");
54 assert(NumClasses == 0 && "findLeader() called after compress().");
60 void IntEqClasses::compress() { function in class:IntEqClasses
Compression.cpp 49 zlib::Status zlib::compress(StringRef InputBuffer, function in class:zlib
85 zlib::Status zlib::compress(StringRef InputBuffer,
  /external/python/cpython2/Modules/zlib/
compress.c 0 /* compress.c -- compress a memory buffer
62 int ZEXPORT compress (dest, destLen, source, sourceLen) function
  /external/swiftshader/third_party/LLVM/lib/Support/
IntEqClasses.cpp 16 // Once the classes are built, compress() will number them 0 .. M-1 and prevent
26 assert(NumClasses == 0 && "grow() called after compress().");
33 assert(NumClasses == 0 && "join() called after compress().");
47 assert(NumClasses == 0 && "findLeader() called after compress().");
53 void IntEqClasses::compress() { function in class:IntEqClasses
  /external/syslinux/com32/lib/zlib/
compress.c 0 /* compress.c -- compress a memory buffer
62 int ZEXPORT compress (dest, destLen, source, sourceLen) function
  /toolchain/binutils/binutils-2.27/zlib/
compress.c 0 /* compress.c -- compress a memory buffer
6 /* @(#) $Id: compress.c,v 1.1.1.2 2002/03/11 21:53:23 tromey Exp $ */
62 int ZEXPORT compress (dest, destLen, source, sourceLen) function
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/compress/
package-info.java 20 package com.android.tools.build.apkzlib.zip.compress;
ExecutorCompressor.java 17 package com.android.tools.build.apkzlib.zip.compress;
41 * @param executor the executor that will do the compress
49 public ListenableFuture<CompressionResult> compress( method in class:ExecutorCompressor
65 * @param source the source to compress
67 * @throws Exception failed to compress
Zip64NotSupportedException.java 17 package com.android.tools.build.apkzlib.zip.compress;
  /tools/tradefederation/core/src/com/android/tradefed/util/
ICompressionStrategy.java 30 * @param source The file or directory to compress
34 public File compress(File source) throws IOException; method in interface:ICompressionStrategy
ZipCompressionStrategy.java 32 public File compress(File source) throws IOException { method in class:ZipCompressionStrategy
  /external/brotli/python/
brotli.py 6 """Functions to compress and decompress data using the Brotli library."""
25 # Compress a byte string.
26 def compress(string, mode=MODE_GENERIC, quality=11, lgwin=22, lgblock=0): function
27 """Compress a byte string.
  /external/python/cpython2/Lib/plat-irix5/
jpeg.py 19 def compress(imgdata, width, height, bytesperpixel): function
39 jpegdata = comp.Compress(1, imgdata)
113 newjpegdata = compress(imgdata, width, height, bytesperpixel)
  /external/python/cpython2/Lib/plat-irix6/
jpeg.py 19 def compress(imgdata, width, height, bytesperpixel): function
39 jpegdata = comp.Compress(1, imgdata)
113 newjpegdata = compress(imgdata, width, height, bytesperpixel)
  /external/python/cpython3/Modules/zlib/
compress.c 0 /* compress.c -- compress a memory buffer
68 int ZEXPORT compress (dest, destLen, source, sourceLen) function
  /external/zlib/src/
compress.c 0 /* compress.c -- compress a memory buffer
68 int ZEXPORT compress (dest, destLen, source, sourceLen) function
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/
Compressor.java 33 * @param source the source to compress
37 ListenableFuture<CompressionResult> compress(@Nonnull CloseableByteSource source); method in interface:Compressor
  /frameworks/base/core/tests/coretests/src/android/graphics/drawable/
IconTest.java 84 bm1.compress(Bitmap.CompressFormat.PNG, 100,
86 test1.compress(Bitmap.CompressFormat.PNG, 100,
93 bm2.compress(Bitmap.CompressFormat.PNG, 100,
95 test2.compress(Bitmap.CompressFormat.PNG, 100,
102 bm3.compress(Bitmap.CompressFormat.PNG, 100,
104 test3.compress(Bitmap.CompressFormat.PNG, 100,
149 bm1.compress(Bitmap.CompressFormat.PNG, 100,
151 test1.compress(Bitmap.CompressFormat.PNG, 100,
172 res1.compress(Bitmap.CompressFormat.PNG, 100,
174 test1.compress(Bitmap.CompressFormat.PNG, 100
    [all...]
  /tools/apkzlib/src/test/java/com/android/tools/build/apkzlib/zip/compress/
MultiCompressorTest.java 17 package com.android.tools.build.apkzlib.zip.compress;
47 private static byte[] compress(byte[] data, int level) throws Exception { method in class:MultiCompressorTest
99 int bestSize = compress(data, Deflater.BEST_COMPRESSION).length;
100 int defaultSize = compress(data, Deflater.DEFAULT_COMPRESSION).length;
129 int bestSize = compress(data, Deflater.BEST_COMPRESSION).length;
130 int defaultSize = compress(data, Deflater.DEFAULT_COMPRESSION).length;
  /cts/tests/tests/graphics/src/android/graphics/cts/
Bitmap_CompressFormatTest.java 53 assertTrue(b.compress(CompressFormat.JPEG, 24, new ByteArrayOutputStream()));
54 assertTrue(b.compress(CompressFormat.PNG, 24, new ByteArrayOutputStream()));
55 assertTrue(b.compress(CompressFormat.WEBP, 24, new ByteArrayOutputStream()));

Completed in 773 milliseconds

1 2 3 4 5 6 7 8 91011>>