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

/freebsd-13-stable/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/union/
H A Dtst.UnionInside.d53 union Outer {
59 union Outer O;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DCFG.cpp170 const Loop *Outer = nullptr; local
172 Outer = getOutermostLoop(LI, BB);
176 // excluded block. Clear Outer so we process BB's successors.
177 if (LoopsWithHoles.count(Outer))
178 Outer = nullptr;
179 if (StopLoop && Outer == StopLoop)
189 if (Outer) {
193 Outer->getExitBlocks(Worklist);
/freebsd-13-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-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaInternal.h252 std::map<unsigned, SpecifierInfoList>::iterator Outer; member in class:clang::TypoCorrectionConsumer::NamespaceSpecifierSet::iterator
259 Outer(Set.DistanceMap.begin()),
260 Inner(!IsAtEnd ? Outer->second.begin() : OuterBack->second.end()) {
266 if (Inner == Outer->second.end() && Outer != OuterBack) {
267 ++Outer;
268 Inner = Outer->second.begin();
H A DTemplate.h310 LocalInstantiationScope *Outer;
334 : SemaRef(SemaRef), Outer(SemaRef.CurrentInstantiationScope),
357 SemaRef.CurrentInstantiationScope = Outer;
373 newScope->Outer = nullptr;
374 if (Outer)
375 newScope->Outer = Outer->cloneScopes(Outermost);
406 LocalInstantiationScope *Out = Scope->Outer;
/freebsd-13-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.cpp37 StringRef Outer,
42 Out << "__" << Outer << "_block_invoke"; local
44 Out << "__" << Outer << "_block_invoke_" << discriminator+1;
36 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-13-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),
586 "Outer loop not left in LCSSA form after loop interchange!");
1155 /// Outer preheader
1156 // Outer heade
[all...]
/freebsd-13-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-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLoopInfo.h1139 // Check if Outer contains Inner; with the null loop counting as the
1141 auto Contains = [](const Loop *Outer, const Loop *Inner) {
1142 return !Outer || Outer->contains(Inner);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp1596 Instruction &Outer,
1598 if (Outer.getType() != Inner->getType())
1606 return replaceInstUsesWith(Outer, Inner);
1615 return replaceInstUsesWith(Outer, C);
1628 return replaceInstUsesWith(Outer, Inner);
1636 Outer.replaceUsesOfWith(Inner, A);
1637 return &Outer;
1650 return replaceInstUsesWith(Outer, Inner);
1656 return replaceInstUsesWith(Outer, Inner);
1667 return replaceInstUsesWith(Outer, NewS
1593 foldSPFofSPF(Instruction *Inner, SelectPatternFlavor SPF1, Value *A, Value *B, Instruction &Outer, SelectPatternFlavor SPF2, Value *C) argument
[all...]
H A DInstCombineInternal.h999 Value *A, Value *B, Instruction &Outer,
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DControlHeightReduction.cpp352 CHRScope *Outer,
1148 CHRScope *Outer,
1153 if (Outer) {
1176 if (Outer) {
1177 CHR_DEBUG(dbgs() << "Outer " << *Outer << "\n");
1201 CHR_DEBUG(dbgs() << "Outer null\n");
1270 if (!Outer)
1146 splitScope( CHRScope *Scope, CHRScope *Outer, DenseSet<Value *> *OuterConditionValues, Instruction *OuterInsertPoint, SmallVectorImpl<CHRScope *> &Output, DenseSet<Instruction *> &Unhoistables) argument
/freebsd-13-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-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateDeduction.cpp677 DeducedPack *Outer = nullptr; member in struct:clang::DeducedPack
809 Pack.Outer = Info.PendingDeducedPacks[Pack.Index];
834 Info.PendingDeducedPacks[Pack.Index] = Pack.Outer;
921 if (Pack.Outer) {
922 if (Pack.Outer->DeferredDeduction.isNull()) {
925 Pack.Outer->DeferredDeduction = NewPack;
928 Loc = &Pack.Outer->DeferredDeduction;
H A DSemaTemplateInstantiate.cpp3574 Current = Current->Outer) {
3632 while (Current->CombineWithOuterScope && Current->Outer) {
3633 Current = Current->Outer;
3657 Current && Current->CombineWithOuterScope; Current = Current->Outer)
3698 Current = Current->Outer) {
H A DSemaCodeComplete.cpp4953 ConceptInfo *Outer; member in class:__anon2038::ConceptInfo::ValidVisitor
4964 ValidVisitor(ConceptInfo *Outer, const TemplateTypeParmType *T) argument
4965 : Outer(Outer), T(T) {
5022 auto R = Outer->Results.try_emplace(M.Name);
H A DSemaTemplate.cpp1901 Scope *Outer = S; local
1902 while ((Outer->getFlags() & Scope::TemplateParamScope) != 0)
1903 Outer = Outer->getParent();
1904 PushOnScopeChains(NewTemplate, Outer);
H A DSemaInit.cpp757 InitListExpr *Outer; member in struct:UpdateOuterILEWithUpdatedInit
760 if (Outer)
761 Outer->setInit(OuterIndex, Outer->getInit(OuterIndex));
H A DSemaDecl.cpp14093 const auto &Outer = D.getTypeObject(D.getNumTypeObjects() - 1); local
14094 if (Outer.Kind == DeclaratorChunk::Function &&
14095 Outer.Fun.hasTrailingReturnType()) {
14096 QualType Ty = GetTypeFromParser(Outer.Fun.getTrailingReturnType());
/freebsd-13-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-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.cpp996 void diaDumpChildren(PDBSymbol &Outer, PdbSymbolIdField Ids, argument
998 OuterT *ConcreteOuter = dyn_cast<OuterT>(&Outer);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLTypes.cpp225 IO.enumCase(Kind, "Outer", VFTableSlotKind::Outer);

Completed in 616 milliseconds