Searched defs:IntWidth (Results 1 - 3 of 3) sorted by relevance

/external/clang/include/clang/Basic/
H A DTargetInfo.h73 unsigned char IntWidth, IntAlign; member in class:clang::TargetInfo
242 unsigned getIntWidth() const { return IntWidth; }
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2715 unsigned IntWidth = IntTy->getScalarSizeInBits(); local
2721 SMax.convertFromAPInt(APInt::getSignedMaxValue(IntWidth), true,
2733 UMax.convertFromAPInt(APInt::getMaxValue(IntWidth), false,
2746 SMin.convertFromAPInt(APInt::getSignedMinValue(IntWidth), true,
2757 SMin.convertFromAPInt(APInt::getMinValue(IntWidth), true,
/external/clang/lib/Sema/
H A DSemaDecl.cpp10321 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
10322 llvm::APSInt EnumVal(IntWidth);
10808 unsigned IntWidth = Context.getTargetInfo().getIntWidth(); local
10883 } else if (NumNegativeBits <= IntWidth && NumPositiveBits < IntWidth) {
10885 BestWidth = IntWidth;
10899 BestPromotionType = (BestWidth <= IntWidth ? Context.IntTy : BestType);
10912 } else if (NumPositiveBits <= IntWidth) {
10914 BestWidth = IntWidth;
10959 NewWidth = IntWidth;
[all...]

Completed in 850 milliseconds