Searched refs:UncompressedSize64 (Results 1 – 12 of 12) sorted by relevance
/build/soong/third_party/zip/ |
D | struct.go | 87 UncompressedSize64 uint64 member 105 if fi.fh.UncompressedSize64 > 0 { 106 return int64(fi.fh.UncompressedSize64) 124 UncompressedSize64: uint64(size), 128 if fh.UncompressedSize64 > uint32max { 131 fh.UncompressedSize = uint32(fh.UncompressedSize64) 238 return fh.CompressedSize64 >= uint32max || fh.UncompressedSize64 >= uint32max
|
D | android.go | 53 fh.UncompressedSize = uint32(fh.UncompressedSize64) 78 b.uint64(fh.UncompressedSize64) 207 fh.UncompressedSize = uint32(fh.UncompressedSize64) 226 b.uint64(fh.UncompressedSize64)
|
D | writer.go | 93 eb.uint64(h.UncompressedSize64) 291 uncompressedSize := uint32(h.UncompressedSize64) 296 if h.CompressedSize64 > uint32max || h.UncompressedSize64 > uint32max { 306 eb.uint64(h.UncompressedSize64) 378 fh.UncompressedSize64 = uint64(w.rawCount.count) 386 fh.UncompressedSize = uint32(fh.UncompressedSize64) 407 b.uint64(fh.UncompressedSize64)
|
D | android_test.go | 89 UncompressedSize64: size, 139 if g, w := toZipReader.File[0].UncompressedSize64, uint64(size); g != w { 156 UncompressedSize64: size,
|
D | reader_test.go | 386 size = f.UncompressedSize64 387 } else if size != f.UncompressedSize64 { 388 …v: UncompressedSize=%#x does not match UncompressedSize64=%#x", f.Name, size, f.UncompressedSize64) 776 if f.UncompressedSize64 < 1e6 { 781 if err == nil && uint64(n) != f.UncompressedSize64 { 782 t.Errorf("file %d: bad size: copied=%d; want=%d", i, n, f.UncompressedSize64)
|
D | reader.go | 201 if r.nread != r.f.UncompressedSize64 { 268 f.UncompressedSize64 = uint64(f.UncompressedSize) 310 f.UncompressedSize64 = eb.uint64()
|
/build/soong/zip/ |
D | zip_test.go | 64 UncompressedSize64: uint64(len(contents)), 74 UncompressedSize64: uint64(len(contents)), 84 UncompressedSize64: uint64(len(to)), 94 UncompressedSize64: 0, 490 if uint64(len) != f.UncompressedSize64 { 491 t.Errorf("incorrect length for %s, want %d got %d", f.Name, f.UncompressedSize64, len) 514 if want.UncompressedSize64 != got.UncompressedSize64 { 516 want.UncompressedSize64, got.UncompressedSize64) 589 if uint64(len) != f.UncompressedSize64 { 590 t.Errorf("incorrect length for %s, want %d got %d", f.Name, f.UncompressedSize64, len)
|
D | zip.go | 530 op.fh.CompressedSize64 = op.fh.UncompressedSize64 656 UncompressedSize64: uint64(fileSize), 725 ze.allocatedSize = int64(header.UncompressedSize64) 729 fileSize := int64(header.UncompressedSize64) 894 if uint64(compressed.Len()) < ze.fh.UncompressedSize64 { 987 fileHeader.UncompressedSize64 = uint64(len(dest))
|
/build/soong/cmd/diff_target_files/ |
D | compare_test.go | 30 UncompressedSize64: size,
|
/build/soong/jar/ |
D | jar.go | 96 UncompressedSize64: uint64(len(b)),
|
/build/soong/cmd/zip2zip/ |
D | zip2zip.go | 224 fh.CompressedSize64 = fh.UncompressedSize64
|
/build/soong/cmd/merge_zips/ |
D | merge_zips_test.go | 331 ret += fmt.Sprintf("%v: %v %v %08x\n", f.Name, f.Mode(), f.UncompressedSize64, f.CRC32)
|