Lines Matching defs:in
14 * Decompresses a .xz file in random access mode to standard output.
28 SeekableXZInputStream in = new SeekableXZInputStream(file);
30 System.err.println("Number of XZ Streams: " + in.getStreamCount());
31 System.err.println("Number of XZ Blocks: " + in.getBlockCount());
33 System.err.println("Uncompressed size: " + in.length() + " B");
36 + in.getLargestBlockSize() + " B");
39 int checkTypes = in.getCheckTypes();
46 + in.getIndexMemoryUsage() + " KiB");
51 while ((size = in.read(buf)) != -1)
58 in.seek(pos);
62 size = in.read(buf, 0, size);