HomeSort by relevance Sort by last modified time
    Searched refs:UncompressedSize (Results 1 - 20 of 20) sorted by null

  /external/llvm/lib/Support/
Compression.cpp 67 size_t UncompressedSize) {
68 UncompressedBuffer.resize(UncompressedSize);
70 (Bytef *)UncompressedBuffer.data(), (uLongf *)&UncompressedSize,
74 __msan_unpoison(UncompressedBuffer.data(), UncompressedSize);
75 UncompressedBuffer.resize(UncompressedSize);
92 size_t UncompressedSize) {
  /external/llvm/include/llvm/Support/
Compression.h 48 size_t UncompressedSize);
  /build/soong/third_party/zip/
zip_test.go 75 if got, want := fh2.UncompressedSize, wantUncompressedSize; got != want {
76 t.Errorf("UncompressedSize: got %d, want %d\n", got, want)
96 UncompressedSize: 987654321,
100 testHeaderRoundTrip(fh, fh.UncompressedSize, uint64(fh.UncompressedSize), t)
327 if got, want := f0.UncompressedSize, uint32(uint32max); got != want {
328 t.Errorf("UncompressedSize %#x, want %#x", got, want)
android.go 73 b.uint32(fh.UncompressedSize)
175 fh.UncompressedSize = uint32max
179 fh.UncompressedSize = uint32(fh.UncompressedSize64)
201 b.uint32(fh.UncompressedSize)
struct.go 85 UncompressedSize uint32 // Deprecated: Use UncompressedSize64 instead.
108 return int64(fi.fh.UncompressedSize)
129 fh.UncompressedSize = uint32max
131 fh.UncompressedSize = uint32(fh.UncompressedSize64)
writer.go 99 b.uint32(h.UncompressedSize)
326 fh.UncompressedSize = uint32max
330 fh.UncompressedSize = uint32(fh.UncompressedSize64)
352 b.uint32(fh.UncompressedSize)
reader.go 266 f.UncompressedSize = b.uint32()
268 f.UncompressedSize64 = uint64(f.UncompressedSize)
283 needUSize := f.UncompressedSize == ^uint32(0)
reader_test.go 384 size := uint64(f.UncompressedSize)
388 t.Errorf("%v: UncompressedSize=%#x does not match UncompressedSize64=%#x", f.Name, size, f.UncompressedSize64)
419 t.Errorf("%v: read %v bytes but f.UncompressedSize == %v", f.Name, g, size)
  /prebuilts/go/darwin-x86/src/archive/zip/
struct.go 85 UncompressedSize uint32 // Deprecated: Use UncompressedSize64 instead.
108 return int64(fi.fh.UncompressedSize)
129 fh.UncompressedSize = uint32max
131 fh.UncompressedSize = uint32(fh.UncompressedSize64)
zip_test.go 78 if got, want := fh2.UncompressedSize, wantUncompressedSize; got != want {
79 t.Errorf("UncompressedSize: got %d, want %d\n", got, want)
99 UncompressedSize: 987654321,
103 testHeaderRoundTrip(fh, fh.UncompressedSize, uint64(fh.UncompressedSize), t)
582 if got, want := f0.UncompressedSize, uint32(uint32max); got != want {
583 t.Errorf("UncompressedSize %#x, want %#x", got, want)
writer.go 103 b.uint32(h.UncompressedSize)
335 fh.UncompressedSize = uint32max
339 fh.UncompressedSize = uint32(fh.UncompressedSize64)
361 b.uint32(fh.UncompressedSize)
reader.go 266 f.UncompressedSize = b.uint32()
268 f.UncompressedSize64 = uint64(f.UncompressedSize)
283 needUSize := f.UncompressedSize == ^uint32(0)
reader_test.go 384 size := uint64(f.UncompressedSize)
388 t.Errorf("%v: UncompressedSize=%#x does not match UncompressedSize64=%#x", f.Name, size, f.UncompressedSize64)
419 t.Errorf("%v: read %v bytes but f.UncompressedSize == %v", f.Name, g, size)
  /prebuilts/go/linux-x86/src/archive/zip/
struct.go 85 UncompressedSize uint32 // Deprecated: Use UncompressedSize64 instead.
108 return int64(fi.fh.UncompressedSize)
129 fh.UncompressedSize = uint32max
131 fh.UncompressedSize = uint32(fh.UncompressedSize64)
zip_test.go 78 if got, want := fh2.UncompressedSize, wantUncompressedSize; got != want {
79 t.Errorf("UncompressedSize: got %d, want %d\n", got, want)
99 UncompressedSize: 987654321,
103 testHeaderRoundTrip(fh, fh.UncompressedSize, uint64(fh.UncompressedSize), t)
582 if got, want := f0.UncompressedSize, uint32(uint32max); got != want {
583 t.Errorf("UncompressedSize %#x, want %#x", got, want)
writer.go 103 b.uint32(h.UncompressedSize)
335 fh.UncompressedSize = uint32max
339 fh.UncompressedSize = uint32(fh.UncompressedSize64)
361 b.uint32(fh.UncompressedSize)
reader.go 266 f.UncompressedSize = b.uint32()
268 f.UncompressedSize64 = uint64(f.UncompressedSize)
283 needUSize := f.UncompressedSize == ^uint32(0)
reader_test.go 384 size := uint64(f.UncompressedSize)
388 t.Errorf("%v: UncompressedSize=%#x does not match UncompressedSize64=%#x", f.Name, size, f.UncompressedSize64)
419 t.Errorf("%v: read %v bytes but f.UncompressedSize == %v", f.Name, g, size)
  /external/llvm/lib/ProfileData/
InstrProf.cpp 302 uint64_t UncompressedSize = decodeULEB128(P, &N);
313 UncompressedSize) != zlib::StatusOK)
320 StringRef(reinterpret_cast<const char *>(P), UncompressedSize);
321 P += UncompressedSize;
  /external/zlib/src/contrib/minizip/
zip.c 1032 ZPOS64_T UncompressedSize = 0;
1040 err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)UncompressedSize,8);
    [all...]

Completed in 433 milliseconds