Home
last modified time | relevance | path

Searched refs:TargetType (Results 1 – 25 of 29) sorted by relevance

12

/netbsd-src/sys/external/bsd/acpica/dist/executer/
H A Dexstore.c251 switch (IndexDesc->Reference.TargetType) in AcpiExStoreObjectToIndex()
421 ACPI_OBJECT_TYPE TargetType; in AcpiExStoreObjectToNode() local
429 TargetType = AcpiNsGetType (Node); in AcpiExStoreObjectToNode()
434 Node, AcpiUtGetTypeName (TargetType))); in AcpiExStoreObjectToNode()
458 switch (TargetType) in AcpiExStoreObjectToNode()
506 Status = AcpiExResolveObject (&SourceDesc, TargetType, WalkState); in AcpiExStoreObjectToNode()
514 switch (TargetType) in AcpiExStoreObjectToNode()
H A Dexstoren.c73 ACPI_OBJECT_TYPE TargetType, in AcpiExResolveObject() argument
85 switch (TargetType) in AcpiExResolveObject()
134 AcpiUtGetTypeName (TargetType))); in AcpiExResolveObject()
H A Dexresolv.c201 switch (StackDesc->Reference.TargetType) in AcpiExResolveObjectToValue()
251 StackDesc->Reference.TargetType, StackDesc)); in AcpiExResolveObjectToValue()
479 Type = ObjDesc->Reference.TargetType; in AcpiExResolveMultiple()
H A Dexoparg2.c418 ReturnDesc->Reference.TargetType = ACPI_TYPE_BUFFER_FIELD; in AcpiExOpcode_2A_1T_1R()
431 ReturnDesc->Reference.TargetType = ACPI_TYPE_BUFFER_FIELD; in AcpiExOpcode_2A_1T_1R()
444 ReturnDesc->Reference.TargetType = ACPI_TYPE_PACKAGE; in AcpiExOpcode_2A_1T_1R()
H A Dexoparg1.c1020 switch (Operand[0]->Reference.TargetType) in AcpiExOpcode_1A_0T_1R()
1070 Operand[0]->Reference.TargetType, Operand[0])); in AcpiExOpcode_1A_0T_1R()
H A Dexdump.c245 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Reference.TargetType), "Target Type"},
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h157 APSIntType TargetType(To); in Convert()
158 if (TargetType == APSIntType(From)) in Convert()
161 return getValue(TargetType.convert(From)); in Convert()
165 APSIntType TargetType = getAPSIntType(T); in Convert() local
166 return Convert(TargetType, From); in Convert()
169 const llvm::APSInt &Convert(APSIntType TargetType, const llvm::APSInt &From) { in Convert() argument
170 if (TargetType == APSIntType(From)) in Convert()
173 return getValue(TargetType.convert(From)); in Convert()
H A DSMTConv.h317 APSIntType TargetType(ToWidth, !ToTy->isSignedIntegerOrEnumerationType()); in castAPSInt()
318 return TargetType.convert(V); in castAPSInt()
/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp315 SVal StoreManager::attemptDownCast(SVal Base, QualType TargetType, in attemptDownCast() argument
324 TargetType = TargetType->getPointeeType(); in attemptDownCast()
325 assert(!TargetType.isNull()); in attemptDownCast()
326 const CXXRecordDecl *TargetClass = TargetType->getAsCXXRecordDecl(); in attemptDownCast()
327 if (!TargetClass && !TargetType->isVoidType()) in attemptDownCast()
340 if (!TargetType->isVoidType() && MRClass->hasDefinition()) { in attemptDownCast()
356 if (TargetType->isVoidType()) in attemptDownCast()
389 return loc::MemRegionVal(GetElementZeroRegion(SR, TargetType)); in attemptDownCast()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp217 auto TargetType = guessType(Filename, &TypeCertain); in transferTo() local
219 if ((!TargetType || !TypeCertain) && Type) { in transferTo()
222 TargetType = in transferTo()
223 (!TargetType || types::onlyPrecompileType(TargetType)) // header? in transferTo()
227 const StringRef Flag = toCLFlag(TargetType); in transferTo()
232 Result.CommandLine.push_back(types::getTypeName(TargetType)); in transferTo()
237 if (Std != LangStandard::lang_unspecified && foldType(TargetType) == Type) { in transferTo()
/netbsd-src/external/bsd/openldap/dist/servers/slapd/back-sql/
H A Dsql-wrap.c212 SQLSMALLINT TargetType; in backsql_BindRowAsStrings_x() local
250 TargetType = SQL_C_BINARY; in backsql_BindRowAsStrings_x()
259 TargetType = SQL_C_CHAR; in backsql_BindRowAsStrings_x()
263 TargetType, in backsql_BindRowAsStrings_x()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp637 Type *TargetType = in cloneConstantExprWithNewAddressSpace() local
646 return ConstantExpr::getBitCast(CE->getOperand(0), TargetType); in cloneConstantExprWithNewAddressSpace()
651 return ConstantExpr::getBitCast(cast<Constant>(NewOperand), TargetType); in cloneConstantExprWithNewAddressSpace()
652 return ConstantExpr::getAddrSpaceCast(CE, TargetType); in cloneConstantExprWithNewAddressSpace()
662 CE->getOperand(0), ConstantExpr::getAddrSpaceCast(Src0, TargetType), in cloneConstantExprWithNewAddressSpace()
663 ConstantExpr::getAddrSpaceCast(Src1, TargetType)); in cloneConstantExprWithNewAddressSpace()
671 return ConstantExpr::getBitCast(Src, TargetType); in cloneConstantExprWithNewAddressSpace()
709 NewOperands, TargetType, /*OnlyIfReduced=*/false, in cloneConstantExprWithNewAddressSpace()
713 return CE->getWithOperands(NewOperands, TargetType); in cloneConstantExprWithNewAddressSpace()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h872 Type *TargetType = nullptr; variable
880 TargetType = GTI.getIndexedType();
895 if (isa<ScalableVectorType>(TargetType))
913 TargetType, const_cast<GlobalValue *>(BaseGV),
/netbsd-src/sys/external/bsd/acpica/dist/debugger/
H A Ddbobject.c345 switch (ObjDesc->Reference.TargetType) in AcpiDbDisplayInternalObject()
/netbsd-src/sys/external/bsd/acpica/dist/include/
H A Dacobject.h444 UINT8 TargetType; /* Used for Index Op */ member
H A Dacinterp.h616 ACPI_OBJECT_TYPE TargetType,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h427 TypeNode *TargetType = nullptr; member
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp1467 QualType TargetType = SemaRef.SubstType(NTTP->getType(), TemplateArgs, in TransformTemplateParmRefExpr() local
1470 if (TargetType.isNull()) in TransformTemplateParmRefExpr()
1473 QualType ExprType = TargetType.getNonLValueExprType(SemaRef.Context); in TransformTemplateParmRefExpr()
1474 if (TargetType->isRecordType()) in TransformTemplateParmRefExpr()
1478 ExprType, TargetType->isReferenceType() ? VK_LValue : VK_RValue, NTTP, in TransformTemplateParmRefExpr()
H A DSemaCoroutine.cpp1632 QualType TargetType = S.BuildReferenceType( in castForMoving() local
1636 S.Context.getTrivialTypeSourceInfo(TargetType, ExprLoc); in castForMoving()
H A DSemaOverload.cpp11850 const QualType& TargetType; member in __anon8501439c1b11::AddressOfFunctionResolver
11870 const QualType &TargetType, bool Complain) in AddressOfFunctionResolver() argument
11871 : S(S), SourceExpr(SourceExpr), TargetType(TargetType), in AddressOfFunctionResolver()
11874 !!TargetType->getAs<MemberPointerType>()), in AddressOfFunctionResolver()
11983 TargetFunctionType = S.ExtractUnqualifiedFunctionType(TargetType); in ExtractUnqualifiedFunctionTypeFromTargetType()
12201 << TargetType << OvlExpr->getSourceRange(); in ComplainIsInvalidFormOfPointerToMemberFunction()
12216 << OvlExpr->getName() << TargetType; in ComplainOfInvalidConversion()
12260 QualType TargetType, in ResolveAddressOfOverloadedFunction() argument
12266 AddressOfFunctionResolver Resolver(*this, AddressOfExpr, TargetType, in ResolveAddressOfOverloadedFunction()
H A DSemaTemplateDeduction.cpp5358 bool Complain, QualType TargetType) { in getMostSpecialized() argument
5419 if (!TargetType.isNull()) in getMostSpecialized()
5420 HandleFunctionTypeMismatch(PD, FD->getType(), TargetType); in getMostSpecialized()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp368 TargetType->output(OS, Flags); in output()
H A DMicrosoftDemangle.cpp725 COIN->TargetType = FSN->Signature->ReturnType; in demangleEncodedSymbol()
746 if (!COIN->TargetType) { in demangleDeclarator()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp4002 llvm::Type *TargetType = FnType->getParamType(I); in emitOutlinedFunctionCall() local
4004 if (!TargetType->isPointerTy()) { in emitOutlinedFunctionCall()
4012 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(TargetArg, TargetType)); in emitOutlinedFunctionCall()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp12136 EVT TargetType = VectorShuffle.getValueType(); in performCommonVectorExtendCombine() local
12139 if ((TargetType != MVT::v8i16 && TargetType != MVT::v4i32 && in performCommonVectorExtendCombine()
12140 TargetType != MVT::v2i64) || in performCommonVectorExtendCombine()
12149 EVT PreExtendVT = TargetType.changeVectorElementType(PreExtendType); in performCommonVectorExtendCombine()
12151 if (PreExtendVT.getVectorElementCount() != TargetType.getVectorElementCount()) in performCommonVectorExtendCombine()
12154 if (TargetType.getScalarSizeInBits() != PreExtendVT.getScalarSizeInBits() * 2) in performCommonVectorExtendCombine()
12164 std::vector<int> ShuffleMask(TargetType.getVectorElementCount().getValue()); in performCommonVectorExtendCombine()
12171 DL, TargetType, VectorShuffleNode); in performCommonVectorExtendCombine()

12