| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| LangStandard.h | 73 unsigned Flags; 87 bool hasLineComments() const { return Flags & LineComment; } 90 bool isC99() const { return Flags & C99; } 93 bool isC11() const { return Flags & C11; } 96 bool isC17() const { return Flags & C17; } 99 bool isC2x() const { return Flags & C2x; } 102 bool isCPlusPlus() const { return Flags & CPlusPlus; } 105 bool isCPlusPlus11() const { return Flags & CPlusPlus11; } 108 bool isCPlusPlus14() const { return Flags & CPlusPlus14; } 111 bool isCPlusPlus17() const { return Flags & CPlusPlus17; [all...] |
| TargetBuiltins.h | 137 /// Flags to identify the types for overloaded Neon builtins. 139 /// These must be kept in sync with the flags in utils/TableGen/NeonEmitter.h. 146 uint32_t Flags; 164 NeonTypeFlags(unsigned F) : Flags(F) {} 165 NeonTypeFlags(EltType ET, bool IsUnsigned, bool IsQuad) : Flags(ET) { 167 Flags |= UnsignedFlag; 169 Flags |= QuadFlag; 172 EltType getEltType() const { return (EltType)(Flags & EltTypeMask); } 177 bool isUnsigned() const { return (Flags & UnsignedFlag) != 0; } 178 bool isQuad() const { return (Flags & QuadFlag) != 0; [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/xray/ |
| xray_flags.h | 12 // XRay runtime flags. 23 struct Flags { 31 extern Flags xray_flags_dont_use_directly; 32 extern void registerXRayFlags(FlagParser *P, Flags *F); 34 inline Flags *flags() { return &xray_flags_dont_use_directly; } function in namespace:__xray
|
| /src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
| msan_flags.h | 18 struct Flags { 26 Flags *flags();
|
| /src/external/gpl3/gcc/dist/libsanitizer/hwasan/ |
| hwasan_flags.h | 19 struct Flags { 27 Flags *flags();
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/ |
| hwasan_flags.h | 19 struct Flags { 27 Flags *flags();
|
| /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/ |
| ubsan_flags.h | 10 // Runtime flags for UndefinedBehaviorSanitizer. 24 struct Flags { 32 extern Flags ubsan_flags; 33 inline Flags *flags() { return &ubsan_flags; } function in namespace:__ubsan 36 void RegisterUbsanFlags(FlagParser *parser, Flags *f);
|
| /src/external/gpl3/gcc/dist/libsanitizer/ubsan/ |
| ubsan_flags.h | 9 // Runtime flags for UndefinedBehaviorSanitizer. 23 struct Flags { 31 extern Flags ubsan_flags; 32 inline Flags *flags() { return &ubsan_flags; } function in namespace:__ubsan 35 void RegisterUbsanFlags(FlagParser *parser, Flags *f);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/ |
| ubsan_flags.h | 9 // Runtime flags for UndefinedBehaviorSanitizer. 23 struct Flags { 31 extern Flags ubsan_flags; 32 inline Flags *flags() { return &ubsan_flags; } function in namespace:__ubsan 35 void RegisterUbsanFlags(FlagParser *parser, Flags *f);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_flags.h | 12 // ASan runtime flags. 32 struct Flags { 40 extern Flags asan_flags_dont_use_directly; 41 inline Flags *flags() { function in namespace:__asan
|
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_flags.h | 11 // ASan runtime flags. 31 struct Flags { 39 extern Flags asan_flags_dont_use_directly; 40 inline Flags *flags() { function in namespace:__asan
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_flags.h | 11 // ASan runtime flags. 31 struct Flags { 39 extern Flags asan_flags_dont_use_directly; 40 inline Flags *flags() { function in namespace:__asan
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/MC/ |
| MCInstrDesc.h | 25 // Machine Operand Flags and Description 45 /// These are flags set on operands, but should be considered 91 /// These are flags from the MCOI::OperandFlags enum. 92 uint8_t Flags; 103 return Flags & (1 << MCOI::LookupPtrRegClass); 108 bool isPredicate() const { return Flags & (1 << MCOI::Predicate); } 111 bool isOptionalDef() const { return Flags & (1 << MCOI::OptionalDef); } 114 bool isBranchTarget() const { return Flags & (1 << MCOI::BranchTarget); } 138 // Machine Instruction Flags and Description 145 /// MCInstrDesc::Flags field [all...] |
| MCFixupKindInfo.h | 44 /// Flags describing additional information on this fixup kind. 45 unsigned Flags;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/Linker/ |
| Linker.h | 28 enum Flags { 46 bool linkInModule(std::unique_ptr<Module> Src, unsigned Flags = Flags::None, 51 unsigned Flags = Flags::None,
|
| /src/external/bsd/pkg_install/dist/info/ |
| main.c | 46 int Flags = 0; 60 " pkg_info [-a | -u] [flags]", 85 Flags |= SHOW_BUILD_INFO; 89 Flags |= SHOW_BUILD_VERSION; 93 Flags |= SHOW_COMMENT; 97 Flags |= SHOW_DISPLAY; 101 Flags |= SHOW_DESC; 113 Flags |= SHOW_PLIST; 121 Flags |= SHOW_INDEX; 125 Flags |= SHOW_INSTALL [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/ |
| JITSymbol.h | 73 /// Flags for symbols in the JIT. 95 /// Construct a JITSymbolFlags instance from the given flags. 96 JITSymbolFlags(FlagNames Flags) : Flags(Flags) {} 98 /// Construct a JITSymbolFlags instance from the given flags and target 99 /// flags. 100 JITSymbolFlags(FlagNames Flags, TargetFlagsType TargetFlags) 101 : TargetFlags(TargetFlags), Flags(Flags) {} [all...] |
| /src/sys/external/bsd/acpica/dist/parser/ |
| psutils.c | 136 UINT8 Flags = ACPI_PARSEOP_GENERIC; 146 if (OpInfo->Flags & AML_DEFER) 148 Flags = ACPI_PARSEOP_DEFERRED; 150 else if (OpInfo->Flags & AML_NAMED) 152 Flags = ACPI_PARSEOP_NAMED_OBJECT; 156 Flags = ACPI_PARSEOP_BYTELIST; 161 if (Flags == ACPI_PARSEOP_GENERIC) 180 Op->Common.Flags = Flags; 225 if (Op->Common.Flags & ACPI_PARSEOP_GENERIC [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/gssapi/krb5/ |
| cfx.h | 46 u_char Flags; 53 u_char Flags; 62 u_char Flags;
|
| /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| JITSymbol.cpp | 23 assert(GV.hasName() && "Can't get flags for anonymous symbol"); 25 JITSymbolFlags Flags = JITSymbolFlags::None; 27 Flags |= JITSymbolFlags::Weak; 29 Flags |= JITSymbolFlags::Common; 31 Flags |= JITSymbolFlags::Exported; 34 Flags |= JITSymbolFlags::Callable; 37 Flags |= JITSymbolFlags::Callable; 46 Flags &= ~JITSymbolFlags::Exported; 49 return Flags; 53 JITSymbolFlags Flags = JITSymbolFlags::None [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/MC/ |
| MCSectionELF.cpp | 71 !(Flags & ELF::SHF_MERGE)) { 72 if (Flags & ELF::SHF_ALLOC) 74 if (Flags & ELF::SHF_EXECINSTR) 76 if (Flags & ELF::SHF_WRITE) 78 if (Flags & ELF::SHF_EXCLUDE) 80 if (Flags & ELF::SHF_TLS) 87 if (Flags & ELF::SHF_ALLOC) 89 if (Flags & ELF::SHF_EXCLUDE) 91 if (Flags & ELF::SHF_EXECINSTR) 93 if (Flags & ELF::SHF_GROUP [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Demangle/ |
| MicrosoftDemangleNodes.cpp | 118 std::string Node::toString(OutputFlags Flags) const { 121 this->output(OS, Flags); 128 void PrimitiveTypeNode::outputPre(OutputStream &OS, OutputFlags Flags) const { 155 void NodeArrayNode::output(OutputStream &OS, OutputFlags Flags) const { 156 output(OS, Flags, ", "); 159 void NodeArrayNode::output(OutputStream &OS, OutputFlags Flags, 164 Nodes[0]->output(OS, Flags); 167 Nodes[I]->output(OS, Flags); 172 OutputFlags Flags) const { 192 void IntegerLiteralNode::output(OutputStream &OS, OutputFlags Flags) const [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/ |
| tsan_flags.h | 22 struct Flags : DDFlags { 31 void InitializeFlags(Flags *flags, const char *env);
|
| /src/external/gpl3/gcc/dist/libsanitizer/tsan/ |
| tsan_flags.h | 21 struct Flags : DDFlags { 30 void InitializeFlags(Flags *flags, const char *env,
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_flags.h | 21 struct Flags : DDFlags { 30 void InitializeFlags(Flags *flags, const char *env,
|