Searched refs:FlagType (Results 1 – 9 of 9) sorted by relevance
/freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
H A D | arm_sve_sme_incl.td | 173 class FlagType<int val> { 179 def NoFlags : FlagType<0x00000000>; 180 def FirstEltType : FlagType<0x00000001>; 183 def EltTypeMask : FlagType<0x0000000f>; 184 def FirstMemEltType : FlagType<0x00000010>; 187 def MemEltTypeMask : FlagType<0x00000070>; 188 def FirstMergeTypeMask : FlagType<0x00000080>; 191 def MergeTypeMask : FlagType<0x00000380>; 192 def FirstSplatOperand : FlagType<0x00000400>; 197 def SplatOperandMask : FlagType<0x00001C00>; [all …]
|
H A D | arm_sve.td | 594 …tZPZZ<string name, string types, string m_intrinsic, string x_intrinsic, list<FlagType> flags=[]> { 623 …ZPZZZ<string name, string types, string m_intrinsic, string x_intrinsic, list<FlagType> flags=[]> { 777 multiclass SInstCLS<string name, string types, string intrinsic, list<FlagType> flags=[]> { 924 string intrinsic, list<FlagType> flags = [IsOverloadNone]> { 932 list<FlagType> flags = [IsOverloadNone]> { 1410 …string name, string types, string pat_v, string pat_n, string intrinsic, list<FlagType> flags=[]> { 1469 multiclass SInstPairwise<string name, string types, string intrinsic, list<FlagType> flags=[]> { 2264 …multiclass PMOV_TO_PRED<string name, string types, string intrinsic, list<FlagType> flags=[], ImmC… 2274 …multiclass PMOV_TO_VEC<string name, string types, string intrinsic, list<FlagType> flags=[], ImmCh…
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | flags_parser.h | 19 enum class FlagType : u8 { enum 26 void registerFlag(const char *Name, const char *Desc, FlagType Type, 37 FlagType Type;
|
H A D | flags_parser.cpp | 140 case FlagType::FT_bool: in runHandler() 145 case FlagType::FT_int: in runHandler() 168 void FlagParser::registerFlag(const char *Name, const char *Desc, FlagType Type,
|
H A D | flags.cpp | 37 Parser->registerFlag(#Name, Description, FlagType::FT_##Type, \ in registerFlags() 44 Parser->registerFlag("GWP_ASAN_" #Name, Description, FlagType::FT_##Type, \ in registerFlags()
|
H A D | report.cpp | 61 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value) { in reportCheckFailed() 63 Report.append("invalid value for %s option: '%s'\n", FlagType, Value); 70 reportInvalidFlag(const char * FlagType,const char * Value) reportInvalidFlag() argument
|
H A D | report.h | 25 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value);
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_wait_release.h | 41 template <enum flag_type FlagType> struct flag_traits {}; 104 template <flag_type FlagType> class kmp_flag { 112 typedef flag_traits<FlagType> traits_type; 113 kmp_flag() : t({FlagType, 0U}), num_waiting_threads(0), sleepLoc(nullptr) {} 115 : t({FlagType, 0U}), num_waiting_threads(nwaiters), sleepLoc(nullptr) {} 117 : t({FlagType, 0U}), num_waiting_threads(0), sleepLoc(sloc) {} 139 template <typename PtrType, flag_type FlagType, bool Sleepable> 140 class kmp_flag_native : public kmp_flag<FlagType> { 144 typedef flag_traits<FlagType> traits_type; 148 kmp_flag_native(volatile PtrType *p) : kmp_flag<FlagType>(), loc(p) {} [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/ |
H A D | ExpressionVariable.h | 106 typedef uint16_t FlagType; typedef 108 FlagType m_flags; // takes elements of Flags
|