| /src/external/apache2/llvm/dist/clang/tools/libclang/ |
| CIndexCodeCompletion.cpp | 289 unsigned long long Contexts; 366 Contexts(CXCompletionContext_Unknown), 387 unsigned long long contexts = 0; local 392 contexts = CXCompletionContext_MacroName; 399 contexts = CXCompletionContext_AnyType | 402 contexts |= CXCompletionContext_EnumTag | 411 contexts = CXCompletionContext_AnyType | 415 contexts |= CXCompletionContext_EnumTag | 424 contexts = CXCompletionContext_AnyValue; 426 contexts |= CXCompletionContext_AnyType [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-diff/ |
| DiffConsumer.cpp | 72 unsigned N = contexts.size(); 75 DiffContext &ctxt = contexts[N]; 94 if (contexts.empty()) return; 96 I = contexts.begin(), E = contexts.end(); I != E; ++I) { 143 contexts.push_back(DiffContext(L, R)); 148 Differences |= contexts.back().Differences; 149 contexts.pop_back();
|
| DiffConsumer.h | 69 SmallVector<DiffContext, 5> contexts; member in class:llvm::DiffConsumer
|
| /src/external/gpl2/gettext/dist/gettext-tools/tests/ |
| xgettext-c-15 | 3 # Test C support: extraction of contexts specified in GNOME glib syntax. 12 /* (hypothetical) The 2-argument Q_ macro is an ngettext with contexts. */
|
| /src/sys/external/bsd/drm2/dist/drm/i915/selftests/ |
| i915_request.c | 265 struct i915_gem_context **contexts; member in struct:smoketest 336 t->contexts[order[n] % t->ncontexts]; 448 t.contexts = kcalloc(t.ncontexts, sizeof(*t.contexts), GFP_KERNEL); 449 if (!t.contexts) { 455 t.contexts[n] = mock_context(t.engine->i915, "mock"); 456 if (!t.contexts[n]) { 493 if (!t.contexts[n]) 495 mock_context_close(t.contexts[n]); 497 kfree(t.contexts); [all...] |
| i915_vma.c | 113 struct list_head *contexts) 121 list_for_each_entry(ctx, contexts, link) { 162 LIST_HEAD(contexts); 187 list_move(&ctx->link, &contexts); 190 err = create_vmas(i915, &objects, &contexts); 195 "%s timed out: after %lu objects in %lu contexts\n", 200 list_for_each_entry_safe(ctx, cn, &contexts, link) { 209 /* Final pass to lookup all created contexts */ 210 err = create_vmas(i915, &objects, &contexts); 212 list_for_each_entry_safe(ctx, cn, &contexts, link) [all...] |
| /src/external/mpl/bind/dist/bin/tests/system/doth/ns4/ |
| named.conf.j2 | 16 # generate) and creates a minimal amount of TLS contexts, reducing the
|
| /src/external/mpl/bind/dist/bin/tests/system/doth/ns5/ |
| named.conf.j2 | 16 # generate) and creates a minimal amount of TLS contexts, reducing the
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gem/selftests/ |
| mock_context.c | 77 init_contexts(&i915->gem.contexts);
|
| /src/sys/external/bsd/drm2/dist/drm/i915/ |
| i915_sysfs.c | 185 spin_lock(&i915->gem.contexts.lock); 190 spin_unlock(&i915->gem.contexts.lock); 218 spin_lock(&i915->gem.contexts.lock); 231 list_for_each_entry(ctx, &i915->gem.contexts.list, link) 234 spin_unlock(&i915->gem.contexts.lock);
|
| i915_debugfs.c | 317 spin_lock(&i915->gem.contexts.lock); 318 list_for_each_entry_safe(ctx, cn, &i915->gem.contexts.list, link) { 325 spin_unlock(&i915->gem.contexts.lock); 362 spin_lock(&i915->gem.contexts.lock); 366 spin_unlock(&i915->gem.contexts.lock); 368 print_file_stats(m, "[k]contexts", kstats); 1489 spin_lock(&i915->gem.contexts.lock); 1490 list_for_each_entry_safe(ctx, cn, &i915->gem.contexts.list, link) { 1497 spin_unlock(&i915->gem.contexts.lock); 1533 spin_lock(&i915->gem.contexts.lock) [all...] |
| /src/external/gpl3/gcc/dist/gcc/jit/ |
| jit-recording.cc | 207 write_params (const vec <recording::context *> &contexts); 210 write_args (const vec <recording::context *> &contexts); 263 /* Write out a list of contexts as a set of parameters within a 267 reproducer::write_params (const vec <recording::context *> &contexts) 271 FOR_EACH_VEC_ELT (contexts, i, ctxt) 275 if (i < contexts.length () - 1) 281 /* Write out a list of contexts as a set of arguments within a call 285 reproducer::write_args (const vec <recording::context *> &contexts) 289 FOR_EACH_VEC_ELT (contexts, i, ctxt) 293 if (i < contexts.length () - 1 [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/jit/ |
| jit-recording.cc | 207 write_params (const vec <recording::context *> &contexts); 210 write_args (const vec <recording::context *> &contexts); 263 /* Write out a list of contexts as a set of parameters within a 267 reproducer::write_params (const vec <recording::context *> &contexts) 271 FOR_EACH_VEC_ELT (contexts, i, ctxt) 275 if (i < contexts.length () - 1) 281 /* Write out a list of contexts as a set of arguments within a call 285 reproducer::write_args (const vec <recording::context *> &contexts) 289 FOR_EACH_VEC_ELT (contexts, i, ctxt) 293 if (i < contexts.length () - 1 [all...] |
| /src/external/mpl/bind/dist/lib/isc/ |
| mem.c | 116 /* List of all active memory contexts. */ 118 static ISC_LIST(isc_mem_t) contexts; 178 for (isc_mem_t *ctx = ISC_LIST_HEAD(contexts); ctx != NULL; 519 ISC_LIST_INIT(contexts); 536 empty = ISC_LIST_EMPTY(contexts); 595 ISC_LIST_INITANDAPPEND(contexts, ctx, link); 609 ISC_LIST_UNLINK(contexts, ctx, link); 1334 for (ctx = ISC_LIST_HEAD(contexts); ctx != NULL; 1362 if (!ISC_LIST_EMPTY(contexts)) { 1453 TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "contexts")); [all...] |
| /src/external/apache2/llvm/dist/clang/tools/c-index-test/ |
| c-index-test.c | 2592 void print_completion_contexts(unsigned long long contexts, FILE *file) { 2593 fprintf(file, "Completion contexts:\n"); 2594 if (contexts == CXCompletionContext_Unknown) { 2597 if (contexts & CXCompletionContext_AnyType) { 2600 if (contexts & CXCompletionContext_AnyValue) { 2603 if (contexts & CXCompletionContext_ObjCObjectValue) { 2606 if (contexts & CXCompletionContext_ObjCSelectorValue) { 2609 if (contexts & CXCompletionContext_CXXClassTypeValue) { 2612 if (contexts & CXCompletionContext_DotMemberAccess) { 2615 if (contexts & CXCompletionContext_ArrowMemberAccess) 2744 unsigned long long contexts; local [all...] |
| /src/sys/compat/netbsd32/ |
| netbsd32_drm.c | 500 netbsd32_pointer_t contexts; member in struct:drm_ctx_res32 514 res64.contexts = NETBSD32PTR64(res32.contexts); 521 NETBSD32PTR32(res32.contexts, res64.contexts);
|
| /src/usr.bin/make/unit-tests/ |
| varmod-undefined.mk | 51 # In both contexts, \n is an escaped letter n, not a newline; that's what
|
| /src/external/bsd/kyua-cli/dist/store/ |
| schema_v1.sql | 64 -- Contexts. 68 -- Execution contexts. 74 CREATE TABLE contexts ( table 84 context_id INTEGER REFERENCES contexts, 105 context_id INTEGER REFERENCES contexts
|
| schema_v2.sql | 66 -- Contexts. 70 -- Execution contexts. 76 CREATE TABLE contexts ( table 86 context_id INTEGER REFERENCES contexts, 107 context_id INTEGER REFERENCES contexts
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gem/ |
| i915_gem_context.c | 15 * supports contexts for the render ring. 17 * In software, there is a distinction between contexts created by the user, 26 * swap out, and/or destroy other contexts. 28 * All other contexts are created as a request by the GPU client. These contexts 314 spin_lock(&ctx->i915->gem.contexts.lock); 316 spin_unlock(&ctx->i915->gem.contexts.lock); 356 struct i915_gem_contexts *gc = &ctx->i915->gem.contexts; 566 * Only contexts that are short-lived [that will expire or be 640 spin_lock(&i915->gem.contexts.lock) [all...] |
| /src/sys/external/bsd/drm/dist/bsd-core/ |
| drm_context.c | 234 if (DRM_COPY_TO_USER(&res->contexts[i], 255 DRM_DEBUG("Not enough free contexts.\n");
|
| /src/external/mpl/dhcp/bind/dist/lib/isc/ |
| mem.c | 122 /* List of all active memory contexts. */ 124 static ISC_LIST(isc__mem_t) contexts; 753 ISC_LIST_INIT(contexts); 860 ISC_LIST_INITANDAPPEND(contexts, ctx, link); 875 ISC_LIST_UNLINK(contexts, ctx, link); 1991 for (ctx = ISC_LIST_HEAD(contexts); ctx != NULL; 2018 if (!ISC_LIST_EMPTY(contexts)) { 2162 TRY0(xmlTextWriterStartElement(writer, ISC_XMLCHAR "contexts")); 2166 for (ctx = ISC_LIST_HEAD(contexts); ctx != NULL; 2177 TRY0(xmlTextWriterEndElement(writer)); /* contexts */ [all...] |
| /src/sys/external/bsd/drm2/dist/drm/ |
| drm_context.c | 4 * Legacy: Generic DRM Contexts 135 * drm_ctxbitmap_flush() - Flush all contexts owned by a file 137 * @file: Open file to flush contexts for 139 * This iterates over all contexts on @dev and drops them if they're owned by 140 * @file. Note that after this call returns, new contexts might be added if 333 * Reserve contexts. 356 if (copy_to_user(&res->contexts[i], &ctx, sizeof(ctx))) 394 DRM_DEBUG("Not enough free contexts.\n");
|
| drm_ioc32.c | 552 u32 contexts; member in struct:drm_ctx_res32 567 res.contexts = compat_ptr(res32.contexts);
|
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| selftest_lrc.c | 182 * Setup the pair of contexts such that if we 1948 * Build a chain AB...BA between two contexts (A, B) and request 2509 struct i915_gem_context **contexts; member in struct:preempt_smoke 2519 return smoke->contexts[i915_prandom_u32_max_state(smoke->ncontext, 2642 pr_info("Submitted %lu crescendo:%x requests across %d engines and %d contexts\n", 2670 pr_info("Submitted %lu random:%x requests across %d engines and %d contexts\n", 2692 smoke.contexts = kmalloc_array(smoke.ncontext, 2693 sizeof(*smoke.contexts), 2695 if (!smoke.contexts) 2722 smoke.contexts[n] = kernel_context(smoke.gt->i915) [all...] |