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

  /external/llvm/lib/Support/
Compression.cpp 52 unsigned long CompressedSize = ::compressBound(InputBuffer.size());
53 CompressedBuffer.resize(CompressedSize);
56 (Bytef *)CompressedBuffer.data(), &CompressedSize,
60 __msan_unpoison(CompressedBuffer.data(), CompressedSize);
61 CompressedBuffer.resize(CompressedSize);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
Compression.cpp 63 unsigned long CompressedSize = ::compressBound(InputBuffer.size());
64 CompressedBuffer.resize(CompressedSize);
66 int Res = ::compress2((Bytef *)CompressedBuffer.data(), &CompressedSize,
71 __msan_unpoison(CompressedBuffer.data(), CompressedSize);
72 CompressedBuffer.resize(CompressedSize);
  /build/soong/third_party/zip/
android.go 71 b.uint32(fh.CompressedSize)
193 fh.CompressedSize = uint32max
197 fh.CompressedSize = uint32(fh.CompressedSize64)
219 b.uint32(fh.CompressedSize)
writer.go 98 b.uint32(h.CompressedSize)
282 compressedSize := uint32(h.CompressedSize64)
283 if compressedSize == 0 {
284 compressedSize = h.CompressedSize
292 b.uint32(compressedSize)
362 fh.CompressedSize = uint32max
366 fh.CompressedSize = uint32(fh.CompressedSize64)
390 b.uint32(fh.CompressedSize)
reader.go 265 f.CompressedSize = b.uint32()
267 f.CompressedSize64 = uint64(f.CompressedSize)
284 needCSize := f.CompressedSize == ^uint32(0)
struct.go 84 CompressedSize uint32 // Deprecated: Use CompressedSize64 instead.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseUefiDecompressLib/
BaseUefiDecompressLib.c 718 UINT32 CompressedSize;
730 CopyMem (&CompressedSize, Source, sizeof (UINT32));
733 if (SourceSize < (CompressedSize + 8)) {
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseUefiDecompressLib/
BaseUefiDecompressLib.c 686 UINT32 CompressedSize;
696 CompressedSize = ReadUnaligned32 ((UINT32 *)Source);
697 if (SourceSize < (CompressedSize + 8)) {
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
BaseUefiTianoCustomDecompressLib.c 680 UINT32 CompressedSize;
690 CompressedSize = ReadUnaligned32 ((UINT32 *)Source);
691 if (SourceSize < (CompressedSize + 8)) {
  /external/llvm/lib/ProfileData/
InstrProf.cpp 304 uint64_t CompressedSize = decodeULEB128(P, &N);
306 bool isCompressed = (CompressedSize != 0);
311 CompressedSize);
315 P += CompressedSize;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/
InstrProf.cpp 444 uint64_t CompressedSize = decodeULEB128(P, &N);
446 bool isCompressed = (CompressedSize != 0);
454 CompressedSize);
461 P += CompressedSize;
    [all...]
  /external/zlib/src/contrib/minizip/
zip.c 1031 ZPOS64_T CompressedSize = 0;
1041 err = zip64local_putValue(&zi->z_filefunc, zi->filestream, (ZPOS64_T)CompressedSize,8);
    [all...]

Completed in 311 milliseconds