| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | BasicValueFactory.h | 170 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 APSIntPtr 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 D | SMTConv.h | 319 APSIntType TargetType(ToWidth, !ToTy->isSignedIntegerOrEnumerationType()); in castAPSInt() 320 return TargetType.convert(V); in castAPSInt()
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | CXXDeleteChecker.cpp | 163 QualType TargetType = in checkTypedDeleteExpr() local 166 OS << "Deleting an array of '" << TargetType.getAsString() in checkTypedDeleteExpr() 193 QualType TargetType = CastE->getType()->getPointeeType(); in VisitNode() local 195 if (SourceType.isNull() || TargetType.isNull() || SourceType == TargetType) in VisitNode() 211 << TargetType.getAsString() << "' here"; in VisitNode()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVLegalizePointerCast.cpp | 72 // and create a new vector of type |TargetType|. |TargetType| must be a vector 73 // type, and element types of |TargetType| and |SourceType| must match. 76 FixedVectorType *TargetType, Value *Source) { in loadVectorFromVector() argument 78 assert(TargetType->getElementType() == SourceType->getElementType()); in loadVectorFromVector() 79 assert(TargetType->getNumElements() < SourceType->getNumElements()); in loadVectorFromVector() 84 SmallVector<int> Mask(/* Size= */ TargetType->getNumElements()); in loadVectorFromVector() 85 for (unsigned I = 0; I < TargetType->getNumElements(); ++I) in loadVectorFromVector() 88 buildAssignType(B, TargetType, Output); in loadVectorFromVector()
|
| H A D | SPIRVBuiltins.cpp | 3243 SPIRVType *TargetType; in lowerBuiltinType() local 3245 TargetType = getInlineSpirvType(BuiltinType, MIRBuilder, GR); in lowerBuiltinType() 3247 TargetType = getVulkanBufferType(BuiltinType, MIRBuilder, GR); in lowerBuiltinType() 3249 TargetType = getLayoutType(BuiltinType, MIRBuilder, GR); in lowerBuiltinType() 3256 // "Lower" the BuiltinType into TargetType. The following get<...>Type in lowerBuiltinType() 3264 TargetType = GR->getImageType(BuiltinType, AccessQual, MIRBuilder); in lowerBuiltinType() 3267 TargetType = getPipeType(BuiltinType, MIRBuilder, GR); in lowerBuiltinType() 3270 TargetType = GR->getOrCreateOpTypeDeviceEvent(MIRBuilder); in lowerBuiltinType() 3273 TargetType = getSamplerType(MIRBuilder, GR); in lowerBuiltinType() 3276 TargetType = getSampledImageType(BuiltinType, MIRBuilder, GR); in lowerBuiltinType() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | Store.cpp | 319 QualType TargetType) { in evalBaseToDerived() argument 325 TargetType = TargetType->getPointeeType(); in evalBaseToDerived() 326 assert(!TargetType.isNull()); in evalBaseToDerived() 327 const CXXRecordDecl *TargetClass = TargetType->getAsCXXRecordDecl(); in evalBaseToDerived() 328 if (!TargetClass && !TargetType->isVoidType()) in evalBaseToDerived() 341 if (!TargetType->isVoidType() && MRClass->hasDefinition()) { in evalBaseToDerived() 357 if (TargetType->isVoidType()) in evalBaseToDerived() 390 return loc::MemRegionVal(GetElementZeroRegion(SR, TargetType)); in evalBaseToDerived()
|
| /freebsd/contrib/llvm-project/openmp/runtime/src/ |
| H A D | kmp.h | 4823 template <typename SourceType, typename TargetType, 4824 bool isSourceSmaller = (sizeof(SourceType) < sizeof(TargetType)), 4825 bool isSourceEqual = (sizeof(SourceType) == sizeof(TargetType)), 4827 bool isTargetSigned = std::is_signed<TargetType>::value> 4831 template <typename SourceType, typename TargetType> 4832 struct kmp_convert<SourceType, TargetType, true, false, true, true> { 4833 static TargetType to(SourceType src) { return (TargetType)src; } 4836 template <typename SourceType, typename TargetType> 4837 struct kmp_convert<SourceType, TargetType, false, true, true, true> { 4838 static TargetType to(SourceType src) { return src; } [all …]
|
| /freebsd/sys/contrib/dev/acpica/components/executer/ |
| H A D | exstore.c | 359 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 D | exstoren.c | 168 * TargetType - Current type of the target 181 ACPI_OBJECT_TYPE TargetType, in AcpiExResolveObject() argument 193 switch (TargetType) in AcpiExResolveObject() 242 AcpiUtGetTypeName (TargetType))); in AcpiExResolveObject()
|
| H A D | exresolv.c | 309 switch (StackDesc->Reference.TargetType) in AcpiExResolveObjectToValue() 358 "Unknown TargetType 0x%X in Index/Reference object %p", in AcpiExResolveObjectToValue() 359 StackDesc->Reference.TargetType, StackDesc)); in AcpiExResolveObjectToValue() 587 Type = ObjDesc->Reference.TargetType; in AcpiExResolveMultiple()
|
| H A D | exoparg2.c | 526 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 D | exoparg1.c | 1128 switch (Operand[0]->Reference.TargetType) in AcpiExOpcode_1A_0T_1R() 1177 "Unknown Index TargetType 0x%X in reference object %p", in AcpiExOpcode_1A_0T_1R() 1178 Operand[0]->Reference.TargetType, Operand[0])); in AcpiExOpcode_1A_0T_1R()
|
| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenOpenACC.cpp | 45 mlir::IntegerType targetType = mlir::IntegerType::get( in emitOpenACCIntExpr() local 52 exprLoc, targetType, expr); in emitOpenACCIntExpr()
|
| H A D | CIRGenStmtOpenACC.cpp | 194 mlir::IntegerType targetType = mlir::IntegerType::get( in emitOpenACCWaitConstruct() local 201 exprLoc, targetType, expr); in emitOpenACCWaitConstruct()
|
| H A D | CIRGenOpenACCClause.cpp | 93 mlir::IntegerType targetType = mlir::IntegerType::get( in createCondition() local 97 exprLoc, targetType, condition); in createCondition()
|
| /freebsd/crypto/krb5/src/windows/leash/htmlhelp/ |
| H A D | Makefile.in | 3 TARGETTYPE=NONE
|
| /freebsd/sys/contrib/dev/ath/ath_hal/ar9300/ |
| H A D | sources | 28 TARGETTYPE=LIBRARY
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUISelLowering.cpp | 4117 EVT TargetType = VT.isVector() ? VT.changeVectorElementType(TargetScalarType) in performShlCombine() local 4126 TargetType); in performShlCombine() 4128 SDValue TruncShiftAmt = DAG.getNode(ISD::TRUNCATE, SL, TargetType, RHS); in performShlCombine() 4130 DAG.getConstant(TargetScalarType.getSizeInBits() - 1, SL, TargetType); in performShlCombine() 4133 ShiftAmt = DAG.getNode(ISD::AND, SL, TargetType, TruncShiftAmt, ShiftMask); in performShlCombine() 4136 SDValue Lo = DAG.getNode(ISD::TRUNCATE, SL, TargetType, LHS); in performShlCombine() 4138 DAG.getNode(ISD::SHL, SL, TargetType, Lo, ShiftAmt, N->getFlags()); in performShlCombine() 4144 EVT ConcatType = TargetType.getDoubleNumVectorElementsVT(*DAG.getContext()); in performShlCombine() 4145 unsigned NElts = TargetType.getVectorNumElements(); in performShlCombine() 4154 EVT ConcatType = EVT::getVectorVT(*DAG.getContext(), TargetType, 2); in performShlCombine() [all …]
|
| H A D | AMDGPULowerBufferFatPointers.cpp | 677 Value *arrayToVector(Value *V, Type *TargetType, const Twine &Name); 686 Value *makeLegalNonAggregate(Value *V, Type *TargetType, const Twine &Name); 750 Type *TargetType, in arrayToVector() argument 752 Value *VectorRes = PoisonValue::get(TargetType); in arrayToVector() 753 auto *VT = cast<FixedVectorType>(TargetType); in arrayToVector() 809 Value *V, Type *TargetType, const Twine &Name) { in makeLegalNonAggregate() argument 812 TypeSize TargetSize = DL.getTypeSizeInBits(TargetType); in makeLegalNonAggregate() 821 return IRB.CreateBitCast(V, TargetType, Name + ".legal"); in makeLegalNonAggregate()
|
| /freebsd/sys/contrib/device-tree/Bindings/arm/ |
| H A D | apple.yaml | 109 compatible = "apple,<targettype>", "apple,<socid>", "apple,arm-platform"; 111 <targettype> represents the board/device and comes from the `target-type`
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | TargetTransformInfoImpl.h | 1251 Type *TargetType = nullptr; in getGEPCost() local 1254 // the basis, therefore TargetType is a nullptr. in getGEPCost() 1259 TargetType = GTI.getIndexedType(); in getGEPCost() 1274 if (TargetType->isScalableTy()) in getGEPCost() 1301 AccessType = TargetType; in getGEPCost()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | InferAddressSpaces.cpp | 768 Type *TargetType = in cloneConstantExprWithNewAddressSpace() local 784 return ConstantExpr::getBitCast(cast<Constant>(NewOperand), TargetType); in cloneConstantExprWithNewAddressSpace() 785 return ConstantExpr::getAddrSpaceCast(CE, TargetType); in cloneConstantExprWithNewAddressSpace() 829 return CE->getWithOperands(NewOperands, TargetType, /*OnlyIfReduced=*/false, in cloneConstantExprWithNewAddressSpace() 833 return CE->getWithOperands(NewOperands, TargetType); in cloneConstantExprWithNewAddressSpace()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | SemaObjC.h | 177 void checkDictionaryLiteral(QualType TargetType, 182 void checkArrayLiteral(QualType TargetType, ObjCArrayLiteral *ArrayLiteral);
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaObjC.cpp | 2355 void SemaObjC::checkArrayLiteral(QualType TargetType, in checkArrayLiteral() argument 2360 const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>(); in checkArrayLiteral() 2381 QualType TargetType, ObjCDictionaryLiteral *DictionaryLiteral) { in checkDictionaryLiteral() argument 2385 const auto *TargetObjCPtr = TargetType->getAs<ObjCObjectPointerType>(); in checkDictionaryLiteral()
|
| /freebsd/sys/contrib/dev/acpica/include/ |
| H A D | acinterp.h | 728 ACPI_OBJECT_TYPE TargetType,
|