Searched refs:uint32max (Results 1 – 6 of 6) sorted by relevance
/build/soong/third_party/zip/ |
D | writer.go | 81 if h.isZip64() || h.offset >= uint32max { 85 b.uint32(uint32max) // compressed size 86 b.uint32(uint32max) // uncompressed size 106 if h.offset > uint32max { 107 b.uint32(uint32max) 130 if records > uint16max || size > uint32max || offset > uint32max { 166 size = uint32max 167 offset = uint32max 296 if h.CompressedSize64 > uint32max || h.UncompressedSize64 > uint32max { 298 compressedSize = uint32max [all …]
|
D | android_test.go | 83 const size = uint32max + 1 150 const size = uint32max + 1 193 if g, w := d.directorySize, uint64(uint32max); g != w { 197 if g, w := d.directoryOffset, uint64(uint32max); g != w { 219 if g, w := d.directoryOffset, uint64(uint32max); g <= w {
|
D | struct.go | 62 uint32max = (1 << 32) - 1 const 128 if fh.UncompressedSize64 > uint32max { 129 fh.UncompressedSize = uint32max 238 return fh.CompressedSize64 >= uint32max || fh.UncompressedSize64 >= uint32max
|
D | android.go | 202 fh.CompressedSize = uint32max 203 fh.UncompressedSize = uint32max
|
D | zip_test.go | 110 testHeaderRoundTrip(fh, uint32max, fh.UncompressedSize64, t) 327 if got, want := f0.UncompressedSize, uint32(uint32max); got != want {
|
D | reader_test.go | 385 if size == uint32max {
|