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

1 2 3

  /external/okhttp/okio/src/test/java/okio/
InflaterSourceTest.java 31 OkBuffer deflated = decodeBase64("eJxzz09RyEjNKVAoLdZRKE9VL0pVyMxTKMlIVchIzEspVshPU0jNS8/MS00tK" local
33 OkBuffer inflated = inflate(deflated);
38 OkBuffer deflated = decodeBase64("eJxzz09RyEjNKVAoLdZRKE9VL0pVyMxTKMlIVchIzEspVshPU0jNS8/MS00tK" local
41 inflate(deflated);
48 OkBuffer deflated = decodeBase64("eJztwTEBAAAAwqCs61/CEL5AAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" local
66 OkBuffer inflated = inflate(deflated);
72 OkBuffer deflated = deflate(original); local
73 OkBuffer inflated = inflate(deflated);
94 /** Returns a new buffer containing the inflated contents of {@code deflated}. */
95 private OkBuffer inflate(OkBuffer deflated) throws IOException
    [all...]
GzipSourceTest.java 33 gzipped.write(deflated);
46 gzipped.write(deflated);
56 gzipped.write(deflated);
66 gzipped.write(deflated);
76 gzipped.write(deflated);
94 gzipped.write(deflated);
112 gzipped.write(deflated);
126 gzipped.write(deflated);
141 gzipped.write(deflated);
193 // Deflated "It's a UNIX system! I know this!
194 private final ByteString deflated = ByteString.decodeHex( field in class:GzipSourceTest
    [all...]
DeflaterSinkTest.java 113 * Uses streaming decompression to inflate {@code deflated}. The input must
116 private OkBuffer inflate(OkBuffer deflated) throws IOException {
117 InputStream deflatedIn = deflated.inputStream();
122 while (!inflater.needsInput() || deflated.size() > 0 || deflatedIn.available() > 0) {
  /external/okhttp/okio/src/main/java/okio/
DeflaterSink.java 80 int deflated = syncFlush local
84 if (deflated > 0) {
85 s.limit += deflated;
86 buffer.size += deflated;
102 // Emit deflated data to the underlying sink. If this fails, we still need
GzipSource.java 39 * by deflated bytes (which we consume via an InflaterSource), followed by a
44 /** The inflater used to decompress the deflated body. */
  /external/chromium_org/net/websockets/
websocket_deflater.h 52 // Returns the current deflated output.
59 // Returns the size of the current deflated output.
  /libcore/luni/src/test/java/libcore/java/util/jar/
StrictJarFileTest.java 73 assertEquals(ZipEntry.DEFLATED, ze.getMethod());
79 assertEquals(ZipEntry.DEFLATED, ze.getMethod());
89 assertEquals(ZipEntry.DEFLATED, ze.getMethod());
102 assertEquals(ZipEntry.DEFLATED, ze.getMethod());
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_msgutil.py 203 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
213 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
239 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
272 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
337 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
364 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
497 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
505 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
527 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS)
544 zlib.Z_DEFAULT_COMPRESSION, zlib.DEFLATED, -zlib.MAX_WBITS
    [all...]
  /system/core/libzipfile/
zipfile.c 75 DEFLATED = 8
123 case DEFLATED:
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 61 * Zip entry state: Deflated.
63 public static final int DEFLATED = 8;
142 * @return the compression method, either {@code DEFLATED}, {@code STORED}
249 * Sets the compression method for this entry to either {@code DEFLATED} or {@code STORED}.
250 * The default is {@code DEFLATED}, which will cause the size, compressed size, and CRC to be
256 * when value is not {@code DEFLATED} or {@code STORED}.
259 if (value != STORED && value != DEFLATED) {
ZipOutputStream.java 63 * Indicates deflated entries.
65 public static final int DEFLATED = 8;
78 private int defaultCompressionMethod = DEFLATED;
136 if (currentEntry.getMethod() == DEFLATED) {
174 if (currentEntry.getMethod() == DEFLATED) {
383 if (method != STORED && method != DEFLATED) {
Inflater.java 121 * Indicates if the {@code Inflater} has inflated the entire deflated
122 * stream. If deflated bytes remain and {@link #needsInput} returns {@code
124 * called after all deflated input is supplied to the {@code Inflater}.
GZIPOutputStream.java 83 out.write(Deflater.DEFLATED);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
InflaterInputStreamTest.java 230 byte[] deflated = { 72, -119, 99, 100, 102, 97, 3, 0, 0, 31, 0, 15, 0 };
231 InputStream in = new InflaterInputStream(new ByteArrayInputStream(deflated));
248 byte[] deflated = { 72, -119, 99, 100, 102, 97, 3, 0, 0, 31, 0, 15, 0 };
249 InputStream in = new InflaterInputStream(new ByteArrayInputStream(deflated));
257 byte[] deflated = { 120, -100, 3, 0, 0, 0, 0, 1 };
258 InputStream in = new InflaterInputStream(new ByteArrayInputStream(deflated));
ZipEntryTest.java 127 java.util.zip.ZipEntry.DEFLATED, zentry.getMethod());
293 zentry.setMethod(ZipEntry.DEFLATED);
295 ZipEntry.DEFLATED, zentry.getMethod());
DeflaterTest.java 455 assertEquals("No dictionary set, no data deflated, getAdler should return 1",
475 // Deflate is finished and there were bytes deflated that did not occur
497 assertEquals("No dictionary set, no data deflated, getAdler should return 1",
516 // Deflate is finished and there were bytes deflated that did not occur
    [all...]
ZipOutputStreamTest.java 161 zos.setMethod(ZipOutputStream.DEFLATED);
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterTest.java 82 assertTrue(totalDeflated > 0); // the deflated form should be non-empty
  /art/runtime/
monitor.cc 178 // Deflated monitors have a null object.
254 // Do this before releasing the lock so that we don't get deflated.
636 VLOG(monitor) << "Deflated " << obj << " to thin lock " << owner->GetTid() << " / "
640 VLOG(monitor) << "Deflated " << obj << " to hash monitor " << monitor->GetHashCode();
644 VLOG(monitor) << "Deflated" << obj << " to empty lock word";
646 // The monitor is deflated, mark the object as nullptr so that we know to delete it during the
    [all...]
monitor.h 251 // Returns how many monitors were deflated.
  /external/zlib/src/contrib/ada/
zlib.ads 66 Deflated : constant Compression_Method;
138 Method : in Compression_Method := Deflated;
312 Deflated : constant Compression_Method := 8;
  /external/zlib/src/as400/
readme.txt 81 trees.c TREES C ZLIB - Output deflated data using Huffman coding
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_zlib.py 85 self.assertRaises(ValueError, zlib.compressobj, 1, zlib.DEFLATED, 0)
88 zlib.compressobj, 1, zlib.DEFLATED, zlib.MAX_WBITS + 1)
180 method = zlib.DEFLATED
387 # This is 'foo', deflated
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_zlib.py 85 self.assertRaises(ValueError, zlib.compressobj, 1, zlib.DEFLATED, 0)
88 zlib.compressobj, 1, zlib.DEFLATED, zlib.MAX_WBITS + 1)
180 method = zlib.DEFLATED
387 # This is 'foo', deflated
  /external/qemu/hw/core/
loader.c 398 #define DEFLATED 8
414 if (src[2] != DEFLATED || (flags & RESERVED) != 0) {

Completed in 524 milliseconds

1 2 3