| /llvm-project-15.0.7/clang/lib/AST/ |
| H A D | ScanfFormatString.cpp | 242 return ArgType::PtrTo(Ctx.ShortTy); in getArgType() 380 return ArgType::PtrTo(Ctx.ShortTy); in getArgType()
|
| H A D | FormatString.cpp | 396 if (T == C.UnsignedShortTy || T == C.ShortTy) in matchesType() 403 return T == C.ShortTy ? Match : NoMatch; in matchesType()
|
| H A D | PrintfFormatString.cpp | 517 case LengthModifier::AsShort: return Ctx.ShortTy; in getScalarArgType() 601 return ArgType::PtrTo(Ctx.ShortTy); in getScalarArgType()
|
| H A D | ASTContext.cpp | 1304 InitBuiltinType(ShortTy, BuiltinType::Short); in InitBuiltinTypes() 6966 return 3 + (getIntWidth(ShortTy) << 3); in getIntegerRank() 9208 case TargetInfo::SignedShort: return ShortTy; in getFromTargetType() 10871 return ShortTy; in getCorrespondingSignedType() 11075 Type = Context.ShortTy; in DecodeTypeFromStr()
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCTypeEncodingParser.cpp | 282 return ast_ctx.ShortTy; in BuildType()
|
| /llvm-project-15.0.7/clang/lib/CodeGen/ |
| H A D | CodeGenTBAA.cpp | 134 return getTypeInfo(Context.ShortTy); in getTypeInfoHelper()
|
| H A D | CGOpenMPRuntimeGPU.cpp | 2404 ImplicitParamDecl LaneIDArg(C, /*DC=*/nullptr, Loc, /*Id=*/nullptr, C.ShortTy, in emitShuffleAndReduceFunction() 2408 C.ShortTy, ImplicitParamDecl::Other); in emitShuffleAndReduceFunction() 2411 C.ShortTy, ImplicitParamDecl::Other); in emitShuffleAndReduceFunction() 2442 AddrLaneIDArg, /*Volatile=*/false, C.ShortTy, SourceLocation()); in emitShuffleAndReduceFunction() 2446 AddrRemoteLaneOffsetArg, /*Volatile=*/false, C.ShortTy, SourceLocation()); in emitShuffleAndReduceFunction() 2450 AddrAlgoVerArg, /*Volatile=*/false, C.ShortTy, SourceLocation()); in emitShuffleAndReduceFunction()
|
| H A D | CGObjCMac.cpp | 175 llvm::IntegerType *ShortTy, *IntTy, *LongTy; member in __anon0dba85c70111::ObjCCommonTypesHelper 5195 values.addInt(ObjCTypes.ShortTy, NumClasses); in EmitModuleSymbols() 5196 values.addInt(ObjCTypes.ShortTy, NumCategories); in EmitModuleSymbols() 5743 ShortTy = cast<llvm::IntegerType>(Types.ConvertType(Ctx.ShortTy)); in ObjCCommonTypesHelper() 5960 SelectorPtrTy, ShortTy, ShortTy, in ObjCTypesHelper()
|
| H A D | ItaniumCXXABI.cpp | 4167 getContext().SignedCharTy, getContext().ShortTy, in EmitFundamentalRTTIDescriptors()
|
| H A D | CodeGenModule.cpp | 5567 CharUnits Align = isUTF16 ? Context.getTypeAlignInChars(Context.ShortTy) in GetAddrOfConstantCFString()
|
| /llvm-project-15.0.7/clang/include/clang/AST/ |
| H A D | BuiltinTypes.def | 110 SIGNED_TYPE(Short, ShortTy)
|
| H A D | ASTContext.h | 1115 CanQualType SignedCharTy, ShortTy, IntTy, LongTy, LongLongTy, Int128Ty; variable
|
| /llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 822 if (QualTypeMatchesBitSize(bit_size, ast, ast.ShortTy)) in GetBuiltinTypeForEncodingAndBitSize() 823 return GetType(ast.ShortTy); in GetBuiltinTypeForEncodingAndBitSize() 1034 QualTypeMatchesBitSize(bit_size, ast, ast.ShortTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize() 1035 return GetType(ast.ShortTy); in GetBuiltinTypeForDWARFEncodingAndBitSize() 1052 if (QualTypeMatchesBitSize(bit_size, ast, ast.ShortTy)) in GetBuiltinTypeForDWARFEncodingAndBitSize() 1053 return GetType(ast.ShortTy); in GetBuiltinTypeForDWARFEncodingAndBitSize() 2032 return ast->ShortTy.getAsOpaquePtr(); in GetOpaqueCompilerType() 2346 if (bit_size == ast.getTypeSize(ast.ShortTy)) in GetIntTypeFromBitSize() 2347 return GetType(ast.ShortTy); in GetIntTypeFromBitSize()
|
| /llvm-project-15.0.7/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | BasicObjCFoundationChecks.cpp | 382 case kCFNumberShortType: T = Ctx.ShortTy; break; in GetCFNumberSize()
|
| /llvm-project-15.0.7/lldb/unittests/Symbol/ |
| H A D | TestTypeSystemClang.cpp | 94 context.hasSameType(GetBasicQualType(eBasicTypeShort), context.ShortTy)); in TEST_F()
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaExpr.cpp | 12834 if (TypeSize == Context.getTypeSize(Context.ShortTy)) in GetSignedVectorType() 12835 return Context.getExtVectorType(Context.ShortTy, VTy->getNumElements()); in GetSignedVectorType() 12859 if (TypeSize == Context.getTypeSize(Context.ShortTy)) in GetSignedVectorType() 12860 return Context.getVectorType(Context.ShortTy, VTy->getNumElements(), in GetSignedVectorType() 14751 isVector(ResultTy, Context.ShortTy)) && in convertHalfVecBinOp() 14762 if (isVector(ResultTy, Context.ShortTy)) in convertHalfVecBinOp()
|
| H A D | OpenCLBuiltins.td | 345 def Short : Type<"short", QualType<"Context.ShortTy">>;
|
| H A D | SemaChecking.cpp | 2715 return Flags.isUnsigned() ? Context.UnsignedShortTy : Context.ShortTy; in getNeonEltType() 2727 return IsPolyUnsigned ? Context.UnsignedShortTy : Context.ShortTy; in getNeonEltType()
|
| H A D | SemaDecl.cpp | 18459 Context.ShortTy, Context.IntTy, Context.LongTy, Context.LongLongTy in getNextLargerIntegralType() 19035 BestType = Context.ShortTy; in ActOnEnumBody()
|
| H A D | SemaType.cpp | 1380 Result = Context.ShortTy; in ConvertDeclSpecToType()
|
| H A D | SemaOverload.cpp | 8336 ArithmeticTypes.push_back(S.Context.ShortTy); in InitArithmeticTypes()
|
| /llvm-project-15.0.7/clang/lib/Serialization/ |
| H A D | ASTReader.cpp | 6931 T = Context.ShortTy; in GetType()
|