Searched defs:bufLen (Results 1 - 2 of 2) sorted by relevance

/libcore/ojluni/src/main/java/java/util/zip/
H A DInflaterOutputStream.java99 * @param bufLen decompression buffer size
100 * @throws IllegalArgumentException if {@code bufLen} is <= 0
103 public InflaterOutputStream(OutputStream out, Inflater infl, int bufLen) { argument
111 if (bufLen <= 0)
116 buf = new byte[bufLen];
H A DDeflaterInputStream.java100 * @param bufLen compression buffer size
101 * @throws IllegalArgumentException if {@code bufLen} is <= 0
104 public DeflaterInputStream(InputStream in, Deflater defl, int bufLen) { argument
112 if (bufLen < 1)
117 buf = new byte[bufLen];

Completed in 48 milliseconds