Home
last modified time | relevance | path

Searched refs:UnsignedLongLong (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/clang-tools-extra/unittests/clang-tidy/
H A DModernizeModuleTest.cpp66 case modernize::LiteralSize::UnsignedLongLong: in toString()
265 {modernize::LiteralSize::UnsignedLongLong, "1ULL"},
266 {modernize::LiteralSize::UnsignedLongLong, "1LLU"}};
/llvm-project-15.0.7/clang/lib/Basic/
H A DTargetInfo.cpp193 case UnsignedLongLong: return "long long unsigned int"; in getTypeName()
217 case UnsignedLongLong: return "ULL"; in getTypeConstantSuffix()
236 case UnsignedLongLong: return "ll"; in getTypeFormatModifier()
254 case UnsignedLongLong: return getLongLongWidth(); in getTypeWidth()
269 return IsSigned ? SignedLongLong : UnsignedLongLong; in getIntTypeByWidth()
284 return IsSigned ? SignedLongLong : UnsignedLongLong; in getLeastIntTypeByWidth()
336 case UnsignedLongLong: return getLongLongAlign(); in getTypeAlign()
355 case UnsignedLongLong: in isTypeSigned()
/llvm-project-15.0.7/clang/lib/Basic/Targets/
H A DWebAssembly.h118 return BitWidth == 64 ? (IsSigned ? SignedLongLong : UnsignedLongLong) in getIntTypeByWidth()
125 ? (IsSigned ? SignedLongLong : UnsignedLongLong) in getLeastIntTypeByWidth()
H A DAArch64.cpp930 SizeType = UnsignedLongLong; in WindowsARM64TargetInfo()
H A DX86.h797 SizeType = UnsignedLongLong; in WindowsX86_64TargetInfo()
H A DOSTargets.h163 : TargetInfo::UnsignedLongLong) in getLeastIntTypeByWidth()
/llvm-project-15.0.7/clang-tools-extra/clang-tidy/modernize/
H A DIntegralLiteralExpressionMatcher.h26 UnsignedLongLong enumerator
H A DIntegralLiteralExpressionMatcher.cpp109 return LiteralSize::UnsignedLongLong; in literalTokenSize()
/llvm-project-15.0.7/clang/include/clang/Basic/
H A DTargetInfo.h131 UnsignedLongLong enumerator
334 case UnsignedLongLong: in getSignedSizeType()
380 return UnsignedLongLong; in getCorrespondingUnsignedType()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DInitPreprocessor.cpp1095 DefineExactWidthIntType(TargetInfo::UnsignedLongLong, TI, Builder); in InitializePredefinedMacros()
1096 DefineExactWidthIntTypeSize(TargetInfo::UnsignedLongLong, TI, Builder); in InitializePredefinedMacros()
/llvm-project-15.0.7/clang/lib/AST/
H A DASTContext.cpp9215 case TargetInfo::UnsignedLongLong: return UnsignedLongLongTy; in getFromTargetType()