| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | OpenCLOptions.cpp | 28 bool OpenCLOptions::isKnown(llvm::StringRef Ext) const { in isKnown() 29 return OptMap.find(Ext) != OptMap.end(); in isKnown() 32 bool OpenCLOptions::isAvailableOption(llvm::StringRef Ext, in isAvailableOption() argument 34 if (!isKnown(Ext)) in isAvailableOption() 37 auto &OptInfo = OptMap.find(Ext)->getValue(); in isAvailableOption() 39 return isSupported(Ext, LO); in isAvailableOption() 41 return isEnabled(Ext); in isAvailableOption() 44 bool OpenCLOptions::isEnabled(llvm::StringRef Ext) const { in isEnabled() 45 auto I = OptMap.find(Ext); in isEnabled() 49 bool OpenCLOptions::isWithPragma(llvm::StringRef Ext) const { in isWithPragma() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | RISCVISAInfo.cpp | 125 static bool stripExperimentalPrefix(StringRef &Ext) { in stripExperimentalPrefix() argument 126 return Ext.consume_front("experimental-"); in stripExperimentalPrefix() 136 static size_t findFirstNonVersionCharacter(StringRef Ext) { in findFirstNonVersionCharacter() argument 137 assert(!Ext.empty() && in findFirstNonVersionCharacter() 140 int Pos = Ext.size() - 1; in findFirstNonVersionCharacter() 141 while (Pos > 0 && isDigit(Ext[Pos])) in findFirstNonVersionCharacter() 143 if (Pos > 0 && Ext[Pos] == 'p' && isDigit(Ext[Pos - 1])) { in findFirstNonVersionCharacter() 145 while (Pos > 0 && isDigit(Ext[Pos])) in findFirstNonVersionCharacter() 153 FindByName(StringRef Ext) : Ext(Ext){}; in FindByName() 154 StringRef Ext; member [all …]
|
| /openbsd-src/regress/usr.sbin/bgpd/integrationtests/ |
| H A D | ixp.rdomain1.ok | 6 Ext. Communities: ovs valid 13 Ext. Communities: ovs invalid rt 65524:2 19 Ext. Communities: ovs not-found 26 Ext. Communities: ovs not-found rt 65524:2 33 Ext. Communities: ovs not-found rt 65524:2 40 Ext. Communities: ovs not-found rt 65524:2 47 Ext. Communities: ovs not-found 55 Ext. Communities: ovs not-found 63 Ext. Communities: ovs not-found 71 Ext. Communities: ovs not-found rt 65524:2 [all …]
|
| H A D | mrt-table-mp.ok | 11 Ext. Communities: ovs invalid rt 127.0.0.1:15 27 Ext. Communities: ovs invalid rt 127.0.0.1:15 38 Ext. Communities: rt 4200000001:42 44 Ext. Communities: ovs invalid rt 127.0.0.1:15 rt 4200000001:42 50 Ext. Communities: rt 4200000001:42 56 Ext. Communities: rt 4200000001:42 62 Ext. Communities: ovs invalid rt 127.0.0.1:15 rt 4200000001:42 68 Ext. Communities: rt 4200000001:42
|
| H A D | mrt-table-v2.ok | 11 Ext. Communities: ovs invalid rt 127.0.0.1:15 27 Ext. Communities: ovs invalid rt 127.0.0.1:15 38 Ext. Communities: rt 4200000001:42 44 Ext. Communities: ovs invalid rt 127.0.0.1:15 rt 4200000001:42 50 Ext. Communities: rt 4200000001:42 56 Ext. Communities: rt 4200000001:42 62 Ext. Communities: ovs invalid rt 127.0.0.1:15 rt 4200000001:42 68 Ext. Communities: rt 4200000001:42
|
| H A D | mrt-table.ok | 11 Ext. Communities: ovs invalid rt 127.0.0.1:15 27 Ext. Communities: ovs invalid rt 127.0.0.1:15
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | OpenCLOptions.h | 132 bool isKnown(llvm::StringRef Ext) const; 137 bool isAvailableOption(llvm::StringRef Ext, const LangOptions &LO) const; 139 bool isWithPragma(llvm::StringRef Ext) const; 143 bool isSupported(llvm::StringRef Ext, const LangOptions &LO) const; 147 bool isSupportedCore(llvm::StringRef Ext, const LangOptions &LO) const; 151 bool isSupportedOptionalCore(llvm::StringRef Ext, 156 bool isSupportedCoreOrOptionalCore(llvm::StringRef Ext, 161 bool isSupportedExtension(llvm::StringRef Ext, const LangOptions &LO) const; 166 void acceptsPragma(llvm::StringRef Ext, bool V = true); 168 void enable(llvm::StringRef Ext, bool V = true); [all …]
|
| H A D | OpenCLImageTypes.def | 14 // GENERIC_IMAGE_TYPE_EXT(Type, Id, Ext) - a generic image with its Id and 19 #define IMAGE_READ_TYPE(Type, Id, Ext) GENERIC_IMAGE_TYPE(Type, Id) 20 #define IMAGE_WRITE_TYPE(Type, Id, Ext) 21 #define IMAGE_READ_WRITE_TYPE(Type, Id, Ext) 24 #define IMAGE_READ_TYPE(Type, Id, Ext) GENERIC_IMAGE_TYPE_EXT(Type, Id##ROTy, Ext) 25 #define IMAGE_WRITE_TYPE(Type, Id, Ext) GENERIC_IMAGE_TYPE_EXT(Type, Id##WOTy, Ext) 26 #define IMAGE_READ_WRITE_TYPE(Type, Id, Ext) GENERIC_IMAGE_TYPE_EXT(Type, Id##RWTy, Ext) 30 #define IMAGE_READ_TYPE(Type, Id, Ext) \ 34 #define IMAGE_WRITE_TYPE(Type, Id, Ext) \ 38 #define IMAGE_READ_WRITE_TYPE(Type, Id, Ext) \
|
| H A D | TargetInfo.h | 1623 #define OPENCLEXTNAME(Ext) \ argument 1624 setFeatureEnabled(getTargetOpts().OpenCLFeaturesMap, #Ext, V); 1630 for (const auto &Ext : getTargetOpts().OpenCLExtensionsAsWritten) { in setCommandLineOpenCLOpts() local 1631 bool IsPrefixed = (Ext[0] == '+' || Ext[0] == '-'); in setCommandLineOpenCLOpts() 1632 std::string Name = IsPrefixed ? Ext.substr(1) : Ext; in setCommandLineOpenCLOpts() 1633 bool V = IsPrefixed ? Ext[0] == '+' : true; in setCommandLineOpenCLOpts()
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Unicode-Collate/t/ |
| H A D | overcjk0.t | 62 # 3400..4DB5 are CJK UI Ext.A since UCA_Version 8 (Unicode 3.0). 63 # 4DB6..4DBF are CJK UI Ext.A since UCA_Version 43 (Unicode 13.0). 64 # 20000..2A6D6 are CJK UI Ext.B since UCA_Version 8 (Unicode 3.1). 65 # 2A6D7..2A6DD are CJK UI Ext.B since UCA_Version 43 (Unicode 13.0). 66 # 2A700..2B734 are CJK UI Ext.C since UCA_Version 20 (Unicode 5.2). 67 # 2B740..2B81D are CJK UI Ext.D since UCA_Version 22 (Unicode 6.0). 68 # 2B820..2CEA1 are CJK UI Ext.E since UCA_Version 32 (Unicode 8.0). 69 # 2CEB0..2EBE0 are CJK UI Ext.F since UCA_Version 36 (Unicode 10.0). 70 # 30000..3134A are CJK UI Ext.G since UCA_Version 43 (Unicode 13.0). 106 # Ext.A [all …]
|
| H A D | cjkrange.t | 36 # CJK UI Ext > CJK UI. 37 # [ UCA_Version 8: Ext.A < UI and BMP < Ext.B (code point order) ] 49 # 3400..4DB5 are CJK UI Ext.A since UCA_Version 8 (Unicode 3.0). 50 # 4DB6..4DBF are CJK UI Ext.A since UCA_Version 43 (Unicode 13.0). 51 # 20000..2A6D6 are CJK UI Ext.B since UCA_Version 8 (Unicode 3.1). 52 # 2A6D7..2A6DD are CJK UI Ext.B since UCA_Version 43 (Unicode 13.0). 53 # 2A700..2B734 are CJK UI Ext.C since UCA_Version 20 (Unicode 5.2). 54 # 2B740..2B81D are CJK UI Ext.D since UCA_Version 22 (Unicode 6.0). 55 # 2B820..2CEA1 are CJK UI Ext.E since UCA_Version 32 (Unicode 8.0). 56 # 2CEB0..2EBE0 are CJK UI Ext.F since UCA_Version 36 (Unicode 10.0). [all …]
|
| H A D | cjk_ja.t | 66 ok($collator->lt("\x{4E02}", "\x{3400}")); # 3400: Ext.A undef in JIS X 0208 68 # Ext.B
|
| /openbsd-src/gnu/llvm/llvm/lib/Extensions/ |
| H A D | Extensions.cpp | 2 #define HANDLE_EXTENSION(Ext) \ argument 3 llvm::PassPluginLibraryInfo get##Ext##PluginInfo(); 10 #define HANDLE_EXTENSION(Ext) \ in extensions_anchor() argument 11 get##Ext##PluginInfo(); in extensions_anchor()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/RISCV/ |
| H A D | RISCVInstrInfoF.td | 182 foreach Ext = Exts in 183 let Predicates = Ext.Predicates, DecoderNamespace = Ext.Space in 184 def Ext.Suffix : FPFMA_rrr_frm<opcode, funct2, opcodestr, Ext.Reg>; 193 foreach Ext = Exts in 194 let Predicates = Ext.Predicates in 195 def : FPFMADynFrmAlias<!cast<FPFMA_rrr_frm>(Inst#Ext.Suffix), OpcodeStr, 196 Ext.Reg>; 208 foreach Ext = Exts in 209 let Predicates = Ext.Predicates, DecoderNamespace = Ext.Space in 210 def Ext.Suffix : FPALU_rr<funct7, funct3, opcodestr, Ext.Reg, Commutable>; [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | TestModuleFileExtension.cpp | 37 auto Ext = static_cast<TestModuleFileExtension *>(getExtension()); in writeExtensionContents() local 39 OS << "Hello from " << Ext->BlockName << " v" << Ext->MajorVersion << "." in writeExtensionContents() 40 << Ext->MinorVersion; in writeExtensionContents() 46 TestModuleFileExtension::Reader::Reader(ModuleFileExtension *Ext, in Reader() argument 48 : ModuleFileExtensionReader(Ext), Stream(InStream) in Reader()
|
| H A D | TestModuleFileExtension.h | 30 Writer(ModuleFileExtension *Ext) : ModuleFileExtensionWriter(Ext) { } in Writer() argument 43 Reader(ModuleFileExtension *Ext, const llvm::BitstreamCursor &InStream);
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | RISCVISAInfo.h | 78 bool hasExtension(StringRef Ext) const; 83 static bool isSupportedExtensionFeature(StringRef Ext); 84 static bool isSupportedExtension(StringRef Ext); 85 static bool isSupportedExtension(StringRef Ext, unsigned MajorVersion,
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-rc/ |
| H A D | ResourceScriptCppFilter.cpp | 92 StringRef Ext = Line.rsplit('.').second; in parseLine() local 94 if (Ext.equals_insensitive("h") || Ext.equals_insensitive("c")) { in parseLine()
|
| /openbsd-src/gnu/llvm/llvm/tools/bugpoint/ |
| H A D | bugpoint.cpp | 133 #define HANDLE_EXTENSION(Ext) \ argument 134 llvm::PassPluginLibraryInfo get##Ext##PluginInfo(); 221 #define HANDLE_EXTENSION(Ext) \ in main() argument 222 (void)get##Ext##PluginInfo(); in main()
|
| /openbsd-src/gnu/llvm/clang/utils/TableGen/ |
| H A D | ClangOpenCLBuiltinEmitter.cpp | 752 for (StringRef Ext : ExtVec) { in EmitMacroChecks() local 753 if (Ext != ExtVec.front()) in EmitMacroChecks() 755 OS << "S.getPreprocessor().isMacroDefined(\"" << Ext << "\")"; in EmitMacroChecks() 1084 StringRef Ext = in expandTypesInSignature() local 1086 if (!Ext.empty() && TypeExtMap.find(FullType) == TypeExtMap.end()) { in expandTypesInSignature() 1087 TypeExtMap.insert({FullType, Ext}); in expandTypesInSignature() 1136 for (StringRef Ext : ExtVec) { in emitExtensionGuard() local 1140 OS << " defined(" << Ext << ")"; in emitExtensionGuard() 1183 for (const auto Ext : ExtVec) { in emitTypeExtensionGuards() local 1184 ExtSet.insert(Ext); in emitTypeExtensionGuards() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 192 for (const auto *Ext : IDecl->visible_extensions()) in findPropertyDecl() local 193 if (ObjCPropertyDecl *PD = ObjCPropertyDecl::findPropertyDecl(Ext, in findPropertyDecl() 262 for (const auto *Ext : ClassDecl->visible_extensions()) { in FindPropertyDeclaration() local 263 if (auto *P = Ext->FindPropertyDeclaration(PropertyId, QueryKind)) in FindPropertyDeclaration() 410 for (const auto *Ext : known_extensions()) { in collectPropertiesToImplement() local 411 const ObjCCategoryDecl *ClassExt = Ext; in collectPropertiesToImplement() 502 for (const auto *Ext : D->visible_extensions()) { in isIntroducingInitializers() local 503 for (const auto *MD : Ext->instance_methods()) { in isIntroducingInitializers() 564 for (const auto *Ext : IFace->visible_extensions()) { in getDesignatedInitializers() local 565 for (const auto *MD : Ext->instance_methods()) in getDesignatedInitializers() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/Tooling/DependencyScanning/ |
| H A D | DependencyScanningFilesystem.cpp | 168 StringRef Ext = llvm::sys::path::extension(Filename); in shouldScanForDirectivesBasedOnExtension() local 169 if (Ext.empty()) in shouldScanForDirectivesBasedOnExtension() 171 return llvm::StringSwitch<bool>(Ext) in shouldScanForDirectivesBasedOnExtension() 181 StringRef Ext = llvm::sys::path::extension(Filename); in shouldCacheStatFailures() local 182 if (Ext.empty()) in shouldCacheStatFailures()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Transforms/Utils/ |
| H A D | Cloning.h | 332 StringRef Ext, LLVMContext &Context); 346 LLVMContext &Context, StringRef Ext); 353 LLVMContext &Context, StringRef Ext);
|
| /openbsd-src/gnu/llvm/llvm/tools/opt/ |
| H A D | NewPMDriver.cpp | 319 #define HANDLE_EXTENSION(Ext) \ argument 320 llvm::PassPluginLibraryInfo get##Ext##PluginInfo(); 422 #define HANDLE_EXTENSION(Ext) \ in runPassPipeline() argument 423 get##Ext##PluginInfo().RegisterPassBuilderCallbacks(PB); in runPassPipeline()
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineVectorOps.cpp | 180 Instruction *InstCombinerImpl::foldBitcastExtElt(ExtractElementInst &Ext) { in foldBitcastExtElt() argument 183 if (!match(Ext.getVectorOperand(), m_BitCast(m_Value(X))) || in foldBitcastExtElt() 184 !match(Ext.getIndexOperand(), m_ConstantInt(ExtIndexC))) in foldBitcastExtElt() 188 cast<VectorType>(Ext.getVectorOperandType())->getElementCount(); in foldBitcastExtElt() 189 Type *DestTy = Ext.getType(); in foldBitcastExtElt() 196 assert(isa<FixedVectorType>(Ext.getVectorOperand()->getType()) && in foldBitcastExtElt() 207 Ext.getVectorOperand()->hasOneUse())) { in foldBitcastExtElt() 257 if (X->hasOneUse() && Ext.getVectorOperand()->hasOneUse()) { in foldBitcastExtElt() 258 Value *NewBC = Builder.CreateBitCast(Vec, Ext.getVectorOperandType()); in foldBitcastExtElt() 259 return ExtractElementInst::Create(NewBC, Ext.getIndexOperand()); in foldBitcastExtElt() [all …]
|