Home
last modified time | relevance | path

Searched refs:IntSize (Results 1 – 6 of 6) sorted by relevance

/minix3/external/bsd/llvm/dist/clang/lib/AST/
H A DMicrosoftCXXABI.cpp197 unsigned IntSize = Target.getIntWidth(); in getMemberPointerWidthAndAlign() local
198 uint64_t Width = Ptrs * PtrSize + Ints * IntSize; in getMemberPointerWidthAndAlign()
H A DASTContext.cpp4488 uint64_t IntSize = getTypeSize(IntTy); in isPromotableBitField() local
4503 if (BitWidth < IntSize) in isPromotableBitField()
4506 if (BitWidth == IntSize) in isPromotableBitField()
4556 uint64_t IntSize = getIntWidth(IntTy); in getPromotedIntegerType() local
4557 assert(Promotable->isUnsignedIntegerType() && PromotableSize <= IntSize); in getPromotedIntegerType()
4558 return (PromotableSize != IntSize) ? IntTy : UnsignedIntTy; in getPromotedIntegerType()
/minix3/external/bsd/llvm/dist/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp3004 unsigned IntSize = in SynthMessageExpr() local
3007 llvm::APInt(IntSize, 8), in SynthMessageExpr()
4160 unsigned IntSize = in SynthesizeByrefCopyDestroyHelper() local
4165 unsigned offset = (VoidPtrSize*4 + IntSize + IntSize)/Context->getCharWidth(); in SynthesizeByrefCopyDestroyHelper()
4560 unsigned IntSize = in SynthBlockInitExpr() local
4562 Expr *FlagExp = IntegerLiteral::Create(*Context, llvm::APInt(IntSize, flag), in SynthBlockInitExpr()
H A DRewriteModernObjC.cpp2625 unsigned IntSize = in RewriteObjCBoolLiteralExpr() local
2629 llvm::APInt(IntSize, Exp->getValue()), in RewriteObjCBoolLiteralExpr()
5088 unsigned IntSize = in SynthesizeByrefCopyDestroyHelper() local
5093 unsigned offset = (VoidPtrSize*4 + IntSize + IntSize)/Context->getCharWidth(); in SynthesizeByrefCopyDestroyHelper()
5505 unsigned IntSize = in SynthBlockInitExpr() local
5507 Expr *FlagExp = IntegerLiteral::Create(*Context, llvm::APInt(IntSize, flag), in SynthBlockInitExpr()
/minix3/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DMicrosoftCXXABI.cpp823 CharUnits IntSize = getContext().getTypeSizeInChars(getContext().IntTy); in GetVirtualBaseClassOffset() local
825 IntSize * in GetVirtualBaseClassOffset()
1712 int32_t IntSize = in performReturnAdjustment() local
1717 IntSize * RA.Virtual.Microsoft.VBIndex, &VBPtr); in performReturnAdjustment()
/minix3/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaExpr.cpp3072 unsigned IntSize = Context.getTargetInfo().getIntWidth(); in ActOnIntegerConstant() local
3073 return IntegerLiteral::Create(Context, llvm::APInt(IntSize, Val), in ActOnIntegerConstant()
3334 unsigned IntSize = Context.getTargetInfo().getIntWidth(); in ActOnNumericConstant() local
3337 if (ResultVal.isIntN(IntSize)) { in ActOnNumericConstant()
3339 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) in ActOnNumericConstant()
3343 Width = IntSize; in ActOnNumericConstant()