Lines Matching refs:getIntWidth
1626 Width = Target->getIntWidth(); in getTypeInfoImpl()
1676 Width = Target->getIntWidth(); in getTypeInfoImpl()
4695 return 1 + (getIntWidth(BoolTy) << 3); in getIntegerRank()
4700 return 2 + (getIntWidth(CharTy) << 3); in getIntegerRank()
4703 return 3 + (getIntWidth(ShortTy) << 3); in getIntegerRank()
4706 return 4 + (getIntWidth(IntTy) << 3); in getIntegerRank()
4709 return 5 + (getIntWidth(LongTy) << 3); in getIntegerRank()
4712 return 6 + (getIntWidth(LongLongTy) << 3); in getIntegerRank()
4715 return 7 + (getIntWidth(Int128Ty) << 3); in getIntegerRank()
4806 uint64_t PromotableSize = getIntWidth(Promotable); in getPromotedIntegerType()
4807 uint64_t IntSize = getIntWidth(IntTy); in getPromotedIntegerType()
5456 if (BT->getKind() == BuiltinType::ULong && getIntWidth(PointeeTy) == 32) in getLegacyIntegralTypeEncoding()
5459 if (BT->getKind() == BuiltinType::Long && getIntWidth(PointeeTy) == 32) in getLegacyIntegralTypeEncoding()
8032 unsigned ASTContext::getIntWidth(QualType T) const { in getIntWidth() function in ASTContext