HomeSort by relevance Sort by last modified time
    Searched defs:gunzip (Results 1 - 8 of 8) sorted by null

  /prebuilts/go/darwin-x86/test/bench/go1/
gzip_test.go 5 // This benchmark tests gzip and gunzip performance.
40 func gunzip() { func
61 gunzip()
  /prebuilts/go/linux-x86/test/bench/go1/
gzip_test.go 5 // This benchmark tests gzip and gunzip performance.
40 func gunzip() { func
61 gunzip()
  /external/okhttp/okio/okio/src/test/java/okio/
GzipSinkTest.java 34 Buffer inflated = gunzip(sink);
53 private Buffer gunzip(Buffer gzipped) throws IOException { method in class:GzipSinkTest
GzipSourceTest.java 30 @Test public void gunzip() throws Exception { method in class:GzipSourceTest
100 Buffer gunzipped = gunzip(gzipped);
116 gunzip(gzipped);
131 gunzip(gzipped);
146 gunzip(gzipped);
202 private Buffer gunzip(Buffer gzipped) throws IOException { method in class:GzipSourceTest
  /external/zlib/src/examples/
gun.c 1 /* gun.c -- simple gunzip to give an example of the use of inflateBack()
49 Like gunzip and uncompress, the file attributes of the orignal compressed
53 On my Mac OS X PowerPC G4, gun is almost twice as fast as gunzip (version
545 gunzip() returns 1 if there is an out-of-memory error or an unexpected
548 local int gunzip(z_stream *strm, char *inname, char *outname, int test) function
692 ret = gunzip(&strm, *argv, outname, test);
697 ret = gunzip(&strm, NULL, NULL, test);
  /libcore/luni/src/test/java/libcore/java/util/zip/
GZIPInputStreamTest.java 78 assertEquals("Hello World", new String(gunzip(HELLO_WORLD_GZIPPED), "UTF-8"));
82 assertEquals("Hello World", new String(gunzip(HELLO_WORLD_GZIPPED_WITH_HEADER_CRC), "UTF-8"));
86 assertEquals("Hello World", new String(gunzip(HELLO_WORLD_GZIPPED_WITH_EXTRA), "UTF-8"));
92 assertTrue(Arrays.equals(data, gunzip(GZIPOutputStreamTest.gzip(data))));
119 assertEquals("Hello WorldHello World", new String(gunzip(data), "UTF-8"));
128 assertEquals("Hello World", new String(gunzip(data), "UTF-8"));
147 byte[] unzipped = gunzip(data);
156 gunzip(data);
241 public static byte[] gunzip(byte[] bytes) throws IOException { method in class:GZIPInputStreamTest
  /external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
OkApacheClientTest.java 204 assertEquals(text, gunzip(entity));
231 assertEquals(text, gunzip(entity));
269 private static String gunzip(HttpEntity body) throws IOException { method in class:OkApacheClientTest
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
CarrierKeyDownloadManager.java 369 GZIPInputStream gunzip = new GZIPInputStream(is); local
370 BufferedReader reader = new BufferedReader(new InputStreamReader(gunzip, UTF_8));

Completed in 467 milliseconds