Home
last modified time | relevance | path

Searched refs:SignedLongLong (Results 1 – 12 of 12) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DTargetInfo.cpp90 IntMaxType = SignedLongLong; in TargetInfo()
96 Int64Type = SignedLongLong; in TargetInfo()
164 case SignedLongLong: return "long long int"; in getTypeName()
178 case SignedLongLong: return "LL"; in getTypeConstantSuffix()
207 case SignedLongLong: in getTypeFormatModifier()
225 case SignedLongLong: in getTypeWidth()
241 return IsSigned ? SignedLongLong : UnsignedLongLong; in getIntTypeByWidth()
256 return IsSigned ? SignedLongLong : UnsignedLongLong; in getLeastIntTypeByWidth()
296 case SignedLongLong: in getTypeAlign()
310 case SignedLongLong: in isTypeSigned()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/Targets/
H A DAArch64.cpp41 Int64Type = SignedLongLong; in AArch64TargetInfo()
42 IntMaxType = SignedLongLong; in AArch64TargetInfo()
490 IntMaxType = SignedLongLong; in WindowsARM64TargetInfo()
491 Int64Type = SignedLongLong; in WindowsARM64TargetInfo()
493 PtrDiffType = SignedLongLong; in WindowsARM64TargetInfo()
494 IntPtrType = SignedLongLong; in WindowsARM64TargetInfo()
558 Int64Type = SignedLongLong; in DarwinAArch64TargetInfo()
H A DX86.h601 IntMaxType = IsX32 ? SignedLongLong : SignedLong; in X86_64TargetInfo()
602 Int64Type = IsX32 ? SignedLongLong : SignedLong; in X86_64TargetInfo()
696 IntMaxType = SignedLongLong; in WindowsX86_64TargetInfo()
697 Int64Type = SignedLongLong; in WindowsX86_64TargetInfo()
699 PtrDiffType = SignedLongLong; in WindowsX86_64TargetInfo()
700 IntPtrType = SignedLongLong; in WindowsX86_64TargetInfo()
795 Int64Type = SignedLongLong; in DarwinX86_64TargetInfo()
820 IntMaxType = SignedLongLong; in OpenBSDX86_64TargetInfo()
821 Int64Type = SignedLongLong; in OpenBSDX86_64TargetInfo()
H A DPNaCl.h34 this->IntMaxType = TargetInfo::SignedLongLong; in PNaClTargetInfo()
35 this->Int64Type = TargetInfo::SignedLongLong; in PNaClTargetInfo()
H A DMips.h120 Int64Type = SignedLongLong; in setO32ABITypes()
146 Int64Type = SignedLongLong; in setN64ABITypes()
159 Int64Type = SignedLongLong; in setN32ABITypes()
H A DWebAssembly.h104 return BitWidth == 64 ? (IsSigned ? SignedLongLong : UnsignedLongLong) in getIntTypeByWidth()
111 ? (IsSigned ? SignedLongLong : UnsignedLongLong) in getLeastIntTypeByWidth()
H A DOSTargets.h141 ? (IsSigned ? TargetInfo::SignedLongLong in getLeastIntTypeByWidth()
494 this->IntMaxType = TargetInfo::SignedLongLong; in PS3PPUTargetInfo()
495 this->Int64Type = TargetInfo::SignedLongLong; in PS3PPUTargetInfo()
714 this->IntMaxType = TargetInfo::SignedLongLong; in NaClTargetInfo()
715 this->Int64Type = TargetInfo::SignedLongLong; in NaClTargetInfo()
H A DMSP430.h41 IntMaxType = SignedLongLong; in MSP430TargetInfo()
H A DSparc.h203 IntMaxType = SignedLongLong; in SparcV9TargetInfo()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DTargetInfo.h168 SignedLongLong, enumerator
269 return SignedLongLong; in getSignedSizeType()
309 case SignedLongLong: in getCorrespondingUnsignedType()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/
H A DInitPreprocessor.cpp772 DefineTypeSize("__LONG_LONG_MAX__", TargetInfo::SignedLongLong, TI, Builder); in InitializePredefinedMacros()
869 DefineExactWidthIntType(TargetInfo::SignedLongLong, TI, Builder); in InitializePredefinedMacros()
896 DefineExactWidthIntTypeSize(TargetInfo::SignedLongLong, TI, Builder); in InitializePredefinedMacros()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DASTContext.cpp7759 case TargetInfo::SignedLongLong: return LongLongTy; in getFromTargetType()
9295 case TargetInfo::SignedLongLong: in DecodeTypeFromStr()