Searched refs:DataType (Results 1 - 22 of 22) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DCommandLine.h528 template <class DataType> struct OptionValue;
532 template <class DataType, bool isClass>
535 using WrapperType = OptionValue<DataType>;
539 const DataType &getValue() const { llvm_unreachable("no default value"); }
544 bool compare(const DataType & /*V*/) const { return false; }
555 template <class DataType> class OptionValueCopy : public GenericOptionValue {
556 DataType Value;
569 const DataType &getValue() const {
574 void setValue(const DataType &V) {
579 bool compare(const DataType
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.h188 bool isLegalMaskedLoad(Type *DataType, MaybeAlign Alignment);
189 bool isLegalMaskedStore(Type *DataType, MaybeAlign Alignment);
190 bool isLegalNTLoad(Type *DataType, Align Alignment);
191 bool isLegalNTStore(Type *DataType, Align Alignment);
192 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment);
193 bool isLegalMaskedScatter(Type *DataType, MaybeAlign Alignment);
194 bool isLegalMaskedExpandLoad(Type *DataType);
195 bool isLegalMaskedCompressStore(Type *DataType);
196 bool hasDivRemOp(Type *DataType, bool IsSigned);
H A DX86TargetTransformInfo.cpp3363 bool X86TTIImpl::isLegalMaskedStore(Type *DataType, MaybeAlign Alignment) { argument
3364 return isLegalMaskedLoad(DataType, Alignment);
3367 bool X86TTIImpl::isLegalNTLoad(Type *DataType, Align Alignment) { argument
3368 unsigned DataSize = DL.getTypeStoreSize(DataType);
3378 bool X86TTIImpl::isLegalNTStore(Type *DataType, Align Alignment) { argument
3379 unsigned DataSize = DL.getTypeStoreSize(DataType);
3383 if (ST->hasSSE4A() && (DataType->isFloatTy() || DataType->isDoubleTy()))
3468 bool X86TTIImpl::isLegalMaskedScatter(Type *DataType, MaybeAlign Alignment) { argument
3472 return isLegalMaskedGather(DataType, Alignmen
3475 hasDivRemOp(Type *DataType, bool IsSigned) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h152 bool isLegalMaskedLoadStore(Type *DataType, MaybeAlign Alignment) { argument
153 if (!isa<VectorType>(DataType) || !ST->hasSVE())
156 Type *Ty = DataType->getVectorElementType();
167 bool isLegalMaskedLoad(Type *DataType, MaybeAlign Alignment) { argument
168 return isLegalMaskedLoadStore(DataType, Alignment);
171 bool isLegalMaskedStore(Type *DataType, MaybeAlign Alignment) { argument
172 return isLegalMaskedLoadStore(DataType, Alignment);
/freebsd-11-stable/sys/contrib/dev/acpica/components/executer/
H A Dexnames.c375 * PARAMETERS: DataType - Object type to be associated with this
390 ACPI_OBJECT_TYPE DataType,
406 if (ACPI_TYPE_LOCAL_REGION_FIELD == DataType ||
407 ACPI_TYPE_LOCAL_BANK_FIELD == DataType ||
408 ACPI_TYPE_LOCAL_INDEX_FIELD == DataType)
425 * DataType is not a field name.
389 AcpiExGetNameString( ACPI_OBJECT_TYPE DataType, UINT8 *InAmlAddress, char **OutNameString, UINT32 *OutNameLength) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h590 bool isLegalMaskedStore(Type *DataType, MaybeAlign Alignment) const;
592 bool isLegalMaskedLoad(Type *DataType, MaybeAlign Alignment) const;
595 bool isLegalNTStore(Type *DataType, Align Alignment) const;
597 bool isLegalNTLoad(Type *DataType, Align Alignment) const;
600 bool isLegalMaskedScatter(Type *DataType, MaybeAlign Alignment) const;
602 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) const;
605 bool isLegalMaskedCompressStore(Type *DataType) const;
607 bool isLegalMaskedExpandLoad(Type *DataType) const;
614 bool hasDivRemOp(Type *DataType, bool IsSigned) const;
1236 virtual bool isLegalMaskedStore(Type *DataType, MaybeAlig
[all...]
H A DTargetTransformInfoImpl.h257 bool isLegalMaskedStore(Type *DataType, MaybeAlign Alignment) { return false; } argument
259 bool isLegalMaskedLoad(Type *DataType, MaybeAlign Alignment) { return false; } argument
261 bool isLegalNTStore(Type *DataType, Align Alignment) { argument
264 unsigned DataSize = DL.getTypeStoreSize(DataType);
268 bool isLegalNTLoad(Type *DataType, Align Alignment) { argument
271 unsigned DataSize = DL.getTypeStoreSize(DataType);
275 bool isLegalMaskedScatter(Type *DataType, MaybeAlign Alignment) { argument
279 bool isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) { argument
283 bool isLegalMaskedCompressStore(Type *DataType) { return false; } argument
285 bool isLegalMaskedExpandLoad(Type *DataType) { retur argument
287 hasDivRemOp(Type *DataType, bool IsSigned) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp299 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType, argument
301 return TTIImpl->isLegalMaskedStore(DataType, Alignment);
304 bool TargetTransformInfo::isLegalMaskedLoad(Type *DataType, argument
306 return TTIImpl->isLegalMaskedLoad(DataType, Alignment);
309 bool TargetTransformInfo::isLegalNTStore(Type *DataType, argument
311 return TTIImpl->isLegalNTStore(DataType, Alignment);
314 bool TargetTransformInfo::isLegalNTLoad(Type *DataType, Align Alignment) const { argument
315 return TTIImpl->isLegalNTLoad(DataType, Alignment);
318 bool TargetTransformInfo::isLegalMaskedGather(Type *DataType, argument
320 return TTIImpl->isLegalMaskedGather(DataType, Alignmen
323 isLegalMaskedScatter(Type *DataType, MaybeAlign Alignment) const argument
336 hasDivRemOp(Type *DataType, bool IsSigned) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZTargetTransformInfo.h66 bool hasDivRemOp(Type *DataType, bool IsSigned);
H A DSystemZTargetTransformInfo.cpp326 bool SystemZTTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { argument
327 EVT VT = TLI->getValueType(DL, DataType);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DRangeMap.h593 typedef T DataType; typedef in struct:lldb_private::RangeData
595 DataType data;
601 RangeData(B base, S size, DataType d) : Range<B, S>(base, size), data(d) {}
816 typedef T DataType; typedef in struct:lldb_private::AddressData
819 DataType data;
823 AddressData(B a, DataType d) : addr(a), data(d) {}
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DAPValue.h279 UnionData, AddrLabelDiffData> DataType; typedef in class:clang::APValue
280 static const size_t DataSize = sizeof(DataType);
282 DataType Data;
/freebsd-11-stable/sys/dev/pms/RefTisa/tisa/sassata/common/
H A Dtdioctl.h552 bit32 DataType; member in struct:tdForensicDataPayload_s
H A Dtdmisc.c542 forensicData.DataType = TYPE_FATAL;
560 TI_DBG1(("tiCOMReset:saGetForensicData type %d read 0x%x bytes\n", forensicData.DataType, forensicData.dataBuf.directOffset ));
1818 forensicData.DataType = TYPE_NON_FATAL;
1836 TI_DBG1(("tiCOMShutDown:saGetForensicData type %d read 0x%x bytes\n", forensicData.DataType, forensicData.dataBuf.directOffset ));
H A Dtdioctl.c1947 if (FORENSIC_DATA_TYPE_CHECK_FATAL == pForensicData->DataType)
1955 switch (pForensicData->DataType)
1971 TI_DBG1(("ostiGetForensicDataIOCTLRsp: forensic data type error %d\n", pForensicData->DataType));
3064 ForensicData.DataType = pForensicDataPayload->DataType;
3066 switch (ForensicData.DataType)
3097 TI_DBG1(("tdsaGetForensicDataIoctl: forensic data type error %d\n", pForensicDataPayload->DataType));
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Dacinterp.h664 ACPI_OBJECT_TYPE DataType,
H A Dactbl1.h992 UINT8 DataType; member in struct:acpi_hmat_locality
1013 /* Values for DataType field above */
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.cpp524 enum DataType { enum in struct:RenderScriptRuntime::Element
565 empirical_type<DataType>
626 uint16_t type; // DataType enum
636 // Maps Allocation DataType enum and vector size to printable strings using
1992 elem.type = static_cast<RenderScriptRuntime::Element::DataType>(results[0]);
2311 const Element::DataType type = *elem.type.get();
2498 target_type_name_idx = static_cast<Element::DataType>(
2504 head_type_name_idx = static_cast<Element::DataType>(
3196 const Element::DataType type = *alloc->element.type.get();
3400 Element::DataType typ
[all...]
/freebsd-11-stable/sys/dev/pms/RefTisa/sallsdk/spc/
H A Dsaioctlcmd.c2868 if(forensicData->DataType == TYPE_GSM_SPACE)
2934 else if(forensicData->DataType == TYPE_INBOUND_QUEUE )
2951 else if(forensicData->DataType == TYPE_OUTBOUND_QUEUE )
2971 else if(forensicData->DataType == TYPE_NON_FATAL )
2981 else if(forensicData->DataType == TYPE_FATAL )
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp1202 /// for the given \p DataType and kind of access to \p Ptr.
1203 bool isLegalMaskedStore(Type *DataType, Value *Ptr, MaybeAlign Alignment) { argument
1205 TTI.isLegalMaskedStore(DataType, Alignment);
1209 /// for the given \p DataType and kind of access to \p Ptr.
1210 bool isLegalMaskedLoad(Type *DataType, Value *Ptr, MaybeAlign Alignment) { argument
1212 TTI.isLegalMaskedLoad(DataType, Alignment);
1216 /// for the given \p DataType.
1217 bool isLegalMaskedScatter(Type *DataType, MaybeAlign Alignment) { argument
1218 return TTI.isLegalMaskedScatter(DataType, Alignment);
1222 /// for the given \p DataType
1223 isLegalMaskedGather(Type *DataType, MaybeAlign Alignment) argument
[all...]
/freebsd-11-stable/sys/dev/pms/RefTisa/sallsdk/api/
H A Dsa.h1901 bit32 DataType; member in struct:__anon11495
/freebsd-11-stable/sys/contrib/dev/acpica/common/
H A Ddmtbinfo.c1650 {ACPI_DMT_UINT8, ACPI_HMAT1_OFFSET (DataType), "Data Type", 0},

Completed in 438 milliseconds