HomeSort by: relevance | last modified time | path
    Searched refs:getTypeSize (Results 1 - 25 of 67) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SMTConv.h 326 const uint64_t BitWidth = Ctx.getTypeSize(Ty);
339 return fromCast(Solver, Exp, ToTy, Ctx.getTypeSize(ToTy), FromTy,
340 Ctx.getTypeSize(FromTy));
498 Solver->mkBitvector(llvm::APSInt("0"), Ctx.getTypeSize(Ty)),
561 NewInt = Int.extend(Ctx.getTypeSize(Ctx.BoolTy));
598 uint64_t LBitWidth = Ctx.getTypeSize(LTy);
599 uint64_t RBitWidth = Ctx.getTypeSize(RTy);
621 assert((Ctx.getTypeSize(LTy) == Ctx.getTypeSize(RTy)) &&
651 uint64_t LBitWidth = Ctx.getTypeSize(LTy)
    [all...]
BasicValueFactory.h 219 return getValue(0, Ctx.getTypeSize(T), true);
223 return getValue(0, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
227 return getValue(X, Ctx.getTypeSize(Ctx.VoidPtrTy), isUnsigned);
SMTConstraintManager.h 118 llvm::APSInt Value(Ctx.getTypeSize(Ty),
SValBuilder.h 103 ArrayIndexWidth(context.getTypeSize(ArrayIndexTy)) {}
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.cpp 60 const uint64_t Size = Context.getTypeSize(Ty);
108 if (EIT->getNumBits() < getContext().getTypeSize(getContext().IntTy))
633 if (Found && Context.getTypeSize(Found) != Context.getTypeSize(T))
737 Context.getTypeSize(Context.getTargetInfo().hasInt128Type()
759 getContext().getTypeSize(getContext().getTargetInfo().hasInt128Type()
1058 unsigned VecSize = Context.getTypeSize(VT);
1302 uint64_t RetWidth = CGF.getContext().getTypeSize(ReturnSlot.getType());
1333 uint64_t Size = Context.getTypeSize(Ty);
1392 uint64_t Size = Context.getTypeSize(Ty)
    [all...]
CodeGenTypes.cpp 105 (unsigned)Context.getTypeSize(T));
494 static_cast<unsigned>(Context.getTypeSize(T)));
771 uint64_t valueSize = Context.getTypeSize(valueType);
772 uint64_t atomicSize = Context.getTypeSize(Ty);
806 return Context.getTypeSize(type) != Context.getTypeSize(type->getValueType());
CGDebugInfo.cpp 682 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
770 unsigned SEW = CGM.getContext().getTypeSize(Info.ElementType);
910 uint64_t Size = CGM.getContext().getTypeSize(BT);
925 return DBuilder.createBasicType(Name, CGM.getContext().getTypeSize(Ty),
935 uint64_t Size = CGM.getContext().getTypeSize(Ty);
1097 Size = CGM.getContext().getTypeSize(Ty);
1132 // Size is always the size of a pointer. We can't use getTypeSize here
1155 unsigned Size = CGM.getContext().getTypeSize(CGM.getContext().VoidPtrTy);
1185 uint64_t FieldSize = CGM.getContext().getTypeSize(Ty);
1218 uint64_t Size = CGM.getContext().getTypeSize(Ty)
    [all...]
CGAtomic.cpp 77 ValueSizeInBits = C.getTypeSize(ValueTy);
112 ValueSizeInBits = C.getTypeSize(ValueTy);
114 AtomicSizeInBits = C.getTypeSize(AtomicTy);
120 ValueSizeInBits = C.getTypeSize(ValueTy);
125 AtomicSizeInBits = C.getTypeSize(AtomicTy);
1549 if (getContext().getTypeSize(LV.getType()) >
1550 getContext().getTypeSize(getContext().getIntPtrType()))
CGStmt.cpp 2295 unsigned Size = getContext().getTypeSize(OutExpr->getType());
2317 uint64_t InputSize = getContext().getTypeSize(InputTy);
2318 if (getContext().getTypeSize(OutputType) < InputSize) {
2435 if (getContext().getTypeSize(OutputType) >
2436 getContext().getTypeSize(InputTy)) {
2634 unsigned Size = getContext().getTypeSize(ResultRegQualTys[i]);
CGOpenMPRuntime.cpp 832 CGF.getTypeSize(OrigAddresses[N].first.getType().getNonReferenceType()),
850 CGF.getTypeSize(OrigAddresses[N].first.getType().getNonReferenceType());
2018 CGF.Builder.CreateIntCast(CGF.getTypeSize(VarType), CGM.SizeTy,
2488 llvm::Value *BufSize = CGF.getTypeSize(CopyprivateArrayTy);
4147 SizeVal = CGF.getTypeSize(OASE->getBase()->getType()->getPointeeType());
4164 SizeVal = CGF.getTypeSize(Ty);
4264 CGF.getTypeSize(KmpTaskTWithPrivatesQTy);
4400 C.getIntTypeForBitwidth(C.getTypeSize(C.getSizeType()), /*Signed=*/0),
4417 llvm::APInt(C.getTypeSize(C.getSizeType()), NumAffinities), nullptr,
4612 FlagsTy = C.getIntTypeForBitwidth(C.getTypeSize(C.BoolTy), /*Signed=*/false)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ObjCContainersASTChecker.cpp 40 return (ASTC.getTypeSize(T) == PtrWidth);
CStringSyntaxChecker.cpp 202 uint64_t BufferLen = C.getTypeSize(Buffer) / 8;
BasicObjCFoundationChecks.cpp 399 return Ctx.getTypeSize(T);
484 uint64_t PrimitiveTypeSize = Ctx.getTypeSize(T);
CallAndMessageChecker.cpp 696 const uint64_t voidPtrSize = Ctx.getTypeSize(Ctx.VoidPtrTy);
697 const uint64_t returnTypeSize = Ctx.getTypeSize(CanRetTy);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmtAsm.cpp 340 unsigned Size = Context.getTypeSize(OutputExpr->getType());
448 unsigned Size = Context.getTypeSize(Ty);
535 unsigned Size = Context.getTypeSize(Ty);
640 uint64_t OutSize = Context.getTypeSize(OutTy);
641 uint64_t InSize = Context.getTypeSize(InTy);
SemaCast.cpp 2017 if (Context.getTypeSize(DestTy) == Context.getTypeSize(SrcTy)) {
2144 && Self.Context.getTypeSize(DestType) >
2145 Self.Context.getTypeSize(SrcType)) {
2277 if (Self.Context.getTypeSize(DestMemPtr) !=
2278 Self.Context.getTypeSize(SrcMemPtr)) {
2304 if (Self.Context.getTypeSize(SrcType) >
2305 Self.Context.getTypeSize(DestType)) {
2394 if ((Self.Context.getTypeSize(SrcType) >
2395 Self.Context.getTypeSize(DestType)))
    [all...]
Sema.cpp 342 if (Context.getTypeSize(Context.getSizeType()) == 32) {
362 if (Context.getTypeSize(Context.getSizeType()) == 64) {
1197 llvm::APInt One(Context.getTypeSize(Context.getSizeType()), true);
1834 (Ty->isRealFloatingType() && Context.getTypeSize(Ty) == 128)) &&
1836 (Ty->isIntegerType() && Context.getTypeSize(Ty) == 128 &&
1840 << static_cast<unsigned>(Context.getTypeSize(Ty)) << Ty
SemaPseudoObject.cpp 507 llvm::APInt oneV(S.Context.getTypeSize(S.Context.IntTy), 1);
533 ? S.Context.getTypeSize(resultType) >=
534 S.Context.getTypeSize(S.Context.IntTy)
SemaExpr.cpp 3883 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() &&
6546 Context.getTypeSize(DestTy) != Context.getTypeSize(SrcTy))
7368 // ASTContext::getTypeSize will return the size rounded up to a
7371 uint64_t SrcEltSize = Context.getTypeSize(SrcEltTy);
7372 uint64_t DestEltSize = Context.getTypeSize(DestEltTy);
8100 if (S.Context.getTypeSize(CV->getElementType())
8101 != S.Context.getTypeSize(ResTy)) {
8156 if (S.Context.getTypeSize(CVE) != S.Context.getTypeSize(RVE))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
SValBuilder.cpp 509 if (getContext().getTypeSize(castTy) >= getContext().getTypeSize(originalTy))
517 APSIntType ToType(getContext().getTypeSize(castTy),
  /src/external/apache2/llvm/dist/clang/lib/Edit/
RewriteObjCFoundationAPI.cpp 995 uint64_t FinalTySize = Ctx.getTypeSize(FinalTy);
996 uint64_t OrigTySize = Ctx.getTypeSize(OrigTy);
1019 OrigTySize >= Ctx.getTypeSize(Ctx.IntTy))
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 1752 MinWidth <= getTypeSize(cast<ConstantArrayType>(arrayType)))
1761 uint64_t TypeSize = getTypeSize(T.getTypePtr());
2491 return std::max(ABIAlign, (unsigned)getTypeSize(T));
2506 uint64_t TypeSize = getTypeSize(T.getTypePtr());
2749 StructSize.getValue() == static_cast<int64_t>(getTypeSize(Ty));
3872 uint64_t EltTySize = getTypeSize(EltTy);
3890 uint64_t EltTySize = getTypeSize(EltTy);
6361 uint64_t IntSize = getTypeSize(IntTy);
6414 uint64_t FromSize = getTypeSize(BT);
6418 uint64_t ToSize = getTypeSize(PromoteTypes[Idx])
    [all...]
Mangle.cpp 231 llvm::alignTo(ASTContext.getTypeSize(AT), TI.getPointerWidth(0)) /
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFContext.cpp 1072 static Optional<uint64_t> getTypeSize(DWARFDie Type, uint64_t PointerSize) {
1093 return getTypeSize(BaseType, PointerSize);
1100 Optional<uint64_t> BaseSize = getTypeSize(BaseType, PointerSize);
1189 Local.Size = getTypeSize(Type, getCUAddrSize());
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
ASTContext.h 2164 uint64_t getTypeSize(QualType T) const { return getTypeInfo(T).Width; }
2165 uint64_t getTypeSize(const Type *T) const { return getTypeInfo(T).Width; }
2169 return getTypeSize(CharTy);

Completed in 179 milliseconds

1 2 3