HomeSort by relevance Sort by last modified time
    Searched defs:convert32 (Results 1 - 3 of 3) sorted by null

  /external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/dump/
DumpArchiveUtilTest.java 37 public void convert32() { method in class:DumpArchiveUtilTest
39 DumpArchiveUtil.convert32(new byte[] {
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/dump/
DumpArchiveUtil.java 46 calc += DumpArchiveUtil.convert32(buffer, 4 * i);
50 (calc - DumpArchiveUtil.convert32(buffer, 28));
60 final int magic = convert32(buffer, 24);
67 final int checksum = convert32(buffer, 28);
78 return convert32(buffer, 20);
99 public static final int convert32(final byte[] buffer, final int offset) { method in class:DumpArchiveUtil
DumpArchiveEntry.java 444 header.type = DumpArchiveConstants.SEGMENT_TYPE.find(DumpArchiveUtil.convert32(
447 //header.dumpDate = new Date(1000L * DumpArchiveUtil.convert32(buffer, 4));
448 //header.previousDumpDate = new Date(1000L * DumpArchiveUtil.convert32(
450 header.volume = DumpArchiveUtil.convert32(buffer, 12);
451 //header.tapea = DumpArchiveUtil.convert32(buffer, 16);
452 entry.ino = header.ino = DumpArchiveUtil.convert32(buffer, 20);
454 //header.magic = DumpArchiveUtil.convert32(buffer, 24);
455 //header.checksum = DumpArchiveUtil.convert32(buffer, 28);
468 long t = (1000L * DumpArchiveUtil.convert32(buffer, 48)) +
469 (DumpArchiveUtil.convert32(buffer, 52) / 1000)
    [all...]

Completed in 407 milliseconds