Home
last modified time | relevance | path

Searched refs:getExtIntType (Results 1 – 4 of 4) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DTypeProperties.td894 return ctx.getExtIntType(isUnsigned, numBits);
H A DASTContext.h1327 QualType getExtIntType(bool Unsigned, unsigned NumBits) const;
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4440 QualType ASTContext::getExtIntType(bool IsUnsigned, unsigned NumBits) const { in getExtIntType() function in ASTContext
10154 return getExtIntType(/*IsUnsigned=*/true, EITy->getNumBits()); in getCorrespondingUnsignedType()
10222 return getExtIntType(/*IsUnsigned=*/false, EITy->getNumBits()); in getCorrespondingSignedType()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaType.cpp2272 return Context.getExtIntType(IsUnsigned, NumBits); in BuildExtIntType()