Home | History | Annotate | Download | only in zip

Lines Matching defs:deflate

54  *     int compressedDataLength = compresser.deflate(output);
99 * Compression method for the deflate algorithm (the only one currently
144 * @see Deflater#deflate(byte[], int, int, int)
153 * @see Deflater#deflate(byte[], int, int, int)
163 * @see Deflater#deflate(byte[], int, int, int)
276 * of {@code deflate} will compress the input available so far with
305 * of {@code deflate} will compress the input available so far
365 * An invocation of this method of the form {@code deflater.deflate(b, off, len)}
367 * {@code deflater.deflate(b, off, len, Deflater.NO_FLUSH)}.
375 public int deflate(byte[] b, int off, int len) {
376 return deflate(b, off, len, NO_FLUSH);
386 * An invocation of this method of the form {@code deflater.deflate(b)}
388 * {@code deflater.deflate(b, 0, b.length, Deflater.NO_FLUSH)}.
394 public int deflate(byte[] b) {
395 return deflate(b, 0, b.length, NO_FLUSH);
442 public int deflate(byte[] b, int off, int len, int flush) {