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

1 2 3 4 5

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/zlib/
minigzip.py 49 def decompress (input, output): function
85 decompdata = decompobj.decompress(data)
127 decompress(input, output)
  /external/jsoncpp/devtools/
tarball.py 44 def decompress( tarball_path, base_dir ): function
45 """Decompress the gzipped tarball into directory base_dir.
  /external/python/cpython2/Demo/zlib/
minigzip.py 49 def decompress (input, output): function
85 decompdata = decompobj.decompress(data)
127 decompress(input, output)
  /external/brotli/python/
brotli.py 6 """Functions to compress and decompress data using the Brotli library."""
52 # Decompress a compressed byte string.
53 decompress = _brotli.decompress variable
  /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/scapy/scapy/layers/tls/crypto/
compression.py 49 def decompress(self, s): member in class:Comp_NULL
64 def decompress(self, s): member in class:Comp_Deflate
65 return self.decompress_state.decompress(s)
83 def decompress(self, s): member in class:Comp_LZS
  /prebuilts/go/darwin-x86/src/debug/elf/
file_test.go 222 if r, err = decompress(tt.file); err == nil {
277 // provide. Decompress the file to a bytes.Reader.
278 func decompress(gz string) (io.ReaderAt, error) { func
    [all...]
  /prebuilts/go/linux-x86/src/debug/elf/
file_test.go 222 if r, err = decompress(tt.file); err == nil {
277 // provide. Decompress the file to a bytes.Reader.
278 func decompress(gz string) (io.ReaderAt, error) { func
    [all...]
  /external/elfutils/libdwfl/
open.c 45 decompress (int fd __attribute__ ((unused)), Elf **elf) function
104 error = decompress (fd, elfp);
  /external/bzip2/
dlltest.c 71 int decompress = 0; local
90 decompress = 1;
119 if(decompress){
  /external/python/cpython3/Lib/
bz2.py 8 "open", "compress", "decompress"]
341 def decompress(data): function
342 """Decompress a block of data.
350 res = decomp.decompress(data)
lzma.py 21 "open", "compress", "decompress", "is_check_supported",
322 def decompress(data, format=FORMAT_AUTO, memlimit=None, filters=None): function
323 """Decompress a block of data.
334 res = decomp.decompress(data)
gzip.py 14 __all__ = ["GzipFile", "open", "compress", "decompress"]
441 # size=0 is special because decompress(max_length=0) is not supported
446 # call to decompress() may not return
471 uncompress = self._decompressor.decompress(buf, size)
527 def decompress(data): function
528 """Decompress a gzip compressed string in one shot.
540 decompress = args and args[0] == "-d"
541 if decompress:
546 if decompress:
  /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/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
  /external/brotli/java/org/brotli/dec/
DecodeTest.java 32 private byte[] decompress(byte[] data, boolean byByte) throws IOException { method in class:DecodeTest
63 byte[] actual = decompress(compressedBytes, false);
65 byte[] actualByByte = decompress(compressedBytes, true);
  /external/brotli/java/org/brotli/wrapper/dec/
Decoder.java 121 public static byte[] decompress(byte[] data) throws IOException { method in class:Decoder
  /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/android_icu4j/src/main/tests/android/icu/dev/test/compression/
DecompressionTest.java 39 /** Decompress the two segments */
48 count1 = myDecompressor.decompress(segment1, 0, segment1.length,
60 count2 = myDecompressor.decompress(segment2, 0, segment2.length,
131 * public int decompress(***
143 ud.decompress(null, 0, 0, null, null, 4, 0);
144 errln("UnicodeDecompressor.decompress was suppose to return an exception.");
148 ud.decompress(null, 0, 0, null, charBufferBlank, 4, 0);
149 errln("UnicodeDecompressor.decompress was suppose to return an exception.");
153 ud.decompress(null, 0, 0, null, charBuffer1, 4, 0);
154 errln("UnicodeDecompressor.decompress was suppose to return an exception.")
    [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...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/compression/
DecompressionTest.java 36 /** Decompress the two segments */
45 count1 = myDecompressor.decompress(segment1, 0, segment1.length,
57 count2 = myDecompressor.decompress(segment2, 0, segment2.length,
128 * public int decompress(***
140 ud.decompress(null, 0, 0, null, null, 4, 0);
141 errln("UnicodeDecompressor.decompress was suppose to return an exception.");
145 ud.decompress(null, 0, 0, null, charBufferBlank, 4, 0);
146 errln("UnicodeDecompressor.decompress was suppose to return an exception.");
150 ud.decompress(null, 0, 0, null, charBuffer1, 4, 0);
151 errln("UnicodeDecompressor.decompress was suppose to return an exception.")
    [all...]
  /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);
  /toolchain/binutils/binutils-2.27/bfd/
compress.c 83 bfd_boolean decompress; local
100 /* We shouldn't decompress unsupported compressed section. */
130 decompress = TRUE;
135 decompress = FALSE;
145 if (decompress)
213 Read all data from @var{section} in BFD @var{abfd}, decompress
339 not need to decompress again.
385 /* Don't decompress the section. */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_bz2.py 28 def decompress(self, data): member in class:BaseTest
38 ret = bz2.decompress(data)
43 def decompress(self, data): member in class:BaseTest
44 return bz2.decompress(data)
161 self.assertEqual(self.decompress(f.read()), self.TEXT)
174 self.assertEqual(self.decompress(f.read()), self.TEXT)
185 self.assertEqual(self.decompress(f.read()), self.TEXT)
333 self.assertEqual(self.decompress(data), self.TEXT)
347 self.assertEqual(self.decompress(data), self.TEXT)
354 # "Test BZ2Decompressor.decompress()"
    [all...]

Completed in 1143 milliseconds

1 2 3 4 5