Home
last modified time | relevance | path

Searched refs:UnsignedInt (Results 1 – 24 of 24) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/
H A DTargetInfo.cpp99 Char32Type = UnsignedInt; in TargetInfo()
180 case UnsignedInt: return "unsigned int"; in getTypeName()
206 case UnsignedInt: return "U"; in getTypeConstantSuffix()
223 case UnsignedInt: return ""; in getTypeFormatModifier()
241 case UnsignedInt: return getIntWidth(); in getTypeWidth()
256 return IsSigned ? SignedInt : UnsignedInt; in getIntTypeByWidth()
271 return IsSigned ? SignedInt : UnsignedInt; in getLeastIntTypeByWidth()
317 case UnsignedInt: return getIntAlign(); in getTypeAlign()
338 case UnsignedInt: in isTypeSigned()
358 case 4: WCharType = Opts.WCharIsSigned ? SignedInt : UnsignedInt; break; in adjust()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/Basic/Targets/
H A DAVR.h50 SizeType = UnsignedInt; in AVRTargetInfo()
53 Char16Type = UnsignedInt; in AVRTargetInfo()
158 return BitWidth == 16 ? (IsSigned ? SignedInt : UnsignedInt) in getIntTypeByWidth()
165 ? (IsSigned ? SignedInt : UnsignedInt) in getLeastIntTypeByWidth()
H A DXCore.h34 SizeType = UnsignedInt; in XCoreTargetInfo()
38 WIntType = UnsignedInt; in XCoreTargetInfo()
H A DVE.h45 WCharType = UnsignedInt; in VETargetInfo()
46 WIntType = UnsignedInt; in VETargetInfo()
H A DRISCV.h60 WIntType = UnsignedInt; in RISCVTargetInfo()
120 SizeType = UnsignedInt; in RISCV32TargetInfo()
H A DMips.h127 SizeType = UnsignedInt; in setO32ABITypes()
163 SizeType = UnsignedInt; in setN32ABITypes()
H A DARC.h32 SizeType = UnsignedInt; in ARCTargetInfo()
H A DMSP430.h43 SizeType = UnsignedInt; in MSP430TargetInfo()
H A DOSTargets.h400 this->WIntType = TargetInfo::UnsignedInt; in LinuxTargetInfo()
534 this->SizeType = TargetInfo::UnsignedInt; in PS3PPUTargetInfo()
723 this->WCharType = this->UnsignedInt; in AIXTargetInfo()
786 this->WCharType = TargetInfo::UnsignedInt; in ZOSTargetInfo()
846 this->SizeType = TargetInfo::UnsignedInt; in NaClTargetInfo()
H A DPNaCl.h38 this->SizeType = TargetInfo::UnsignedInt; in PNaClTargetInfo()
H A DTCE.h67 SizeType = UnsignedInt; in TCETargetInfo()
H A DHexagon.h48 SizeType = UnsignedInt; in HexagonTargetInfo()
H A DM68k.cpp57 SizeType = UnsignedInt; in M68kTargetInfo()
H A DSPIR.h161 SizeType = TargetInfo::UnsignedInt; in SPIR32TargetInfo()
H A DX86.h402 SizeType = UnsignedInt; in X86_32TargetInfo()
623 WIntType = UnsignedInt; in MCUX86_32TargetInfo()
673 SizeType = IsX32 ? UnsignedInt : UnsignedLong; in X86_64TargetInfo()
H A DSparc.h158 SizeType = UnsignedInt; in SparcV8TargetInfo()
H A DNVPTX.cpp96 SizeType = TargetInfo::UnsignedInt; in NVPTXTargetInfo()
H A DPPC.h370 SizeType = UnsignedInt; in PPC32TargetInfo()
H A DARM.cpp36 WCharType = UnsignedInt; in setABIAAPCS()
258 : UnsignedInt; in ARMTargetInfo()
H A DAArch64.cpp51 WCharType = UnsignedInt; in AArch64TargetInfo()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DTargetInfo.h117 UnsignedInt, enumerator
322 case UnsignedInt: in getSignedSizeType()
368 return UnsignedInt; in getCorrespondingUnsignedType()
/netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/
H A DMveEmitter.cpp154 enum class ScalarTypeKind { SignedInt, UnsignedInt, Float }; enumerator
159 case ScalarTypeKind::UnsignedInt: in toLetter()
170 case ScalarTypeKind::UnsignedInt: in toCPrefix()
246 .Case("u", ScalarTypeKind::UnsignedInt) in ScalarType()
1212 getScalarType("u32"), ST->kind() == ScalarTypeKind::UnsignedInt); in getCodeForDag()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DInitPreprocessor.cpp983 DefineExactWidthIntType(TargetInfo::UnsignedInt, TI, Builder); in InitializePredefinedMacros()
984 DefineExactWidthIntTypeSize(TargetInfo::UnsignedInt, TI, Builder); in InitializePredefinedMacros()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp8561 case TargetInfo::UnsignedInt: return UnsignedIntTy; in getFromTargetType()