Home | History | Annotate | Download | only in zip

Lines Matching defs:inf

47     protected Inflater inf;
79 * @param inf the decompressor ("inflater")
83 public InflaterInputStream(InputStream in, Inflater inf, int size) {
85 if (in == null || inf == null) {
90 this.inf = inf;
98 * @param inf the decompressor ("inflater")
100 public InflaterInputStream(InputStream in, Inflater inf) {
101 this(in, inf, 512);
157 while ((n = inf.inflate(b, off, len)) == 0) {
158 if (inf.finished() || inf.needsDictionary()) {
162 if (inf.needsInput()) {
168 if (inf.finished()) {
238 inf.end();
254 inf.setInput(buf, 0, len);