HomeSort by relevance Sort by last modified time
    Searched refs:CompressedSize (Results 1 - 16 of 16) 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);
  /build/soong/third_party/zip/
android.go 72 b.uint32(fh.CompressedSize)
174 fh.CompressedSize = uint32max
178 fh.CompressedSize = uint32(fh.CompressedSize64)
200 b.uint32(fh.CompressedSize)
writer.go 98 b.uint32(h.CompressedSize)
325 fh.CompressedSize = uint32max
329 fh.CompressedSize = uint32(fh.CompressedSize64)
351 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)) {
  /prebuilts/go/darwin-x86/src/archive/zip/
writer.go 102 b.uint32(h.CompressedSize)
334 fh.CompressedSize = uint32max
338 fh.CompressedSize = uint32(fh.CompressedSize64)
360 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.
  /prebuilts/go/linux-x86/src/archive/zip/
writer.go 102 b.uint32(h.CompressedSize)
334 fh.CompressedSize = uint32max
338 fh.CompressedSize = uint32(fh.CompressedSize64)
360 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.
  /external/llvm/lib/ProfileData/
InstrProf.cpp 304 uint64_t CompressedSize = decodeULEB128(P, &N);
306 bool isCompressed = (CompressedSize != 0);
311 CompressedSize);
315 P += CompressedSize;
  /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 232 milliseconds