Home
last modified time | relevance | path

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

12

/freebsd/sys/contrib/dev/acpica/components/executer/
H A Dexstore.c359 switch (IndexDesc->Reference.TargetType) in AcpiExStoreObjectToIndex()
529 ACPI_OBJECT_TYPE TargetType; in AcpiExStoreObjectToNode() local
537 TargetType = AcpiNsGetType (Node); in AcpiExStoreObjectToNode()
542 Node, AcpiUtGetTypeName (TargetType))); in AcpiExStoreObjectToNode()
566 switch (TargetType) in AcpiExStoreObjectToNode()
614 Status = AcpiExResolveObject (&SourceDesc, TargetType, WalkState); in AcpiExStoreObjectToNode()
622 switch (TargetType) in AcpiExStoreObjectToNode()
H A Dexstoren.c181 ACPI_OBJECT_TYPE TargetType, in AcpiExResolveObject() argument
193 switch (TargetType) in AcpiExResolveObject()
242 AcpiUtGetTypeName (TargetType))); in AcpiExResolveObject()
H A Dexresolv.c309 switch (StackDesc->Reference.TargetType) in AcpiExResolveObjectToValue()
359 StackDesc->Reference.TargetType, StackDesc)); in AcpiExResolveObjectToValue()
587 Type = ObjDesc->Reference.TargetType; in AcpiExResolveMultiple()
H A Dexoparg2.c526 ReturnDesc->Reference.TargetType = ACPI_TYPE_BUFFER_FIELD; in AcpiExOpcode_2A_1T_1R()
539 ReturnDesc->Reference.TargetType = ACPI_TYPE_BUFFER_FIELD; in AcpiExOpcode_2A_1T_1R()
552 ReturnDesc->Reference.TargetType = ACPI_TYPE_PACKAGE; in AcpiExOpcode_2A_1T_1R()
H A Dexoparg1.c1128 switch (Operand[0]->Reference.TargetType) in AcpiExOpcode_1A_0T_1R()
1178 Operand[0]->Reference.TargetType, Operand[0])); in AcpiExOpcode_1A_0T_1R()
H A Dexdump.c353 {ACPI_EXD_UINT8, ACPI_EXD_OFFSET (Reference.TargetType), "Target Type"},
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBasicValueFactory.h170 APSIntType TargetType(To); in Convert()
171 if (TargetType == APSIntType(From)) in Convert()
174 return getValue(TargetType.convert(From)); in Convert()
178 APSIntType TargetType = getAPSIntType(T); in Convert() local
179 return Convert(TargetType, From); in Convert()
182 const llvm::APSInt &Convert(APSIntType TargetType, const llvm::APSInt &From) { in Convert() argument
183 if (TargetType == APSIntType(From)) in Convert()
186 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()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCXXDeleteChecker.cpp167 QualType TargetType = in checkTypedDeleteExpr() local
170 OS << "Deleting an array of '" << TargetType.getAsString() in checkTypedDeleteExpr()
197 QualType TargetType = CastE->getType()->getPointeeType(); in VisitNode() local
199 if (SourceType.isNull() || TargetType.isNull() || SourceType == TargetType) in VisitNode()
215 << TargetType.getAsString() << "' here"; in VisitNode()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DStore.cpp317 QualType TargetType) { in evalBaseToDerived() argument
323 TargetType = TargetType->getPointeeType(); in evalBaseToDerived()
324 assert(!TargetType.isNull()); in evalBaseToDerived()
325 const CXXRecordDecl *TargetClass = TargetType->getAsCXXRecordDecl(); in evalBaseToDerived()
326 if (!TargetClass && !TargetType->isVoidType()) in evalBaseToDerived()
339 if (!TargetType->isVoidType() && MRClass->hasDefinition()) { in evalBaseToDerived()
355 if (TargetType->isVoidType()) in evalBaseToDerived()
388 return loc::MemRegionVal(GetElementZeroRegion(SR, TargetType)); in evalBaseToDerived()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A Dkmp.h4744 static TargetType to(SourceType src) { return (TargetType)src; }
4754 static TargetType to(SourceType src) {
4759 return (TargetType)src;
4769 return (TargetType)src;
4777 return (TargetType)src;
4787 return (TargetType)src;
4795 static TargetType to(SourceType src) { return (TargetType)src; }
4803 return (TargetType)src;
4812 return (TargetType)src;
4820 static TargetType to(SourceType src) { return (TargetType)src; }
[all …]
/freebsd/contrib/llvm-project/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp219 auto TargetType = guessType(Filename, &TypeCertain); in transferTo() local
221 if ((!TargetType || !TypeCertain) && Type) { in transferTo()
224 TargetType = in transferTo()
225 (!TargetType || types::onlyPrecompileType(TargetType)) // header? in transferTo()
229 const StringRef Flag = toCLFlag(TargetType); in transferTo()
234 Result.CommandLine.push_back(types::getTypeName(TargetType)); in transferTo()
239 if (Std != LangStandard::lang_unspecified && foldType(TargetType) == Type) { in transferTo()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp708 Type *TargetType = in cloneConstantExprWithNewAddressSpace() local
719 return ConstantExpr::getBitCast(CE->getOperand(0), TargetType); in cloneConstantExprWithNewAddressSpace()
724 return ConstantExpr::getBitCast(cast<Constant>(NewOperand), TargetType); in cloneConstantExprWithNewAddressSpace()
725 return ConstantExpr::getAddrSpaceCast(CE, TargetType); in cloneConstantExprWithNewAddressSpace()
732 return ConstantExpr::getBitCast(Src, TargetType); in cloneConstantExprWithNewAddressSpace()
769 return CE->getWithOperands(NewOperands, TargetType, /*OnlyIfReduced=*/false, in cloneConstantExprWithNewAddressSpace()
773 return CE->getWithOperands(NewOperands, TargetType); in cloneConstantExprWithNewAddressSpace()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.cpp2157 SPIRVType *TargetType; in lowerBuiltinType() local
2160 TargetType = getImageType(BuiltinType, AccessQual, MIRBuilder, GR); in lowerBuiltinType()
2163 TargetType = getPipeType(BuiltinType, MIRBuilder, GR); in lowerBuiltinType()
2166 TargetType = GR->getOrCreateOpTypeDeviceEvent(MIRBuilder); in lowerBuiltinType()
2169 TargetType = getSamplerType(MIRBuilder, GR); in lowerBuiltinType()
2172 TargetType = getSampledImageType(BuiltinType, MIRBuilder, GR); in lowerBuiltinType()
2175 TargetType = in lowerBuiltinType()
2183 buildOpName(GR->getSPIRVTypeID(TargetType), Name, MIRBuilder); in lowerBuiltinType()
2185 return TargetType; in lowerBuiltinType()
/freebsd/sys/contrib/dev/acpica/components/debugger/
H A Ddbobject.c453 switch (ObjDesc->Reference.TargetType) in AcpiDbDisplayInternalObject()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h1036 Type *TargetType = nullptr; in getGEPCost() local
1044 TargetType = GTI.getIndexedType(); in getGEPCost()
1059 if (TargetType->isScalableTy()) in getGEPCost()
1086 AccessType = TargetType; in getGEPCost()
/freebsd/sys/contrib/dev/acpica/include/
H A Dacobject.h552 UINT8 TargetType; /* Used for Index Op */ member
H A Dacinterp.h724 ACPI_OBJECT_TYPE TargetType,
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h425 TypeNode *TargetType = nullptr; member
/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp369 TargetType->output(OB, Flags); in output()
H A DMicrosoftDemangle.cpp756 COIN->TargetType = FSN->Signature->ReturnType; in demangleEncodedSymbol()
777 if (!COIN->TargetType) { in demangleDeclarator()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiate.cpp1879 QualType TargetType = SemaRef.SubstType(NTTP->getType(), TemplateArgs, in TransformTemplateParmRefExpr() local
1882 if (TargetType.isNull()) in TransformTemplateParmRefExpr()
1885 QualType ExprType = TargetType.getNonLValueExprType(SemaRef.Context); in TransformTemplateParmRefExpr()
1886 if (TargetType->isRecordType()) in TransformTemplateParmRefExpr()
1890 ExprType, TargetType->isReferenceType() ? VK_LValue : VK_PRValue, in TransformTemplateParmRefExpr()
H A DSemaCoroutine.cpp1931 QualType TargetType = S.BuildReferenceType( in castForMoving() local
1935 S.Context.getTrivialTypeSourceInfo(TargetType, ExprLoc); in castForMoving()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtPrinter.cpp2089 auto TargetType = Node->getType(); in VisitCXXFunctionalCastExpr() local
2090 auto *Auto = TargetType->getContainedDeducedType(); in VisitCXXFunctionalCastExpr()
2096 TargetType.print(OS, Policy); in VisitCXXFunctionalCastExpr()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeGPU.cpp3041 llvm::Type *TargetType = FnType->getParamType(I); in emitOutlinedFunctionCall() local
3043 if (!TargetType->isPointerTy()) { in emitOutlinedFunctionCall()
3048 CGF.Builder.CreatePointerBitCastOrAddrSpaceCast(NativeArg, TargetType)); in emitOutlinedFunctionCall()

12