| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | MemoryProfileInfo.cpp | 30 // information from the indexing step for all contexts (especially for testing), 33 "memprof-keep-all-not-cold-contexts", cl::init(false), cl::Hidden, 34 cl::desc("Keep all non-cold contexts (increases cloning overheads)")); 40 // Discard non-cold contexts if they overlap with much larger cold contexts, 41 // specifically, if all contexts reaching a given callsite are at least this 43 // to expose the cold contexts when they greatly dominate non-cold contexts. 47 "contexts")); 49 // Enable saving context size information for largest cold contexts, which can 50 // be used to flag contexts for more aggressive cloning and reporting. 211 // requested identification of contexts above a percentage of the max, see in createMIBNode() [all …]
|
| H A D | CtxProfAnalysis.cpp | 506 llvm::make_early_inc_range(MaybeProfiles->Contexts)) in run() 508 MaybeProfiles->Contexts.erase(RootGuid); in run() 563 if (C.contexts().empty()) { in run() 650 Profiles.Contexts, [&](PGOCtxProfContext &Ctx) { in initIndex() 656 // encounter the contexts in the order we would have, should we have in initIndex() 681 const PGOCtxProfContext>(Profiles.Contexts, V); in visit() 697 "All contexts corresponding to a function should have the exact " in flatten() 703 for (const auto &[_, CtxRoot] : Profiles.Contexts) { in flatten() 722 for (const auto &[_, CtxRoot] : Profiles.Contexts) { in flattenVirtCalls()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/ |
| H A D | DiffConsumer.cpp | 73 unsigned N = contexts.size(); in printValue() 76 DiffContext &ctxt = contexts[N]; in printValue() 95 if (contexts.empty()) return; in header() 97 I = contexts.begin(), E = contexts.end(); I != E; ++I) { in header() 140 contexts.clear(); in reset() 150 contexts.push_back(DiffContext(L, R)); in enterContext() 155 Differences |= contexts.back().Differences; in exitContext() 156 contexts.pop_back(); in exitContext()
|
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | TokenAnnotator.cpp | 131 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false)); in AnnotatingParser() 167 if (BeforeLess->is(tok::r_paren) && Contexts.size() > 1 && in parseAngle() 176 Left->ParentBracket = Contexts.back().ContextKind; in parseAngle() 178 Contexts.back().IsExpression = false; in parseAngle() 183 Contexts.back().ContextType = Context::TemplateArgument; in parseAngle() 189 const bool InExpr = Contexts[Contexts.size() - 2].IsExpression; in parseAngle() 311 OpeningParen.ParentBracket = Contexts.back().ContextKind; in parseParens() 315 Contexts.back().ColonIsForRangeExpr = in parseParens() 316 Contexts.size() == 2 && Contexts[0].ColonIsForRangeExpr; in parseParens() 348 Contexts.back().IsExpression = OperatorCalledAsMemberFunction; in parseParens() [all …]
|
| /freebsd/lib/libgssapi/ |
| H A D | gss_add_cred.3 | 194 contexts. 196 Credential will only be used to initiate security contexts. 198 Credential will only be used to accept security contexts. 202 initiating security contexts. 210 accepting security contexts. 248 remain valid for initiating contexts using the specified mechanism. 259 remain valid for accepting security contexts using the specified
|
| H A D | gss_inquire_cred_by_mech.3 | 71 initiating security contexts under the specified mechanism. 72 If the credential can no longer be used to initiate contexts, 86 accepting security contexts under the specified mechanism. 87 If the credential can no longer be used to accept contexts,
|
| H A D | gss_acquire_cred.3 | 144 contexts. 146 Credentials will only be used to initiate security contexts. 148 Credentials will only be used to accept security contexts.
|
| /freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/ |
| H A D | DWARFLinkerDeclContext.cpp | |
| /freebsd/share/man/man9/ |
| H A D | sysctl_add_oid.9 | 148 Normally it should not be needed if contexts are used. 149 Contexts take care of tracking inter-dependencies 177 In most cases the programmer should use contexts, 198 These issues are handled properly by sysctl contexts.
|
| /freebsd/contrib/bsnmp/snmp_vacm/ |
| H A D | snmp_vacm.3 | 65 A read-only table that consists of a list of SNMP contexts available in 71 The table contains a list of SNMP contexts to groups mappings and respectively 72 the names of the SNMP views under those contexts, to which users in the group
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Mustache.cpp | 163 void renderLambdas(const llvm::json::Value &Contexts, llvm::raw_ostream &OS, 166 void renderSectionLambdas(const llvm::json::Value &Contexts, 169 void renderPartial(const llvm::json::Value &Contexts, llvm::raw_ostream &OS, 679 void ASTNode::renderChild(const json::Value &Contexts, llvm::raw_ostream &OS) { in renderChild() argument 681 Child->render(Contexts, OS); in renderChild() 684 void ASTNode::renderPartial(const json::Value &Contexts, llvm::raw_ostream &OS, in renderPartial() argument 687 Partial->render(Contexts, IS); in renderPartial() 690 void ASTNode::renderLambdas(const json::Value &Contexts, llvm::raw_ostream &OS, in renderLambdas() argument 701 LambdaNode->render(Contexts, ES); in renderLambdas() 704 LambdaNode->render(Contexts, OS); in renderLambdas() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
| H A D | PGOCtxProfWriter.cpp | 54 DescribeBlock(PGOCtxProfileBlockIDs::ContextsSectionBlockID, "Contexts"); in PGOCtxProfileWriter() 184 std::vector<SerializableRootRepresentation> Contexts; member 245 IO.mapOptional("Contexts", SPR.Contexts); in mapping() 270 if (!SPR.Contexts.empty()) { in createCtxProfFromYAML() 272 for (const auto &DC : SPR.Contexts) { in createCtxProfFromYAML()
|
| H A D | MemProfSummary.cpp | 22 OS << "# Total contexts: " << NumContexts << "\n"; in printSummaryYaml() 23 OS << "# Total cold contexts: " << NumColdContexts << "\n"; in printSummaryYaml() 24 OS << "# Total hot contexts: " << NumHotContexts << "\n"; in printSummaryYaml()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| H A D | PGOCtxProfReader.h | 30 // When we traverse the contextual profile, we typically want to visit contexts 33 // function's contexts. This happens in PGOContextualProfile. For memory use 78 // Setting initial capacity to 1 because all contexts must have at least 1 79 // counter, and then, because all contexts belonging to a function have the same 190 CtxProfContextualProfiles Contexts; member
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Type.h | 121 /// ones that are contained in other declaration contexts, including top in LLDB_MARK_AS_BITMASK_ENUM() 129 /// be contained in any other declaration contexts. in LLDB_MARK_AS_BITMASK_ENUM() 162 /// adding any containing declaration contexts. in LLDB_MARK_AS_BITMASK_ENUM() 185 /// adding any containing declaration contexts, and ending with the exact in LLDB_MARK_AS_BITMASK_ENUM() 194 /// Clients can manually create compiler contexts and use these to find in LLDB_MARK_AS_BITMASK_ENUM() 195 /// matches when searching for types. There are two types of contexts that in LLDB_MARK_AS_BITMASK_ENUM() 196 /// are supported when doing type searchs: type contexts and clang module in LLDB_MARK_AS_BITMASK_ENUM() 197 /// contexts. Type contexts have contexts that specify the type and its in LLDB_MARK_AS_BITMASK_ENUM() 199 /// contexts specify contexts more completely to find exact matches within in LLDB_MARK_AS_BITMASK_ENUM() 328 /// contexts appear at the top of the array starting at index zero and the in LLDB_MARK_AS_BITMASK_ENUM()
|
| /freebsd/contrib/kyua/store/ |
| H A D | migrate_v2_v3.sql | 48 INSERT INTO contexts 51 NATURAL JOIN old_store.contexts 57 NATURAL JOIN old_store.contexts
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | MemoryProfileInfo.h | 62 /// Class to build a trie of call stack contexts for a particular profiled 119 // actually do any cloning for hot contexts, to facilitate more aggressive 120 // pruning of contexts. 123 // Recursive helper to trim contexts and create metadata nodes. 240 /// Specializations for iterating through IR metadata stack contexts.
|
| /freebsd/sys/riscv/riscv/ |
| H A D | plic.c | 70 (_sc->contexts[_cpu].enable_offset + ((_irq) / 32) * sizeof(uint32_t)) 72 (_sc->contexts[_cpu].context_offset + PLIC_CONTEXT_THRESHOLD) 74 (_sc->contexts[_cpu].context_offset + PLIC_CONTEXT_CLAIM) 101 struct plic_context contexts[MAXCPU]; member 356 * these contexts are laid out. So for example, there is no guarantee in plic_attach() 413 sc->contexts[cpu].enable_offset = PLIC_ENABLE_BASE + in plic_attach() 415 sc->contexts[cpu].context_offset = PLIC_CONTEXT_BASE + in plic_attach()
|
| /freebsd/crypto/krb5/src/kdc/ |
| H A D | kdc_preauth.c | 287 } *contexts; member 302 ret->contexts = malloc(sizeof(ret->contexts[0]) * ret->n_contexts); in make_padata_context() 303 if (ret->contexts == NULL) { in make_padata_context() 308 memset(ret->contexts, 0, sizeof(ret->contexts[0]) * ret->n_contexts); in make_padata_context() 311 ret->contexts[i].pa_system = &preauth_systems[i]; in make_padata_context() 312 ret->contexts[i].modreq = NULL; in make_padata_context() 335 sys = context->contexts[i].pa_system; in free_padata_context() 336 if (!sys->free_modreq || !context->contexts[i].modreq) in free_padata_context() 338 sys->free_modreq(kcontext, sys->moddata, context->contexts[i].modreq); in free_padata_context() 339 context->contexts[i].modreq = NULL; in free_padata_context() [all …]
|
| /freebsd/crypto/libecc/include/libecc/hash/ |
| H A D | hmac.h | 15 /* The HMAC structure is made of two hash contexts */ 19 /* The two hash contexts (inner and outer) */
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | ExecutionContext.h | 23 /// need to track different executions contexts. For example, a local function 30 /// contexts: ExecutionContextRef and ExecutionContext. Both of these objects 40 /// a wide variety of functions that require execution contexts. 66 /// execution contexts should use ExecutionContextRef objects. The 289 /// for passing down to other functions that also require specific contexts. 303 // Create execution contexts from shared pointers 309 // Create execution contexts from weak pointers 324 // Create execution contexts from execution context scopes 508 // Thread and frame contexts will be cleared. If "process_sp" is not valid,
|
| /freebsd/usr.sbin/ctld/ |
| H A D | ctl.conf.5 | 127 contexts. 133 contexts. 312 contexts. 370 contexts. 374 contexts. 593 configuration contexts accept the the same properties as 595 contexts.
|
| /freebsd/sys/x86/iommu/ |
| H A D | amd_ctx.c | 157 KASSERT(LIST_EMPTY(&iodom->contexts), in amdiommu_domain_destroy() 158 ("destroying dom %p with contexts", domain)); in amdiommu_domain_destroy() 245 LIST_INIT(&iodom->contexts); in amdiommu_domain_alloc() 300 LIST_INSERT_HEAD(&domain->iodom.contexts, &ctx->context, link); in amdiommu_ctx_link() 329 LIST_FOREACH(ctx, &domain->iodom.contexts, link) { in amdiommu_find_ctx_locked() 345 LIST_FOREACH(ctx, &domain->iodom.contexts, link) { in amdiommu_find_domain() 548 * Recheck the contexts, other thread might have in amdiommu_get_ctx_for_dev()
|
| /freebsd/contrib/llvm-project/clang/lib/Analysis/ |
| H A D | AnalysisDeclContext.cpp | 89 void AnalysisDeclContextManager::clear() { Contexts.clear(); } in clear() 300 std::unique_ptr<AnalysisDeclContext> &AC = Contexts[D]; in getContext() 432 cast_or_null<StackFrameContext>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); in getStackFrame() 435 Contexts.InsertNode(L, InsertPos); in getStackFrame() 447 cast_or_null<BlockInvocationContext>(Contexts.FindNodeOrInsertPos(ID, in getBlockInvocationContext() 451 Contexts.InsertNode(L, InsertPos); in getBlockInvocationContext() 696 for (llvm::FoldingSet<LocationContext>::iterator I = Contexts.begin(), in clear() 697 E = Contexts.end(); I != E; ) { in clear() 702 Contexts.clear(); in clear()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | DeclBase.cpp | 1459 assert(DC && "All transparent contexts should have a parent!"); in getNonTransparentContext() 1545 SmallVectorImpl<DeclContext *> &Contexts) { in collectAllContextsImpl() argument 1547 Contexts.push_back(D); in collectAllContextsImpl() 1549 std::reverse(Contexts.begin(), Contexts.end()); in collectAllContextsImpl() 1552 void DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts) { in collectAllContexts() argument 1553 Contexts.clear(); in collectAllContexts() 1558 collectAllContextsImpl(static_cast<TranslationUnitDecl *>(this), Contexts); in collectAllContexts() 1560 collectAllContextsImpl(static_cast<NamespaceDecl *>(this), Contexts); in collectAllContexts() 1562 Contexts.push_back(this); in collectAllContexts() 1826 /// declarations in this DeclContext (and any other contexts linked [all …]
|