Searched refs:ObjectSize (Results 1 - 20 of 20) sorted by relevance

/external/llvm/include/llvm/Support/
H A DStreamingMemoryObject.h53 mutable size_t ObjectSize; // 0 if unknown, set if wrapper seen or EOF reached member in class:llvm::StreamingMemoryObject
71 if (ObjectSize == 0)
72 ObjectSize = BytesRead;
76 return !ObjectSize || Pos < ObjectSize;
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DStreamingMemoryObject.h53 mutable size_t ObjectSize; // 0 if unknown, set if wrapper seen or EOF reached member in class:llvm::StreamingMemoryObject
71 if (ObjectSize == 0)
72 ObjectSize = BytesRead;
76 return !ObjectSize || Pos < ObjectSize;
/external/swiftshader/third_party/subzero/pnacl-llvm/include/llvm/Support/
H A DStreamingMemoryObject.h53 mutable size_t ObjectSize; // 0 if unknown, set if wrapper seen or EOF reached member in class:llvm::StreamingMemoryObject
71 if (ObjectSize == 0)
72 ObjectSize = BytesRead;
76 return !ObjectSize || Pos < ObjectSize;
/external/llvm/lib/Support/
H A DStreamingMemoryObject.cpp75 if (ObjectSize && address < ObjectSize) return true;
80 if (ObjectSize) return ObjectSize;
84 return ObjectSize;
90 // Note: For wrapped bitcode files will set ObjectSize after the
91 // first call to fetchToPos. In such cases, ObjectSize can be
94 (ObjectSize && ObjectSize < BytesRead) ? ObjectSize
[all...]
/external/swiftshader/third_party/subzero/pnacl-llvm/
H A DStreamingMemoryObject.cpp75 if (ObjectSize && address < ObjectSize) return true;
80 if (ObjectSize) return ObjectSize;
84 return ObjectSize;
90 // Note: For wrapped bitcode files will set ObjectSize after the
91 // first call to fetchToPos. In such cases, ObjectSize can be
94 (ObjectSize && ObjectSize < BytesRead) ? ObjectSize
[all...]
/external/llvm/unittests/Transforms/IPO/
H A DWholeProgramDevirt.cpp19 VT1.ObjectSize = 8;
24 VT2.ObjectSize = 8;
64 VT1.ObjectSize = 8;
67 VT2.ObjectSize = 8;
/external/llvm/include/llvm/Transforms/IPO/
H A DWholeProgramDevirt.h90 uint64_t ObjectSize = 0; member in struct:llvm::wholeprogramdevirt::VTableBits
148 uint64_t minAfterBytes() const { return TM->Bits->ObjectSize - TM->Offset; }
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DBasicAliasAnalysis.cpp138 uint64_t ObjectSize = getObjectSize(V, TD); local
139 return ObjectSize != AliasAnalysis::UnknownSize && ObjectSize < Size;
146 uint64_t ObjectSize = getObjectSize(V, TD); local
147 return ObjectSize != AliasAnalysis::UnknownSize && ObjectSize == Size;
/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp156 uint64_t ObjectSize = getObjectSize(V, DL, TLI, /*RoundToAlign*/ true);
158 return ObjectSize != MemoryLocation::UnknownSize && ObjectSize < Size;
164 uint64_t ObjectSize = getObjectSize(V, DL, TLI); local
165 return ObjectSize != MemoryLocation::UnknownSize && ObjectSize == Size;
/external/llvm/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp336 uint64_t ObjectSize = getPointerSize(UO2, DL, TLI);
337 if (ObjectSize != MemoryLocation::UnknownSize)
338 if (ObjectSize == Later.Size && ObjectSize >= Earlier.Size)
H A DSeparateConstOffsetFromGEP.cpp1258 uint64_t ObjectSize; local
1259 if (!getObjectSize(NewBase, ObjectSize, DAL, TLI) ||
1260 Offset.ugt(ObjectSize)) {
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DDeadStoreElimination.cpp336 uint64_t ObjectSize = local
338 if (ObjectSize == Later.Size)
/external/ImageMagick/coders/
H A Dmat.c104 unsigned long ObjectSize;
901 MATLAB_HDR.ObjectSize = ReadBlobXXXLong(image);
903 filepos += MATLAB_HDR.ObjectSize + 4 + 4;
909 image2 = DecompressBlock(image,MATLAB_HDR.ObjectSize,clone_info,exception);
102 unsigned long ObjectSize; member in struct:__anon141
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUPromoteAlloca.cpp834 Function *ObjectSize = Intrinsic::getDeclaration(Mod, local
840 = Builder.CreateCall(ObjectSize, { Src, Intr->getOperand(1) });
/external/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp2785 unsigned ObjectSize = 0; // Size of Object in bytes.
2817 // (double)DensityA = A.ObjectNumUses / A.ObjectSize
2818 // (double)DensityB = B.ObjectNumUses / B.ObjectSize
2823 // A.ObjectSize * B.ObjectSize. This ends up factoring away
2827 static_cast<uint64_t>(B.ObjectSize);
2829 static_cast<uint64_t>(A.ObjectSize);
2873 int ObjectSize = MFI->getObjectSize(Obj);
2874 if (ObjectSize == 0)
2876 SortingObjects[Obj].ObjectSize
[all...]
/external/llvm/lib/Transforms/IPO/
H A DWholeProgramDevirt.cpp338 Bits.back().ObjectSize =
/external/clang/lib/CodeGen/
H A DCGExpr.cpp528 SanOpts.has(SanitizerKind::ObjectSize) |
568 if (SanOpts.has(SanitizerKind::ObjectSize) && !Ty->isIncompleteType()) {
582 Checks.push_back(std::make_pair(LargeEnough, SanitizerKind::ObjectSize));
H A DCGBuiltin.cpp417 uint64_t ObjectSize; local
418 if (!E->tryEvaluateObjectSize(ObjectSize, getContext(), Type))
420 return ConstantInt::get(ResType, ObjectSize, /*isSigned=*/true);
/external/libmtp/src/
H A Dptp-pack.c1464 fe->ObjectSize=dtoh32a((unsigned char*)&data[PTP_cfe_ObjectSize]);
1538 fe->ObjectSize=dtoh32a((unsigned char*)&data[PTP_cefe_ObjectSize]);
H A Dptp.h1221 uint32_t ObjectSize; member in struct:_PTPCANONFolderEntry

Completed in 617 milliseconds