| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| H A D | RISCVTargetTransformInfo.h | 99 bool isLegalMaskedLoadStore(Type *DataType, Align Alignment) { in isLegalMaskedLoadStore() argument 111 return isLegalElementTypeForRVV(DataType->getScalarType()); in isLegalMaskedLoadStore() 114 bool isLegalMaskedLoad(Type *DataType, Align Alignment) { in isLegalMaskedLoad() argument 115 return isLegalMaskedLoadStore(DataType, Alignment); in isLegalMaskedLoad() 117 bool isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() argument 118 return isLegalMaskedLoadStore(DataType, Alignment); in isLegalMaskedStore() 133 return isLegalElementTypeForRVV(DataType->getScalarType()); in isLegalMaskedGatherScatter() 136 bool isLegalMaskedGather(Type *DataType, Align Alignment) { in isLegalMaskedGather() argument 137 return isLegalMaskedGatherScatter(DataType, Alignment); in isLegalMaskedGather() 139 bool isLegalMaskedScatter(Type *DataType, Align Alignment) { in isLegalMaskedScatter() argument [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CommandLine.h | 563 DataType Value; 598 template <class DataType> 599 struct OptionValueBase<DataType, false> : OptionValueCopy<DataType> { 612 : OptionValueBase<DataType, std::is_class<DataType>::value> { 1353 DataType &getValue() { 1372 class opt_storage<DataType, false, true> : public DataType { 1392 template <class DataType> class opt_storage<DataType, false, false> { 1394 DataType Value; 1399 opt_storage() : Value(DataType()), Default(DataType()) {} 1557 template <class DataType> class list_storage<DataType, bool> { [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64TargetTransformInfo.h | 247 return !DataType->getScalarType()->isIntegerTy(1) && in isLegalMaskedLoadStore() 251 bool isLegalMaskedLoad(Type *DataType, Align Alignment) { in isLegalMaskedLoad() argument 252 return isLegalMaskedLoadStore(DataType, Alignment); in isLegalMaskedLoad() 255 bool isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() argument 256 return isLegalMaskedLoadStore(DataType, Alignment); in isLegalMaskedStore() 259 bool isLegalMaskedGatherScatter(Type *DataType) const { in isLegalMaskedGatherScatter() argument 269 return !DataType->getScalarType()->isIntegerTy(1) && in isLegalMaskedGatherScatter() 274 return isLegalMaskedGatherScatter(DataType); in isLegalMaskedGather() 277 return isLegalMaskedGatherScatter(DataType); in isLegalMaskedScatter() 280 bool isLegalNTStore(Type *DataType, Align Alignment) { in isLegalNTStore() argument [all …]
|
| /freebsd-13.1/stand/efi/include/Protocol/ |
| H A D | Ip4Config2.h | 212 IN EFI_IP4_CONFIG2_DATA_TYPE DataType, 254 IN EFI_IP4_CONFIG2_DATA_TYPE DataType, 283 IN EFI_IP4_CONFIG2_DATA_TYPE DataType, 304 IN EFI_IP4_CONFIG2_DATA_TYPE DataType,
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/ |
| H A D | X86TargetTransformInfo.h | 227 bool isLegalMaskedLoad(Type *DataType, Align Alignment); 228 bool isLegalMaskedStore(Type *DataType, Align Alignment); 229 bool isLegalNTLoad(Type *DataType, Align Alignment); 230 bool isLegalNTStore(Type *DataType, Align Alignment); 231 bool isLegalMaskedGather(Type *DataType, Align Alignment); 232 bool isLegalMaskedScatter(Type *DataType, Align Alignment); 233 bool isLegalMaskedExpandLoad(Type *DataType); 234 bool isLegalMaskedCompressStore(Type *DataType); 235 bool hasDivRemOp(Type *DataType, bool IsSigned);
|
| H A D | X86TargetTransformInfo.cpp | 4701 bool X86TTIImpl::isLegalMaskedStore(Type *DataType, Align Alignment) { in isLegalMaskedStore() argument 4702 return isLegalMaskedLoad(DataType, Alignment); in isLegalMaskedStore() 4705 bool X86TTIImpl::isLegalNTLoad(Type *DataType, Align Alignment) { in isLegalNTLoad() argument 4706 unsigned DataSize = DL.getTypeStoreSize(DataType); in isLegalNTLoad() 4716 bool X86TTIImpl::isLegalNTStore(Type *DataType, Align Alignment) { in isLegalNTStore() argument 4717 unsigned DataSize = DL.getTypeStoreSize(DataType); in isLegalNTStore() 4721 if (ST->hasSSE4A() && (DataType->isFloatTy() || DataType->isDoubleTy())) in isLegalNTStore() 4814 bool X86TTIImpl::isLegalMaskedScatter(Type *DataType, Align Alignment) { in isLegalMaskedScatter() argument 4818 return isLegalMaskedGather(DataType, Alignment); in isLegalMaskedScatter() 4821 bool X86TTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() argument [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | TargetTransformInfo.h | 659 bool isLegalMaskedCompressStore(Type *DataType) const; 661 bool isLegalMaskedExpandLoad(Type *DataType) const; 668 bool hasDivRemOp(Type *DataType, bool IsSigned) const; 1866 return Impl.isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore() 1869 return Impl.isLegalMaskedLoad(DataType, Alignment); in isLegalMaskedLoad() 1872 return Impl.isLegalNTStore(DataType, Alignment); in isLegalNTStore() 1875 return Impl.isLegalNTLoad(DataType, Alignment); in isLegalNTLoad() 1881 return Impl.isLegalMaskedGather(DataType, Alignment); in isLegalMaskedGather() 1884 return Impl.isLegalMaskedCompressStore(DataType); in isLegalMaskedCompressStore() 1887 return Impl.isLegalMaskedExpandLoad(DataType); in isLegalMaskedExpandLoad() [all …]
|
| H A D | TargetTransformInfoImpl.h | 231 bool isLegalMaskedStore(Type *DataType, Align Alignment) const { in isLegalMaskedStore() argument 235 bool isLegalMaskedLoad(Type *DataType, Align Alignment) const { in isLegalMaskedLoad() argument 239 bool isLegalNTStore(Type *DataType, Align Alignment) const { in isLegalNTStore() argument 242 unsigned DataSize = DL.getTypeStoreSize(DataType); in isLegalNTStore() 246 bool isLegalNTLoad(Type *DataType, Align Alignment) const { in isLegalNTLoad() argument 249 unsigned DataSize = DL.getTypeStoreSize(DataType); in isLegalNTLoad() 253 bool isLegalMaskedScatter(Type *DataType, Align Alignment) const { in isLegalMaskedScatter() argument 257 bool isLegalMaskedGather(Type *DataType, Align Alignment) const { in isLegalMaskedGather() argument 261 bool isLegalMaskedCompressStore(Type *DataType) const { return false; } in isLegalMaskedCompressStore() argument 263 bool isLegalMaskedExpandLoad(Type *DataType) const { return false; } in isLegalMaskedExpandLoad() argument [all …]
|
| /freebsd-13.1/sys/contrib/dev/acpica/components/executer/ |
| H A D | exnames.c | 387 ACPI_OBJECT_TYPE DataType, in AcpiExGetNameString() argument 403 if (ACPI_TYPE_LOCAL_REGION_FIELD == DataType || in AcpiExGetNameString() 404 ACPI_TYPE_LOCAL_BANK_FIELD == DataType || in AcpiExGetNameString() 405 ACPI_TYPE_LOCAL_INDEX_FIELD == DataType) in AcpiExGetNameString()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | TargetTransformInfo.cpp | 371 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType, in isLegalMaskedStore() argument 373 return TTIImpl->isLegalMaskedStore(DataType, Alignment); in isLegalMaskedStore() 376 bool TargetTransformInfo::isLegalMaskedLoad(Type *DataType, in isLegalMaskedLoad() argument 378 return TTIImpl->isLegalMaskedLoad(DataType, Alignment); in isLegalMaskedLoad() 381 bool TargetTransformInfo::isLegalNTStore(Type *DataType, in isLegalNTStore() argument 383 return TTIImpl->isLegalNTStore(DataType, Alignment); in isLegalNTStore() 387 return TTIImpl->isLegalNTLoad(DataType, Alignment); in isLegalNTLoad() 392 return TTIImpl->isLegalMaskedGather(DataType, Alignment); in isLegalMaskedGather() 401 return TTIImpl->isLegalMaskedCompressStore(DataType); in isLegalMaskedCompressStore() 405 return TTIImpl->isLegalMaskedExpandLoad(DataType); in isLegalMaskedExpandLoad() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonTargetTransformInfo.cpp | 325 bool HexagonTTIImpl::isLegalMaskedStore(Type *DataType, Align /*Alignment*/) { in isLegalMaskedStore() argument 326 return HexagonMaskedVMem && ST.isTypeForHVX(DataType); in isLegalMaskedStore() 329 bool HexagonTTIImpl::isLegalMaskedLoad(Type *DataType, Align /*Alignment*/) { in isLegalMaskedLoad() argument 330 return HexagonMaskedVMem && ST.isTypeForHVX(DataType); in isLegalMaskedLoad()
|
| H A D | HexagonTargetTransformInfo.h | 164 bool isLegalMaskedStore(Type *DataType, Align Alignment); 165 bool isLegalMaskedLoad(Type *DataType, Align Alignment);
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | RangeMap.h | 374 typedef T DataType; typedef 376 DataType data; 382 RangeData(B base, S size, DataType d) : Range<B, S>(base, size), data(d) {} in RangeData() 651 typedef T DataType; typedef 654 DataType data; 658 AddressData(B a, DataType d) : addr(a), data(d) {} in AddressData()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | APValue.h | 303 UnionData, AddrLabelDiffData> DataType; 304 static const size_t DataSize = sizeof(DataType); 306 DataType Data;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZTargetTransformInfo.h | 78 bool hasDivRemOp(Type *DataType, bool IsSigned);
|
| H A D | SystemZTargetTransformInfo.cpp | 359 bool SystemZTTIImpl::hasDivRemOp(Type *DataType, bool IsSigned) { in hasDivRemOp() argument 360 EVT VT = TLI->getValueType(DL, DataType); in hasDivRemOp()
|
| /freebsd-13.1/sys/dev/pms/RefTisa/tisa/sassata/common/ |
| H A D | tdioctl.c | 1947 if (FORENSIC_DATA_TYPE_CHECK_FATAL == pForensicData->DataType) in ostiGetForensicDataIOCTLRsp() 1955 switch (pForensicData->DataType) in ostiGetForensicDataIOCTLRsp() 1971 … TI_DBG1(("ostiGetForensicDataIOCTLRsp: forensic data type error %d\n", pForensicData->DataType)); in ostiGetForensicDataIOCTLRsp() 3064 ForensicData.DataType = pForensicDataPayload->DataType; in tdsaForensicDataGetIoctl() 3066 switch (ForensicData.DataType) in tdsaForensicDataGetIoctl() 3097 …_DBG1(("tdsaGetForensicDataIoctl: forensic data type error %d\n", pForensicDataPayload->DataType)); in tdsaForensicDataGetIoctl()
|
| H A D | tdmisc.c | 542 forensicData.DataType = TYPE_FATAL; in tiCOMReset() 560 …TI_DBG1(("tiCOMReset:saGetForensicData type %d read 0x%x bytes\n", forensicData.DataType, fo… in tiCOMReset() 1818 forensicData.DataType = TYPE_NON_FATAL; in tiCOMShutDown() 1836 …TI_DBG1(("tiCOMShutDown:saGetForensicData type %d read 0x%x bytes\n", forensicData.DataType, … in tiCOMShutDown()
|
| H A D | tdioctl.h | 552 bit32 DataType; member
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/ |
| H A D | RenderScriptRuntime.cpp | 526 enum DataType { enum 567 empirical_type<DataType> 2002 elem.type = static_cast<RenderScriptRuntime::Element::DataType>(results[0]); in JITElementPacked() 2321 const Element::DataType type = *elem.type.get(); in SetElementSize() 2508 target_type_name_idx = static_cast<Element::DataType>( in LoadAllocation() 2514 head_type_name_idx = static_cast<Element::DataType>( in LoadAllocation() 3206 const Element::DataType type = *alloc->element.type.get(); in DumpAllocation() 3410 Element::DataType type = *alloc->element.type.get(); in ListAllocations() 3419 static_cast<Element::DataType>((type - Element::RS_TYPE_ELEMENT) + in ListAllocations()
|
| /freebsd-13.1/sys/contrib/dev/acpica/include/ |
| H A D | acinterp.h | 695 ACPI_OBJECT_TYPE DataType,
|
| H A D | actbl1.h | 1831 UINT8 DataType; member
|
| /freebsd-13.1/sys/dev/pms/RefTisa/sallsdk/spc/ |
| H A D | saioctlcmd.c | 2868 if(forensicData->DataType == TYPE_GSM_SPACE) in siGetForensicData() 2934 else if(forensicData->DataType == TYPE_INBOUND_QUEUE ) in siGetForensicData() 2951 else if(forensicData->DataType == TYPE_OUTBOUND_QUEUE ) in siGetForensicData() 2971 else if(forensicData->DataType == TYPE_NON_FATAL ) in siGetForensicData() 2981 else if(forensicData->DataType == TYPE_FATAL ) in siGetForensicData()
|
| /freebsd-13.1/sys/contrib/dev/acpica/common/ |
| H A D | dmtbinfo1.c | 1138 {ACPI_DMT_UINT8, ACPI_HMAT1_OFFSET (DataType), "Data Type", 0},
|
| /freebsd-13.1/sys/dev/pms/RefTisa/sallsdk/api/ |
| H A D | sa.h | 1901 bit32 DataType; member
|