HomeSort by relevance Sort by last modified time
    Searched refs:decompress (Results 51 - 75 of 215) sorted by null

1 23 4 5 6 7 8 9

  /external/python/cpython2/Demo/zlib/
minigzip.py 49 def decompress (input, output): function
85 decompdata = decompobj.decompress(data)
127 decompress(input, output)
  /external/brotli/tools/
bro.c 84 int *decompress,
99 *decompress =
110 } else if (!strcmp("--decompress", argv[k]) ||
113 *decompress = 1;
186 "Usage: %s [--force] [--quality n] [--decompress]"
315 static int Decompress(FILE* fin, FILE* fout, const char* dictionary_path) {
462 int decompress = 0; local
470 &quality, &decompress, &repeat, &verbose, &lgwin, &copy_stat);
476 if (decompress) {
477 is_ok = Decompress(fin, fout, dictionary_path)
    [all...]
  /external/syslinux/gpxe/src/arch/i386/prefix/
unnrv2b.S 26 * This file provides the decompress() and decompress16() functions
27 * which can be called in order to decompress an image compressed with
34 * decompress() and decompress16().
46 * Decompress data in 16-bit mode
80 * decompress (32-bit protected-mode near call, position independent)
96 .globl decompress
97 decompress: label
  /external/brotli/python/tests/
compress_test.py 17 # Only dictionary is supported as a kwarg to brotli.decompress.
28 out_file.write(brotli.decompress(in_file.read(), **kwargs))
  /external/deqp/framework/common/
tcuAstcUtil.hpp 75 void decompress (const PixelBufferAccess& dst, const deUint8* data, CompressedTexFormat format, TexDecompressionParams::AstcMode mode);
  /external/jsoncpp/devtools/
tarball.py 44 def decompress( tarball_path, base_dir ): function
45 """Decompress the gzipped tarball into directory base_dir.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
gzip.py 288 self.decompress = zlib.decompressobj(-zlib.MAX_WBITS)
298 uncompress = self.decompress.flush()
303 uncompress = self.decompress.decompress(buf)
306 if self.decompress.unused_data != "":
312 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
475 decompress = args and args[0] == "-d"
476 if decompress:
481 if decompress:
  /external/python/cpython2/Lib/
gzip.py 304 self.decompress = zlib.decompressobj(-zlib.MAX_WBITS)
314 uncompress = self.decompress.flush()
319 uncompress = self.decompress.decompress(buf)
322 if self.decompress.unused_data != "":
328 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
493 decompress = args and args[0] == "-d"
494 if decompress:
499 if decompress:
  /prebuilts/gdb/darwin-x86/lib/python2.7/
gzip.py 297 self.decompress = zlib.decompressobj(-zlib.MAX_WBITS)
307 uncompress = self.decompress.flush()
312 uncompress = self.decompress.decompress(buf)
315 if self.decompress.unused_data != "":
321 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
484 decompress = args and args[0] == "-d"
485 if decompress:
490 if decompress:
  /prebuilts/gdb/linux-x86/lib/python2.7/
gzip.py 297 self.decompress = zlib.decompressobj(-zlib.MAX_WBITS)
307 uncompress = self.decompress.flush()
312 uncompress = self.decompress.decompress(buf)
315 if self.decompress.unused_data != "":
321 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
484 decompress = args and args[0] == "-d"
485 if decompress:
490 if decompress:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
gzip.py 297 self.decompress = zlib.decompressobj(-zlib.MAX_WBITS)
307 uncompress = self.decompress.flush()
312 uncompress = self.decompress.decompress(buf)
315 if self.decompress.unused_data != "":
321 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
484 decompress = args and args[0] == "-d"
485 if decompress:
490 if decompress:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
gzip.py 297 self.decompress = zlib.decompressobj(-zlib.MAX_WBITS)
307 uncompress = self.decompress.flush()
312 uncompress = self.decompress.decompress(buf)
315 if self.decompress.unused_data != "":
321 self.fileobj.seek( -len(self.decompress.unused_data)+8, 1)
484 decompress = args and args[0] == "-d"
485 if decompress:
490 if decompress:
  /external/icu/android_icu4j/src/main/java/android/icu/text/
UnicodeDecompressor.java 22 * straightforward manner to decompress simple strings:</P>
26 * String result = UnicodeDecompressor.decompress(compressed);
35 * // Decompress an array "bytes" of length "len" using a buffer of 512 chars
48 * charsWritten = myDecompressor.decompress(bytes, totalBytesDecompressed,
110 * Decompress a byte array into a String.
111 * @param buffer The byte array to decompress.
113 * @see #decompress(byte [], int, int)
115 public static String decompress(byte [] buffer){ method in class:UnicodeDecompressor
116 char [] buf = decompress(buffer, 0, buffer.length);
121 * Decompress a byte array into a Unicode character array
128 public static char [] decompress(byte [] buffer, int start, int limit) { method in class:UnicodeDecompressor
164 public int decompress(byte [] byteBuffer, method in class:UnicodeDecompressor
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeDecompressor.java 21 * straightforward manner to decompress simple strings:</P>
25 * String result = UnicodeDecompressor.decompress(compressed);
34 * // Decompress an array "bytes" of length "len" using a buffer of 512 chars
47 * charsWritten = myDecompressor.decompress(bytes, totalBytesDecompressed,
110 * Decompress a byte array into a String.
111 * @param buffer The byte array to decompress.
113 * @see #decompress(byte [], int, int)
116 public static String decompress(byte [] buffer){ method in class:UnicodeDecompressor
117 char [] buf = decompress(buffer, 0, buffer.length);
122 * Decompress a byte array into a Unicode character array
130 public static char [] decompress(byte [] buffer, int start, int limit) { method in class:UnicodeDecompressor
167 public int decompress(byte [] byteBuffer, method in class:UnicodeDecompressor
    [all...]
  /packages/apps/TV/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeDecompressor.java 21 * straightforward manner to decompress simple strings:</P>
25 * String result = UnicodeDecompressor.decompress(compressed);
34 * // Decompress an array "bytes" of length "len" using a buffer of 512 chars
47 * charsWritten = myDecompressor.decompress(bytes, totalBytesDecompressed,
110 * Decompress a byte array into a String.
111 * @param buffer The byte array to decompress.
113 * @see #decompress(byte [], int, int)
116 public static String decompress(byte [] buffer){ method in class:UnicodeDecompressor
117 char [] buf = decompress(buffer, 0, buffer.length);
122 * Decompress a byte array into a Unicode character array
130 public static char [] decompress(byte [] buffer, int start, int limit) { method in class:UnicodeDecompressor
167 public int decompress(byte [] byteBuffer, method in class:UnicodeDecompressor
    [all...]
  /external/brotli/python/
bro.py 79 '--decompress',
81 help='Decompress input file',
157 if options.decompress:
158 data = brotli.decompress(data, dictionary=custom_dictionary)
  /external/elfutils/libdwfl/
open.c 45 decompress (int fd __attribute__ ((unused)), Elf **elf) function
104 error = decompress (fd, elfp);
  /external/python/cpython2/Lib/plat-irix5/
jpeg.py 42 def decompress(jpegdata): function
61 imgdata = decomp.Decompress(1, jpegdata)
86 imgdata, width, height, bytesperpixel = decompress(jpegdata)
  /external/python/cpython2/Lib/plat-irix6/
jpeg.py 42 def decompress(jpegdata): function
61 imgdata = decomp.Decompress(1, jpegdata)
86 imgdata, width, height, bytesperpixel = decompress(jpegdata)
  /external/xz-embedded/linux/lib/
decompress_unxz.c 98 * decompression (pre-boot code). <linux/decompress/mm.h> will define
107 # include <linux/decompress/mm.h>
149 * <linux/decompress/mm.h>. vfree() needs to support vfree(NULL)
244 * This function implements the API defined in <linux/decompress/generic.h>.
394 * This macro is used by architecture-specific files to decompress
397 #define decompress unxz macro
  /frameworks/base/core/java/android/view/inputmethod/
InputMethodSubtypeArray.java 125 * <p>This methods may take a bit additional time to decompress data lazily when called
140 decompress(mCompressedData, mDecompressedSize);
147 Slog.e(TAG, "Failed to decompress data. Returns null as fallback.");
212 private static byte[] decompress(final byte[] data, final int expectedSize) { method in class:InputMethodSubtypeArray
230 Slog.e(TAG, "Failed to decompress the data.", e);
  /external/brotli/java/org/brotli/dec/
BrotliInputStream.java 161 Decode.decompress(state);
  /external/ppp/pppd/include/net/
ppp-comp.h 85 /* Decompress a packet. */
86 int (*decompress) __P((void *state, PACKETPTR mp, member in struct:compressor
96 * Return values for decompress routine.
  /external/sonivox/jet_tools/JetCreator/
img_Copy.py 9 return zlib.decompress(
img_Find.py 9 return zlib.decompress(

Completed in 2258 milliseconds

1 23 4 5 6 7 8 9