Searched refs:Outer (Results 1 - 24 of 24) sorted by relevance

/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/union/
H A Dtst.UnionInside.d53 union Outer {
59 union Outer O;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCFG.cpp172 const Loop *Outer = nullptr; local
174 Outer = getOutermostLoop(LI, BB);
178 // excluded block. Clear Outer so we process BB's successors.
179 if (LoopsWithHoles.count(Outer))
180 Outer = nullptr;
181 if (StopLoop && Outer == StopLoop)
191 if (Outer) {
195 Outer->getExitBlocks(Worklist);
/freebsd-11-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/struct/
H A Derr.D_DECL_INCOMPLETE.order2.d55 struct Outer {
61 struct Outer O;
H A Dtst.StructInside.d54 struct Outer {
60 struct Outer O;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaInternal.h247 std::map<unsigned, SpecifierInfoList>::iterator Outer; member in class:clang::TypoCorrectionConsumer::NamespaceSpecifierSet::iterator
254 Outer(Set.DistanceMap.begin()),
255 Inner(!IsAtEnd ? Outer->second.begin() : OuterBack->second.end()) {
261 if (Inner == Outer->second.end() && Outer != OuterBack) {
262 ++Outer;
263 Inner = Outer->second.begin();
H A DTemplate.h277 LocalInstantiationScope *Outer;
301 : SemaRef(SemaRef), Outer(SemaRef.CurrentInstantiationScope),
324 SemaRef.CurrentInstantiationScope = Outer;
340 newScope->Outer = nullptr;
341 if (Outer)
342 newScope->Outer = Outer->cloneScopes(Outermost);
373 LocalInstantiationScope *Out = Scope->Outer;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DQualTypeNames.cpp270 const auto *Outer = dyn_cast_or_null<NamedDecl>(DC); local
272 if (Outer && !(OuterNS && OuterNS->isAnonymousNamespace())) {
288 Outer = dyn_cast<NamedDecl>(Decl);
296 } else if (const auto *TD = dyn_cast<TagDecl>(Outer)) {
299 } else if (dyn_cast<TranslationUnitDecl>(Outer)) {
H A DMangle.cpp36 StringRef Outer,
41 Out << "__" << Outer << "_block_invoke"; local
43 Out << "__" << Outer << "_block_invoke_" << discriminator+1;
35 mangleFunctionBlock(MangleContext &Context, StringRef Outer, const BlockDecl *BD, raw_ostream &Out) argument
H A DItaniumMangle.cpp403 CXXNameMangler(CXXNameMangler &Outer, raw_ostream &Out_) argument
404 : Context(Outer.Context), Out(Out_), NullOut(false),
405 Structor(Outer.Structor), StructorType(Outer.StructorType),
406 SeqID(Outer.SeqID), FunctionTypeDepth(Outer.FunctionTypeDepth),
407 AbiTagsRoot(AbiTags), Substitutions(Outer.Substitutions) {}
409 CXXNameMangler(CXXNameMangler &Outer, llvm::raw_null_ostream &Out_) argument
410 : Context(Outer.Context), Out(Out_), NullOut(true),
411 Structor(Outer
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopInterchange.cpp328 LoopInterchangeLegality(Loop *Outer, Loop *Inner, ScalarEvolution *SE, argument
330 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), ORE(ORE) {}
347 bool tightlyNested(Loop *Outer, Loop *Inner);
375 LoopInterchangeProfitability(Loop *Outer, Loop *Inner, ScalarEvolution *SE, argument
377 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), ORE(ORE) {}
399 LoopInterchangeTransform(Loop *Outer, Loop *Inner, ScalarEvolution *SE, argument
403 : OuterLoop(Outer), InnerLoop(Inner), SE(SE), LI(LI), DT(DT),
1150 /// Outer preheader
1151 // Outer header
1157 // Outer latc
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DTransUnbridgedCasts.cpp280 void getBlockMacroRanges(CastExpr *E, SourceRange &Outer, SourceRange &Inner) { argument
289 Outer = MacroRange.getAsRange();
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopInfo.h1125 // Check if Outer contains Inner; with the null loop counting as the
1127 auto Contains = [](const Loop *Outer, const Loop *Inner) {
1128 return !Outer || Outer->contains(Inner);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp1553 Instruction &Outer,
1555 if (Outer.getType() != Inner->getType())
1563 return replaceInstUsesWith(Outer, Inner);
1572 return replaceInstUsesWith(Outer, C);
1585 return replaceInstUsesWith(Outer, Inner);
1593 Outer.replaceUsesOfWith(Inner, A);
1594 return &Outer;
1607 return replaceInstUsesWith(Outer, Inner);
1613 return replaceInstUsesWith(Outer, Inner);
1624 return replaceInstUsesWith(Outer, NewS
1550 foldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1, Value *A, Value *B, Instruction &Outer, SelectPatternFlavor SPF2, Value *C) argument
[all...]
H A DInstCombineInternal.h980 Value *A, Value *B, Instruction &Outer,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp356 CHRScope *Outer,
1155 CHRScope *Outer,
1160 if (Outer) {
1183 if (Outer) {
1184 CHR_DEBUG(dbgs() << "Outer " << *Outer << "\n");
1208 CHR_DEBUG(dbgs() << "Outer null\n");
1277 if (!Outer)
1153 splitScope( CHRScope *Scope, CHRScope *Outer, DenseSet<Value *> *OuterConditionValues, Instruction *OuterInsertPoint, SmallVectorImpl<CHRScope *> &Output, DenseSet<Instruction *> &Unhoistables) argument
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h387 Outer = 0x03, member in class:llvm::codeview::CallingConvention::ClassOptions::FrameProcedureOptions::FunctionOptions::HfaKind::MemberAccess::MethodKind::MethodOptions::ModifierOptions::PointerKind::PointerMode::PointerOptions::PointerToMemberRepresentation::VFTableSlotKind
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp677 DeducedPack *Outer = nullptr; member in struct:clang::DeducedPack
808 Pack.Outer = Info.PendingDeducedPacks[Pack.Index];
833 Info.PendingDeducedPacks[Pack.Index] = Pack.Outer;
920 if (Pack.Outer) {
921 if (Pack.Outer->DeferredDeduction.isNull()) {
924 Pack.Outer->DeferredDeduction = NewPack;
927 Loc = &Pack.Outer->DeferredDeduction;
H A DSemaTemplateInstantiate.cpp3486 Current = Current->Outer) {
3538 while (Current->CombineWithOuterScope && Current->Outer) {
3539 Current = Current->Outer;
3563 Current && Current->CombineWithOuterScope; Current = Current->Outer)
3597 Current = Current->Outer) {
H A DSemaTemplate.cpp1895 Scope *Outer = S; local
1896 while ((Outer->getFlags() & Scope::TemplateParamScope) != 0)
1897 Outer = Outer->getParent();
1898 PushOnScopeChains(NewTemplate, Outer);
H A DSemaInit.cpp756 InitListExpr *Outer; member in struct:UpdateOuterILEWithUpdatedInit
759 if (Outer)
760 Outer->setInit(OuterIndex, Outer->getInit(OuterIndex));
H A DSemaDecl.cpp13820 const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1); local
13821 if (Outer.Kind == DeclaratorChunk::Function &&
13822 Outer.Fun.hasTrailingReturnType()) {
13823 QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType());
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp438 /// IsChainDependent - Test if Outer is reachable from Inner through
440 static bool IsChainDependent(SDNode *Outer, SDNode *Inner, argument
443 SDNode *N = Outer;
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp992 void diaDumpChildren(PDBSymbol &Outer, PdbSymbolIdField Ids, argument
994 OuterT *ConcreteOuter = dyn_cast<OuterT>(&Outer);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp225 IO.enumCase(Kind, "Outer", VFTableSlotKind::Outer);

Completed in 435 milliseconds