Home
last modified time | relevance | path

Searched refs:uint32max (Results 1 – 6 of 6) sorted by relevance

/build/soong/third_party/zip/
Dwriter.go81 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 {
169 if size > uint32max {
170 size = uint32max
172 if offset > uint32max {
173 offset = uint32max
[all …]
Dstruct.go62 uint32max = (1 << 32) - 1 const
128 if fh.UncompressedSize64 > uint32max {
129 fh.UncompressedSize = uint32max
238 return fh.CompressedSize64 >= uint32max || fh.UncompressedSize64 >= uint32max
Dandroid_test.go83 const size = uint32max + 1
150 const size = uint32max + 1
199 if g, w := d.directoryOffset, uint64(uint32max); g != w {
221 if g, w := d.directoryOffset, uint64(uint32max); g <= w {
Dandroid.go207 fh.CompressedSize = uint32max
208 fh.UncompressedSize = uint32max
Dzip_test.go110 testHeaderRoundTrip(fh, uint32max, fh.UncompressedSize64, t)
327 if got, want := f0.UncompressedSize, uint32(uint32max); got != want {
Dreader_test.go385 if size == uint32max {