Home
last modified time | relevance | path

Searched refs:UncompressedSize64 (Results 1 – 16 of 16) sorted by relevance

/build/soong/cmd/diff_target_files/
Dcompare.go72 …buf, " %v (%v bytes -> %v bytes)\n", f[0].Name, f[0].UncompressedSize64, f[1].UncompressedSize64
73 sizeChange += int64(f[1].UncompressedSize64) - int64(f[0].UncompressedSize64)
80 must(fmt.Fprintf(buf, " - %v (%v bytes)\n", f.Name, f.UncompressedSize64))
81 sizeChange -= int64(f.UncompressedSize64)
88 must(fmt.Fprintf(buf, " + %v (%v bytes)\n", f.Name, f.UncompressedSize64))
89 sizeChange += int64(f.UncompressedSize64)
108 if a[i].UncompressedSize64 != b[j].UncompressedSize64 || a[i].CRC32 != b[j].CRC32 {
Dcompare_test.go30 UncompressedSize64: size,
/build/soong/third_party/zip/
Dstruct.go87 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
Dandroid.go53 fh.UncompressedSize = uint32(fh.UncompressedSize64)
78 b.uint64(fh.UncompressedSize64)
207 fh.UncompressedSize = uint32(fh.UncompressedSize64)
226 b.uint64(fh.UncompressedSize64)
Dwriter.go93 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)
Dandroid_test.go89 UncompressedSize64: size,
139 if g, w := toZipReader.File[0].UncompressedSize64, uint64(size); g != w {
156 UncompressedSize64: size,
Dzip_test.go78 if got, want := fh2.UncompressedSize64, wantUncompressedSize64; got != want {
106 UncompressedSize64: 9876543210,
110 testHeaderRoundTrip(fh, uint32max, fh.UncompressedSize64, t)
332 if got, want := f0.UncompressedSize64, uint64(size)+uint64(len(end)); got != want {
389 if zh.Name != h.Name || zh.Method != h.Method || zh.UncompressedSize64 != uint64(len("hi")) {
390 …t.Fatalf("got %q/%d/%d expected %q/%d/%d", zh.Name, zh.Method, zh.UncompressedSize64, h.Name, h.Me…
Dreader_test.go386 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)
Dreader.go201 if r.nread != r.f.UncompressedSize64 {
268 f.UncompressedSize64 = uint64(f.UncompressedSize)
310 f.UncompressedSize64 = eb.uint64()
/build/soong/zip/
Dzip_test.go64 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)
Dzip.go530 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/jar/
Djar.go96 UncompressedSize64: uint64(len(b)),
/build/soong/cmd/merge_zips/
Dmerge_zips.go74 size: fi.UncompressedSize64,
212 UncompressedSize64: uint64(len(buf)),
226 UncompressedSize64: uint64(len(emptyBuf)),
Dmerge_zips_test.go331 ret += fmt.Sprintf("%v: %v %v %08x\n", f.Name, f.Mode(), f.UncompressedSize64, f.CRC32)
/build/soong/cmd/zip2zip/
Dzip2zip.go224 fh.CompressedSize64 = fh.UncompressedSize64
/build/soong/cmd/extract_apks/
Dmain.go77 bytes := make([]byte, tocFile.FileHeader.UncompressedSize64)