| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | arm_sve_sme_incl.td | 182 class FlagType<int val> { 188 def NoFlags : FlagType<0x00000000>; 189 def FirstEltType : FlagType<0x00000001>; 192 def EltTypeMask : FlagType<0x0000000f>; 193 def FirstMemEltType : FlagType<0x00000010>; 196 def MemEltTypeMask : FlagType<0x00000070>; 197 def FirstMergeTypeMask : FlagType<0x00000080>; 200 def MergeTypeMask : FlagType<0x00000380>; 201 def FirstSplatOperand : FlagType<0x00000400>; 206 def SplatOperandMask : FlagType<0x00001C00>; [all …]
|
| H A D | arm_sve.td | 243 multiclass StructLoad<string name, string proto, string i, list<FlagType> f = []> { 404 multiclass StructStore<string name, string proto, string i, list<FlagType> f = []> { 552 …tZPZZ<string name, string types, string m_intrinsic, string x_intrinsic, list<FlagType> flags=[]> { 581 …ZPZZZ<string name, string types, string m_intrinsic, string x_intrinsic, list<FlagType> flags=[]> { 732 multiclass SInstCLS<string name, string types, string intrinsic, list<FlagType> flags=[]> { 879 string intrinsic, list<FlagType> flags = [IsOverloadNone]> { 887 list<FlagType> flags = [IsOverloadNone]> { 1303 …string name, string types, string pat_v, string pat_n, string intrinsic, list<FlagType> flags=[]> { 1362 multiclass SInstPairwise<string name, string types, string intrinsic, list<FlagType> flags=[]> { 2169 …multiclass PMOV_TO_PRED<string name, string types, string intrinsic, list<FlagType> flags=[], ImmC… [all …]
|
| /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 | 62 void NORETURN reportInvalidFlag(const char *FlagType, const char *Value) { in reportInvalidFlag() argument 64 Report.append("invalid value for %s option: '%s'\n", FlagType, Value); in reportInvalidFlag()
|
| H A D | report.h | 24 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 { 113 typedef flag_traits<FlagType> traits_type; 114 kmp_flag() : t({FlagType, 0U}), num_waiting_threads(0), sleepLoc(nullptr) {} 116 : t({FlagType, 0U}), num_waiting_threads(nwaiters), sleepLoc(nullptr) {} 118 : t({FlagType, 0U}), num_waiting_threads(0), sleepLoc(sloc) {} 140 template <typename PtrType, flag_type FlagType, bool Sleepable> 141 class kmp_flag_native : public kmp_flag<FlagType> { 145 typedef flag_traits<FlagType> traits_type; 149 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
|
| /freebsd/contrib/llvm-project/clang/lib/Parse/ |
| H A D | ParseHLSLRootSignature.cpp | 112 template <typename FlagType> 113 static FlagType maybeOrFlag(std::optional<FlagType> Flags, FlagType Flag) { in maybeOrFlag() 117 return static_cast<FlagType>(llvm::to_underlying(Flags.value()) | in maybeOrFlag()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | BodyFarm.cpp | 371 QualType FlagType = Flag->getType().getNonReferenceType(); in create_call_once() local 372 auto *FlagRecordDecl = FlagType->getAsRecordDecl(); in create_call_once()
|