Home
last modified time | relevance | path

Searched full:contexts (Results 1 – 25 of 701) sorted by relevance

12345678910>>...29

/freebsd/contrib/llvm-project/llvm/tools/llvm-diff/lib/
H A DDiffConsumer.cpp71 unsigned N = contexts.size(); in printValue()
74 DiffContext &ctxt = contexts[N]; in printValue()
93 if (contexts.empty()) return; in header()
95 I = contexts.begin(), E = contexts.end(); I != E; ++I) { in header()
138 contexts.clear(); in reset()
148 contexts.push_back(DiffContext(L, R)); in enterContext()
153 Differences |= contexts.back().Differences; in exitContext()
154 contexts.pop_back(); in exitContext()
/freebsd/contrib/llvm-project/clang/lib/Format/
H A DTokenAnnotator.cpp132 Contexts.push_back(Context(tok::unknown, 1, /*IsExpression=*/false)); in AnnotatingParser()
163 if (Previous.Previous->is(tok::r_paren) && Contexts.size() > 1 && in parseAngle()
176 Left->ParentBracket = Contexts.back().ContextKind; in parseAngle()
178 Contexts.back().IsExpression = false; in parseAngle()
185 Contexts.back().ContextType = Context::TemplateArgument; in parseAngle()
193 const bool InExpr = Contexts[Contexts.size() - 2].IsExpression; in parseAngle()
314 OpeningParen.ParentBracket = Contexts.back().ContextKind; in parseParens()
318 Contexts.back().ColonIsForRangeExpr = in parseParens()
319 Contexts.size() == 2 && Contexts[0].ColonIsForRangeExpr; in parseParens()
351 Contexts.back().IsExpression = OperatorCalledAsMemberFunction; in parseParens()
[all …]
/freebsd/lib/libgssapi/
H A Dgss_add_cred.3194 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 Dgss_inquire_cred_by_mech.371 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 Dgss_acquire_cred.3144 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 DDWARFLinkerDeclContext.cpp
/freebsd/share/man/man9/
H A Dsysctl_add_oid.9148 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 Dsnmp_vacm.365 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/lldb/include/lldb/Symbol/
H A DType.h117 /// ones that are contained in other declaration contexts, including top in LLDB_MARK_AS_BITMASK_ENUM()
125 /// be contained in any other declaration contexts. in LLDB_MARK_AS_BITMASK_ENUM()
158 /// adding any containing declaration contexts. in LLDB_MARK_AS_BITMASK_ENUM()
181 /// adding any containing declaration contexts, and ending with the exact in LLDB_MARK_AS_BITMASK_ENUM()
190 /// Clients can manually create compiler contexts and use these to find in LLDB_MARK_AS_BITMASK_ENUM()
191 /// matches when searching for types. There are two types of contexts that in LLDB_MARK_AS_BITMASK_ENUM()
192 /// are supported when doing type searchs: type contexts and clang module in LLDB_MARK_AS_BITMASK_ENUM()
193 /// contexts. Type contexts have contexts that specify the type and its in LLDB_MARK_AS_BITMASK_ENUM()
195 /// contexts specify contexts more completely to find exact matches within in LLDB_MARK_AS_BITMASK_ENUM()
292 /// 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 Dmigrate_v2_v3.sql48 INSERT INTO contexts
51 NATURAL JOIN old_store.contexts
57 NATURAL JOIN old_store.contexts
H A Dschema_v2.sql66 -- Contexts.
70 -- Execution contexts.
76 CREATE TABLE contexts ( table
86 context_id INTEGER REFERENCES contexts,
107 context_id INTEGER REFERENCES contexts
H A Dschema_v1.sql64 -- Contexts.
68 -- Execution contexts.
74 CREATE TABLE contexts ( table
84 context_id INTEGER REFERENCES contexts,
105 context_id INTEGER REFERENCES contexts
/freebsd/sys/riscv/riscv/
H A Dplic.c70 (_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 Dkdc_preauth.c287 } *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/contrib/llvm-project/lldb/include/lldb/Target/
H A DExecutionContext.h23 /// 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/crypto/libecc/include/libecc/hash/
H A Dhmac.h15 /* The HMAC structure is made of two hash contexts */
19 /* The two hash contexts (inner and outer) */
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclBase.cpp1414 assert(DC && "All transparent contexts should have a parent!"); in getNonTransparentContext()
1498 void collectAllContextsImpl(T *Self, SmallVectorImpl<DeclContext *> &Contexts) { in collectAllContextsImpl() argument
1500 Contexts.push_back(D); in collectAllContextsImpl()
1502 std::reverse(Contexts.begin(), Contexts.end()); in collectAllContextsImpl()
1505 void DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts) { in collectAllContexts() argument
1506 Contexts.clear(); in collectAllContexts()
1511 collectAllContextsImpl(static_cast<TranslationUnitDecl *>(this), Contexts); in collectAllContexts()
1513 collectAllContextsImpl(static_cast<NamespaceDecl *>(this), Contexts); in collectAllContexts()
1515 Contexts.push_back(this); in collectAllContexts()
1779 /// declarations in this DeclContext (and any other contexts linked
[all …]
/freebsd/sys/x86/iommu/
H A Damd_ctx.c157 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 DAnalysisDeclContext.cpp91 void AnalysisDeclContextManager::clear() { Contexts.clear(); } in clear()
302 std::unique_ptr<AnalysisDeclContext> &AC = Contexts[D]; in getContext()
434 cast_or_null<StackFrameContext>(Contexts.FindNodeOrInsertPos(ID, InsertPos)); in getStackFrame()
437 Contexts.InsertNode(L, InsertPos); in getStackFrame()
449 cast_or_null<BlockInvocationContext>(Contexts.FindNodeOrInsertPos(ID, in getBlockInvocationContext()
453 Contexts.InsertNode(L, InsertPos); in getBlockInvocationContext()
698 for (llvm::FoldingSet<LocationContext>::iterator I = Contexts.begin(), in clear()
699 E = Contexts.end(); I != E; ) { in clear()
704 Contexts.clear(); in clear()
/freebsd/crypto/openssl/doc/man7/
H A Dfips_module.pod226 details about library contexts see the L<OSSL_LIB_CTX(3)> man page.
306 usages this can also be achieved using library contexts. In this example we
307 create two library contexts. In one we assume the existence of a config file
317 * Create two nondefault library contexts. One for fips usage and
374 library contexts then the default library context will be automatically used.
419 contexts.
/freebsd/contrib/llvm-project/compiler-rt/lib/ctx_profile/
H A DCtxInstrProfiling.cpp31 // throughout that the addresses of contexts are even (really, they should be
33 // "scratch contexts" are buffers that we return in certain cases - they are
62 // all contexts should be laid out in some arena page. Go over each arena in validate()
63 // allocated for this Root, and jump over contained contexts based on in validate()
77 // Now traverse the contexts again the same way, but validate all nonull in validate()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DInstSimplifyPass.h23 /// Instruction simplification has useful constraints in some contexts:
28 /// also be useful (in tests and other contexts) to have access to this very
/freebsd/share/examples/kld/dyn_sysctl/
H A Ddyn_sysctl.c63 /* Initialize the contexts */ in load()
64 printf("Initializing contexts and creating subtrees.\n\n"); in load()
70 * to different contexts. in load()
/freebsd/crypto/openssl/doc/internal/man3/
H A Dossl_cmp_mock_srv_new.pod36 ossl_cmp_mock_srv_new() allocates the contexts for the CMP mock server
40 ossl_cmp_mock_srv_free() deallocates the contexts for the CMP mock server.
/freebsd/lib/librpcsec_gss/
H A Drpc_gss_set_callback.346 Register a function which will be called when new security contexts
66 and a function which will be called when new contexts are created for

12345678910>>...29