Searched refs:BUF_SIZE (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/java/java/util/zip/
H A DDeflaterOutputStream.java34 static final int BUF_SIZE = 512; field in class:DeflaterOutputStream
54 this(os, new Deflater(), BUF_SIZE, false);
61 this(os, def, BUF_SIZE, false);
76 this(os, new Deflater(), BUF_SIZE, syncFlush);
85 this(os, def, BUF_SIZE, syncFlush);
H A DGZIPOutputStream.java54 this(os, BUF_SIZE, false);
63 this(os, BUF_SIZE, syncFlush);
H A DInflaterInputStream.java63 static final int BUF_SIZE = 512; field in class:InflaterInputStream
77 this(is, new Inflater(), BUF_SIZE);
90 this(is, inflater, BUF_SIZE);
H A DGZIPInputStream.java88 this(is, BUF_SIZE);
H A DZipInputStream.java98 super(new PushbackInputStream(stream, BUF_SIZE), new Inflater(true));
/libcore/support/src/test/java/tests/support/
H A DSupport_TestWebServer.java274 final static int BUF_SIZE = 2048; field in class:Support_TestWebServer
338 this.buf = new byte[BUF_SIZE];
355 for (int i = 0; i < BUF_SIZE; i++) {

Completed in 66 milliseconds