| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | AArch64ACLETypes.def | 130 NEON_VECTOR_TYPE(__Uint16x4_t, UnsignedShortTy, 16, 4, VectorKind::Neon) 135 NEON_VECTOR_TYPE(__Poly16x4_t, UnsignedShortTy, 16, 4, VectorKind::NeonPoly) 142 NEON_VECTOR_TYPE(__Uint16x8_t, UnsignedShortTy, 16, 8, VectorKind::Neon) 149 NEON_VECTOR_TYPE(__Poly16x8_t, UnsignedShortTy, 16, 8, VectorKind::NeonPoly)
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | FormatString.cpp | 426 if (T == C.UnsignedShortTy || T == C.ShortTy) in matchesType() 435 if (T == C.UnsignedShortTy || T == C.ShortTy) in matchesType() 443 if (T == C.UnsignedShortTy) in matchesType() 487 T == C.ShortTy || T == C.UnsignedShortTy || T == C.WCharTy || in matchesType() 494 if (T == C.UnsignedShortTy) in matchesType()
|
| H A D | PrintfFormatString.cpp | 571 case LengthModifier::AsShort: return Ctx.UnsignedShortTy; in getScalarArgType() 653 return ArgType(Ctx.getPointerType(Ctx.UnsignedShortTy.withConst()), in getScalarArgType() 662 return ArgType(Ctx.getPointerType(Ctx.UnsignedShortTy.withConst()), in getScalarArgType() 670 return ArgType(Ctx.UnsignedShortTy, "unichar"); in getScalarArgType()
|
| H A D | ScanfFormatString.cpp | 284 return ArgType::PtrTo(Ctx.UnsignedShortTy); in getArgType()
|
| H A D | ASTContext.cpp | 1305 InitBuiltinType(UnsignedShortTy, BuiltinType::UShort); in InitBuiltinTypes() 5418 BestType = UnsignedShortTy; in computeBestEnumTypes() 9908 FieldTypes[2] = Context->UnsignedShortTy; in CreatePowerABIBuiltinVaListDecl() 10420 case TargetInfo::UnsignedShort: return UnsignedShortTy; in getFromTargetType() 12147 return UnsignedShortTy; in getCorrespondingUnsignedType() 12426 Type = Context.UnsignedShortTy; in DecodeTypeFromStr()
|
| H A D | RecordLayoutBuilder.cpp | 1473 Context.UnsignedCharTy, Context.UnsignedShortTy, in LayoutWideBitField()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCTypeEncodingParser.cpp | 311 return ast_ctx.UnsignedShortTy; in BuildType()
|
| /freebsd/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | BuiltinTypes.def | 84 UNSIGNED_TYPE(UShort, UnsignedShortTy)
|
| H A D | ASTContext.h | 1222 CanQualType UnsignedCharTy, UnsignedShortTy, UnsignedIntTy, UnsignedLongTy; variable
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaARM.cpp | 327 return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy; in getNeonEltType() 339 return IsPolyUnsigned ? Context.UnsignedShortTy : Context.ShortTy; in getNeonEltType()
|
| H A D | SemaType.cpp | 1044 Result = Context.UnsignedShortTy; in ConvertDeclSpecToType() 9966 &S.Context.UnsignedCharTy, &S.Context.UnsignedShortTy, in ChangeIntegralSignedness()
|
| H A D | OpenCLBuiltins.td | 351 def UShort : Type<"ushort", QualType<"Context.UnsignedShortTy">>;
|
| H A D | SemaChecking.cpp | 8346 IntendedTy = S.Context.UnsignedShortTy; in checkFormatExpr()
|
| H A D | SemaOverload.cpp | 9318 ArithmeticTypes.push_back(S.Context.UnsignedShortTy); in InitArithmeticTypes()
|
| H A D | TreeTransform.h | 17180 SemaRef.Context.UnsignedCharTy, SemaRef.Context.UnsignedShortTy, in RebuildArrayType()
|
| H A D | SemaDecl.cpp | 19923 Context.UnsignedShortTy, Context.UnsignedIntTy, Context.UnsignedLongTy, in getNextLargerIntegralType()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 777 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedShortTy)) in GetBuiltinTypeForEncodingAndBitSize() 778 return GetType(ast.UnsignedShortTy); in GetBuiltinTypeForEncodingAndBitSize() 927 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedShortTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize() 928 return GetType(ast.UnsignedShortTy); in GetBuiltinTypeForDWARFEncodingAndBitSize() 1057 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedShortTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize() 1058 return GetType(ast.UnsignedShortTy); in GetBuiltinTypeForDWARFEncodingAndBitSize() 1072 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedShortTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize() 1073 return GetType(ast.UnsignedShortTy); in GetBuiltinTypeForDWARFEncodingAndBitSize() 1091 if (QualTypeMatchesBitSize(bit_size, ast, ast.UnsignedShortTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize() 1092 return GetType(ast.UnsignedShortTy); in GetBuiltinTypeForDWARFEncodingAndBitSize() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | ItaniumCXXABI.cpp | 4592 getContext().UnsignedShortTy, getContext().IntTy, in EmitFundamentalRTTIDescriptors()
|
| /freebsd/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 7542 T = Context.UnsignedShortTy; in GetType()
|