/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
H A D | CFG.cpp | 177 const Loop *Outer = nullptr; in isPotentiallyReachableFromMany() local 179 Outer = getOutermostLoop(LI, BB); in isPotentiallyReachableFromMany() 184 if (LoopsWithHoles.count(Outer)) in isPotentiallyReachableFromMany() 185 Outer = nullptr; in isPotentiallyReachableFromMany() 186 if (StopLoop && Outer == StopLoop) in isPotentiallyReachableFromMany() 196 if (Outer) { in isPotentiallyReachableFromMany() 200 Outer->getExitBlocks(Worklist); in isPotentiallyReachableFromMany()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/internal/ |
H A D | postblit.d | 221 static struct Outer 244 auto outer = Outer('1', '2', '3'); 260 Outer[3] arr = [Outer('1', '1', '1'), Outer('1', '2', '3'), Outer('3', '3', '3')];
|
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/ |
H A D | SemaInternal.h | 252 std::map<unsigned, SpecifierInfoList>::iterator Outer; variable 259 Outer(Set.DistanceMap.begin()), in iterator() 260 Inner(!IsAtEnd ? Outer->second.begin() : OuterBack->second.end()) { in iterator() 266 if (Inner == Outer->second.end() && Outer != OuterBack) { 267 ++Outer; 268 Inner = Outer->second.begin();
|
H A D | Template.h | 310 LocalInstantiationScope *Outer; variable 334 : SemaRef(SemaRef), Outer(SemaRef.CurrentInstantiationScope), in SemaRef() 357 SemaRef.CurrentInstantiationScope = Outer; in Exit() 373 newScope->Outer = nullptr; in cloneScopes() 374 if (Outer) in cloneScopes() 375 newScope->Outer = Outer->cloneScopes(Outermost); in cloneScopes() 406 LocalInstantiationScope *Out = Scope->Outer; in deleteScopes()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
H A D | QualTypeNames.cpp | 270 const auto *Outer = dyn_cast_or_null<NamedDecl>(DC); in createNestedNameSpecifierForScopeOf() local 272 if (Outer && !(OuterNS && OuterNS->isAnonymousNamespace())) { in createNestedNameSpecifierForScopeOf() 288 Outer = dyn_cast<NamedDecl>(Decl); in createNestedNameSpecifierForScopeOf() 296 } else if (const auto *TD = dyn_cast<TagDecl>(Outer)) { in createNestedNameSpecifierForScopeOf() 299 } else if (dyn_cast<TranslationUnitDecl>(Outer)) { in createNestedNameSpecifierForScopeOf()
|
H A D | Mangle.cpp | 37 StringRef Outer, in mangleFunctionBlock() argument 42 Out << "__" << Outer << "_block_invoke"; in mangleFunctionBlock() 44 Out << "__" << Outer << "_block_invoke_" << discriminator+1; in mangleFunctionBlock()
|
H A D | ItaniumMangle.cpp | 445 CXXNameMangler(CXXNameMangler &Outer, raw_ostream &Out_) in CXXNameMangler() argument 446 : Context(Outer.Context), Out(Out_), NullOut(false), in CXXNameMangler() 447 Structor(Outer.Structor), StructorType(Outer.StructorType), in CXXNameMangler() 448 SeqID(Outer.SeqID), FunctionTypeDepth(Outer.FunctionTypeDepth), in CXXNameMangler() 449 AbiTagsRoot(AbiTags), Substitutions(Outer.Substitutions) {} in CXXNameMangler() 451 CXXNameMangler(CXXNameMangler &Outer, llvm::raw_null_ostream &Out_) in CXXNameMangler() argument 452 : Context(Outer.Context), Out(Out_), NullOut(true), in CXXNameMangler() 453 Structor(Outer.Structor), StructorType(Outer.StructorType), in CXXNameMangler() 454 SeqID(Outer.SeqID), FunctionTypeDepth(Outer.FunctionTypeDepth), in CXXNameMangler() 455 AbiTagsRoot(AbiTags), Substitutions(Outer.Substitutions) {} in CXXNameMangler()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/ |
H A D | lifetime.d | 167 class Outer 175 auto outerBuf = new void[__traits(classInstanceSize, Outer)]; 176 auto outerSupport = (() @trusted => cast(Outer)(outerBuf.ptr))(); 178 auto innerBuf = new void[__traits(classInstanceSize, Outer.Inner)]; 179 auto innerSupport = (() @trusted => cast(Outer.Inner)(innerBuf.ptr))(); 181 auto inner = innerSupport.emplace!(Outer.Inner)(outerSupport.emplace!Outer); 254 class Outer 262 auto outerBuf = new void[__traits(classInstanceSize, Outer)]; 263 auto innerBuf = new void[__traits(classInstanceSize, Outer.Inner)]; 264 auto inner = innerBuf.emplace!(Outer.Inner)(outerBuf.emplace!Outer); [all …]
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/ |
H A D | sumtype.d | 1263 alias Outer = SumType!(Nat*, Tuple!(This*, This*)); 1453 static struct Outer 1458 Outer x; 1459 Outer y = x; 2442 alias Outer = SumType!(Inner, string); 2451 static string fun(Outer o) { return o.match!fun; } 2454 Outer a = Inner(42); 2455 Outer b = Inner(3.14); 2456 Outer c = "foo";
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
H A D | LoopInterchange.cpp | 327 LoopInterchangeLegality(Loop *Outer, Loop *Inner, ScalarEvolution *SE, in LoopInterchangeLegality() argument 329 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), ORE(ORE) {} in LoopInterchangeLegality() 346 bool tightlyNested(Loop *Outer, Loop *Inner); 374 LoopInterchangeProfitability(Loop *Outer, Loop *Inner, ScalarEvolution *SE, in LoopInterchangeProfitability() argument 376 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), ORE(ORE) {} in LoopInterchangeProfitability() 398 LoopInterchangeTransform(Loop *Outer, Loop *Inner, ScalarEvolution *SE, in LoopInterchangeTransform() argument 401 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), LI(LI), DT(DT), LIL(LIL) {} in LoopInterchangeTransform()
|
/netbsd-src/external/bsd/openldap/dist/contrib/slapd-modules/variant/tests/data/ |
H A D | test006-out.ldif | 11 homePostalAddress: 199 Outer Drive $ Ypsilanti, MI 48198 28 homePostalAddress: 199 Outer Drive $ Ypsilanti, MI 48198
|
H A D | test003-out.ldif | 10 homePostalAddress: 199 Outer Drive $ Ypsilanti, MI 48198
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/ARCMigrate/ |
H A D | TransUnbridgedCasts.cpp | 280 void getBlockMacroRanges(CastExpr *E, SourceRange &Outer, SourceRange &Inner) { in getBlockMacroRanges() argument 289 Outer = MacroRange.getAsRange(); in getBlockMacroRanges()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
H A D | LoopInfo.h | 1158 auto Contains = [](const Loop *Outer, const Loop *Inner) { in movementPreservesLCSSAForm() 1159 return !Outer || Outer->contains(Inner); in movementPreservesLCSSAForm()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineSelect.cpp | 1593 Value *B, Instruction &Outer, in foldSPFofSPF() argument 1596 if (Outer.getType() != Inner->getType()) in foldSPFofSPF() 1604 return replaceInstUsesWith(Outer, Inner); in foldSPFofSPF() 1613 return replaceInstUsesWith(Outer, C); in foldSPFofSPF() 1626 return replaceInstUsesWith(Outer, Inner); in foldSPFofSPF() 1634 Outer.replaceUsesOfWith(Inner, A); in foldSPFofSPF() 1635 return &Outer; in foldSPFofSPF() 1648 return replaceInstUsesWith(Outer, Inner); in foldSPFofSPF() 1654 return replaceInstUsesWith(Outer, Inner); in foldSPFofSPF() 1665 return replaceInstUsesWith(Outer, NewSI); in foldSPFofSPF() [all …]
|
/netbsd-src/external/apache2/llvm/dist/llvm/docs/Proposals/ |
H A D | VectorizationPlan.rst | 61 a. Outer-loop vectorization. In particular, VPlan must be able to model the 222 .. [1] "Outer-loop vectorization: revisited for short SIMD architectures", Dorit 249 .. [9] "Extending LoopVectorizer: OpenMP4.5 SIMD and Outer Loop
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
H A D | ControlHeightReduction.cpp | 352 CHRScope *Outer, 1147 CHRScope *Outer, in splitScope() argument 1152 if (Outer) { in splitScope() 1175 if (Outer) { in splitScope() 1176 CHR_DEBUG(dbgs() << "Outer " << *Outer << "\n"); in splitScope() 1269 if (!Outer) in splitScope()
|
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/libdruntime/ |
H A D | object.d | 2606 static struct Outer 2629 auto outer = Outer('1', '2', '3'); 2645 Outer[3] arr = [Outer('1', '1', '1'), Outer('1', '2', '3'), Outer('3', '3', '3')];
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | CodeView.h | 387 Outer = 0x03, enumerator
|
/netbsd-src/external/bsd/openldap/dist/contrib/slapd-modules/datamorph/tests/data/ |
H A D | test005-out.ldif | 186 homePostalAddress: 199 Outer Drive $ Ypsilanti, MI 48198
|
/netbsd-src/external/bsd/openldap/dist/tests/data/ |
H A D | dynlist.out | 339 homePostalAddress: 199 Outer Drive $ Ypsilanti, MI 48198 358 homePostalAddress: 199 Outer Drive $ Ypsilanti, MI 48198 377 homePostalAddress: 199 Outer Drive $ Ypsilanti, MI 48198 448 homePostalAddress: 199 Outer Drive $ Ypsilanti, MI 48198
|
H A D | test-chain1.ldif | 352 homepostaladdress: 199 Outer Drive $ Ypsilanti, MI 48198
|
H A D | test-dirsync-nocp.ldif | 188 homepostaladdress: 199 Outer Drive $ Ypsilanti, MI 48198
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
H A D | SemaTemplateInstantiate.cpp | 3571 Current = Current->Outer) { in findInstantiationOf() 3629 while (Current->CombineWithOuterScope && Current->Outer) { in InstantiatedLocal() 3630 Current = Current->Outer; in InstantiatedLocal() 3654 Current && Current->CombineWithOuterScope; Current = Current->Outer) in MakeInstantiatedLocalArgPack() 3695 Current = Current->Outer) { in getPartiallySubstitutedPack()
|
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/regex/internal/ |
H A D | parser.d | 1151 Outer: in optimize() 1166 break Outer; in optimize()
|