Lines Matching defs:deflate
51 * int compressedDataLength = compresser.deflate(output);
86 * Compression method for the deflate algorithm (the only one currently
131 * @see Deflater#deflate(byte[], int, int, int)
140 * @see Deflater#deflate(byte[], int, int, int)
150 * @see Deflater#deflate(byte[], int, int, int)
341 * An invocation of this method of the form {@code deflater.deflate(b, off, len)}
343 * {@code deflater.deflate(b, off, len, Deflater.NO_FLUSH)}.
351 public int deflate(byte[] b, int off, int len) {
352 return deflate(b, off, len, NO_FLUSH);
362 * An invocation of this method of the form {@code deflater.deflate(b)}
364 * {@code deflater.deflate(b, 0, b.length, Deflater.NO_FLUSH)}.
370 public int deflate(byte[] b) {
371 return deflate(b, 0, b.length, NO_FLUSH);
418 public int deflate(byte[] b, int off, int len, int flush) {