Package org.jnode.fs.ntfs

Examples of org.jnode.fs.ntfs.CompressedDataRun


                        this.numberOfVCNs += uncompressedLength;

                        // Next add in the compressed portion
                        DataRun compressedRun =
                            new DataRun(dataRun.getCluster() + uncompressedLength, remainder, false, 0, vcn);
                        dataruns.add(new CompressedDataRun(compressedRun, compUnitSize));
                        expectingSparseRunNext = true;
                        lastCompressedSize = remainder;

                        this.numberOfVCNs += compUnitSize;
                        vcn += compUnitSize;

                    } else {
                        dataruns.add(dataRun);
                        this.numberOfVCNs += dataRun.getLength();
                        vcn += dataRun.getLength();
                    }

                } else {
                    dataruns.add(new CompressedDataRun(dataRun, compUnitSize));
                    expectingSparseRunNext = true;
                    lastCompressedSize = dataRun.getLength();

                    this.numberOfVCNs += compUnitSize;
                    vcn += compUnitSize;
View Full Code Here

TOP

Related Classes of org.jnode.fs.ntfs.CompressedDataRun

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.