Home
last modified time | relevance | path

Searched refs:DataType (Results 1 – 10 of 10) sorted by relevance

/minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/
H A DCommandLine.h354 template <class DataType> struct OptionValue;
358 template <class DataType, bool isClass>
361 typedef OptionValue<DataType> WrapperType;
365 const DataType &getValue() const { llvm_unreachable("no default value"); } in getValue()
370 bool compare(const DataType & /*V*/) const { return false; } in compare()
378 template <class DataType> class OptionValueCopy : public GenericOptionValue {
379 DataType Value;
387 const DataType &getValue() const { in getValue()
392 void setValue(const DataType &V) { in setValue()
397 bool compare(const DataType &V) const { return Valid && (Value != V); } in compare()
[all …]
/minix3/minix/drivers/power/acpi/executer/
H A Dexnames.c281 ACPI_OBJECT_TYPE DataType, in AcpiExGetNameString() argument
297 if (ACPI_TYPE_LOCAL_REGION_FIELD == DataType || in AcpiExGetNameString()
298 ACPI_TYPE_LOCAL_BANK_FIELD == DataType || in AcpiExGetNameString()
299 ACPI_TYPE_LOCAL_INDEX_FIELD == DataType) in AcpiExGetNameString()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h277 virtual bool isLegalMaskedStore(Type *DataType, int Consecutive) const;
278 virtual bool isLegalMaskedLoad (Type *DataType, int Consecutive) const;
/minix3/external/bsd/llvm/dist/clang/include/clang/AST/
H A DAPValue.h114 UnionData, AddrLabelDiffData> DataType; typedef
115 static const size_t DataSize = sizeof(DataType);
117 DataType Data;
/minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/
H A Ddestructors.cpp418 template <class DataType> class opt : public Option {};
/minix3/external/bsd/llvm/dist/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp104 bool TargetTransformInfo::isLegalMaskedLoad(Type *DataType, in isLegalMaskedLoad() argument
109 bool TargetTransformInfo::isLegalMaskedStore(Type *DataType, in isLegalMaskedStore() argument
/minix3/external/bsd/llvm/dist/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp114 bool isLegalMaskedLoad (Type *DataType, int Consecutive) const override;
115 bool isLegalMaskedStore(Type *DataType, int Consecutive) const override;
1173 bool X86TTI::isLegalMaskedStore(Type *DataType, int Consecutive) const { in isLegalMaskedStore() argument
1174 return isLegalMaskedLoad(DataType, Consecutive); in isLegalMaskedStore()
/minix3/minix/drivers/power/acpi/include/
H A Dacinterp.h527 ACPI_OBJECT_TYPE DataType,
/minix3/external/bsd/llvm/dist/llvm/docs/
H A DCommandLine.rst1390 template <class DataType, bool ExternalStorage = false,
1391 class ParserClass = parser<DataType> >
1419 template <class DataType, class Storage = bool,
1420 class ParserClass = parser<DataType> >
1441 template <class DataType, class Storage = bool,
1442 class ParserClass = parser<DataType> >
/minix3/external/bsd/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp774 bool isLegalMaskedStore(Type *DataType, Value *Ptr) { in isLegalMaskedStore() argument
775 return TTI->isLegalMaskedStore(DataType, isConsecutivePtr(Ptr)); in isLegalMaskedStore()
779 bool isLegalMaskedLoad(Type *DataType, Value *Ptr) { in isLegalMaskedLoad() argument
780 return TTI->isLegalMaskedLoad(DataType, isConsecutivePtr(Ptr)); in isLegalMaskedLoad()