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

  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Compression.cpp 77 size_t &UncompressedSize) {
79 ::uncompress((Bytef *)UncompressedBuffer, (uLongf *)&UncompressedSize,
83 __msan_unpoison(UncompressedBuffer, UncompressedSize);
89 size_t UncompressedSize) {
90 UncompressedBuffer.resize(UncompressedSize);
92 uncompress(InputBuffer, UncompressedBuffer.data(), UncompressedSize);
93 UncompressedBuffer.resize(UncompressedSize);
109 size_t &UncompressedSize) {
114 size_t UncompressedSize) {
  /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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
Compression.h 39 size_t &UncompressedSize);
43 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 72 b.uint32(fh.UncompressedSize)
194 fh.UncompressedSize = uint32max
198 fh.UncompressedSize = uint32(fh.UncompressedSize64)
220 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)
287 uncompressedSize := uint32(h.UncompressedSize64)
288 if uncompressedSize == 0 {
289 uncompressedSize = h.UncompressedSize
293 b.uint32(uncompressedSize)
363 fh.UncompressedSize = uint32max
367 fh.UncompressedSize = uint32(fh.UncompressedSize64)
391 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/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
InstrProf.cpp 442 uint64_t UncompressedSize = decodeULEB128(P, &N);
457 UncompressedSize)) {
466 StringRef(reinterpret_cast<const char *>(P), UncompressedSize);
467 P += UncompressedSize;
    [all...]
  /build/soong/zip/
zip.go 711 fileSize = int64(header.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 1685 milliseconds