| /src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/Arch/ |
| VE.h | 1 //===--- VE.h - VE-specific Tool Helpers ------------------------*- C++ -*-===// 21 namespace ve { namespace in namespace:clang::driver::tools 26 } // end namespace ve
|
| /src/external/bsd/unbound/dist/daemon/ |
| stats.c | 169 struct val_env* ve; local 173 ve = (struct val_env*)worker->env.modinfo[m]; 174 if(!ve->neg_cache) 176 neg = ve->neg_cache; 192 struct val_env* ve; local 196 ve = (struct val_env*)worker->env.modinfo[m]; 197 lock_basic_lock(&ve->bogus_lock); 198 r = ve->num_rrset_bogus; 200 ve->num_rrset_bogus = 0; 201 lock_basic_unlock(&ve->bogus_lock) [all...] |
| /src/usr.sbin/makefs/cd9660/ |
| cd9660_eltorito.c | 246 boot_catalog_validation_entry *ve; local 253 ve = &entry->entry_data.VE; 255 ve->header_id[0] = 1; 256 ve->platform_id[0] = sys; 257 ve->key[0] = 0x55; 258 ve->key[1] = 0xAA; 262 cd9660_721(0, ve->checksum); 263 csptr = (unsigned char*)ve; 264 for (i = 0; i < sizeof(*ve); i += 2) [all...] |
| /src/external/bsd/unbound/dist/testcode/ |
| unitverify.c | 182 verifytest_rrset(struct module_env* env, struct val_env* ve, 198 sec = dnskeyset_verify_rrset(env, ve, rrset, dnskey, sigalg, &reason, 217 struct val_env* ve) 233 verifytest_rrset(env, ve, rep->rrsets[i], dnskey, &qinfo); 311 struct val_env ve; local 319 memset(&ve, 0, sizeof(ve)); 323 ve.date_override = cfg_convert_timeval(at_date); 331 verifytest_entry(e, &alloc, region, buf, dnskey, &env, &ve);
|
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| vdev_cache.c | 150 vdev_cache_evict(vdev_cache_t *vc, vdev_cache_entry_t *ve) 153 ASSERT(ve->ve_fill_io == NULL); 154 ASSERT(ve->ve_data != NULL); 156 avl_remove(&vc->vc_lastused_tree, ve); 157 avl_remove(&vc->vc_offset_tree, ve); 158 zio_buf_free(ve->ve_data, VCBS); 159 kmem_free(ve, sizeof (vdev_cache_entry_t)); 172 vdev_cache_entry_t *ve; local 185 ve = avl_first(&vc->vc_lastused_tree); 186 if (ve->ve_fill_io != NULL 229 vdev_cache_entry_t *ve = fio->io_private; local 267 vdev_cache_entry_t *ve, ve_search; local 344 vdev_cache_entry_t *ve, ve_search; local 380 vdev_cache_entry_t *ve; local [all...] |
| /src/external/public-domain/sqlite/dist/tea/win/ |
| nmakehlp.c | 636 unsigned char *ks, *ke, *vs, *ve; 643 ve = vs; 644 while (ve && *ve && !(*ve == '\r' || *ve == '\n')) ++ve; 645 *ke = 0, *ve = 0; 628 unsigned char *ks, *ke, *vs, *ve; local
|
| /src/bin/ps/ |
| ps.c | 668 struct varent *ve; local 680 SIMPLEQ_FOREACH(ve, &sortlist, next) { 681 v = ve->var;
|
| /src/external/gpl3/gcc.old/dist/gcc/d/ |
| modules.cc | 370 vec <constructor_elt, va_gc> *ve = NULL; local 371 CONSTRUCTOR_APPEND_ELT (ve, NULL_TREE, build_integer_cst (1, size_type_node)); 372 CONSTRUCTOR_APPEND_ELT (ve, NULL_TREE, build_address (dso_slot_node)); 373 CONSTRUCTOR_APPEND_ELT (ve, NULL_TREE, build_address (start_minfo_node)); 374 CONSTRUCTOR_APPEND_ELT (ve, NULL_TREE, build_address (stop_minfo_node)); 376 tree assign_expr = modify_expr (dso, build_struct_literal (dso_type, ve));
|
| decl.cc | 2248 vec <constructor_elt, va_gc> *ve = NULL; local 2252 CONSTRUCTOR_APPEND_ELT (ve, TYPE_FIELDS (type), vptr); 2281 CONSTRUCTOR_APPEND_ELT (ve, field, csym); 2306 CONSTRUCTOR_APPEND_ELT (ve, field, build_expr (value, true)); 2310 return build_struct_literal (type, ve);
|
| expr.cc | 2843 vec <constructor_elt, va_gc> *ve = NULL; local 2884 CONSTRUCTOR_APPEND_ELT (ve, get_symbol_decl (field), value); 2893 CONSTRUCTOR_APPEND_ELT (ve, field, value); 2898 tree ctor = build_struct_literal (build_ctype (e->type), ve);
|
| toir.cc | 1006 VarExp *ve = ce->e2->isVarExp (); local 1007 if (de != NULL && ve != NULL 1008 && ve->var == de->declaration 1009 && ve->var->storage_class & STCtemp) 1011 tree var = get_symbol_decl (ve->var);
|
| d-codegen.cc | 74 /* We've reached the top-level module namespace. 1168 vec <constructor_elt, va_gc> *ve = NULL; local 1239 CONSTRUCTOR_APPEND_ELT (ve, field, value); 1259 tree ctor = build_constructor (type, ve); 1596 vec <constructor_elt, va_gc> *ve = NULL; local 1597 CONSTRUCTOR_APPEND_ELT (ve, TYPE_FIELDS (type), 1599 CONSTRUCTOR_APPEND_ELT (ve, TREE_CHAIN (TYPE_FIELDS (type)), 1601 return build_constructor (type, ve); 1987 we've already ensured that `upper <= length`. */ 2516 vec <constructor_elt, va_gc> *ve = NULL local [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| selftest_lrc.c | 2764 struct intel_context *ve[16]; local 2770 GEM_BUG_ON(!nctx || nctx > ARRAY_SIZE(ve)); 2773 ve[n] = intel_execlists_create_virtual(siblings, nsibling); 2774 if (IS_ERR(ve[n])) { 2775 err = PTR_ERR(ve[n]); 2780 err = intel_context_pin(ve[n]); 2782 intel_context_put(ve[n]); 2788 err = igt_live_test_begin(&t, gt->i915, __func__, ve[0]->engine->name); 2800 rq = i915_request_create(ve[nc]); 2817 rq = i915_request_create(ve[nc]) 2935 struct intel_context *ve; local 3052 struct intel_context *ve; local 3284 struct intel_context *ve; local 3423 struct intel_context *ve; local [all...] |
| intel_lrc.c | 435 struct virtual_engine *ve = local 436 rb_entry(rb, typeof(*ve), nodes[engine->id].rb); 439 if (engine == ve->siblings[0]) { /* only preempt one sibling */ 443 next = READ_ONCE(ve->request); 1244 /* We've switched away, so this should be a no-op, but intent matters */ 1304 struct virtual_engine *ve = container_of(ce, typeof(*ve), context); local 1305 struct i915_request *next = READ_ONCE(ve->request); 1308 tasklet_schedule(&ve->base.execlists.tasklet); 1624 static bool virtual_matches(const struct virtual_engine *ve, 1856 struct virtual_engine *ve = local 1965 struct virtual_engine *ve = local 2476 struct virtual_engine *ve = to_virtual_engine(rq->engine); local 3728 struct virtual_engine *ve = local 4704 struct virtual_engine *ve = local 4772 struct virtual_engine *ve = container_of(ce, typeof(*ve), context); local 4779 struct virtual_engine *ve = container_of(ce, typeof(*ve), context); local 4793 struct virtual_engine *ve = container_of(ce, typeof(*ve), context); local 4804 struct virtual_engine *ve = container_of(ce, typeof(*ve), context); local 4851 struct virtual_engine * const ve = (struct virtual_engine *)data; local 4956 struct virtual_engine *ve = to_virtual_engine(rq->engine); local 5010 struct virtual_engine *ve = to_virtual_engine(rq->engine); local 5033 struct virtual_engine *ve; local 5197 struct virtual_engine *ve = to_virtual_engine(engine); local 5233 struct virtual_engine *ve = to_virtual_engine(engine); local 5305 struct virtual_engine *ve = local [all...] |
| /src/crypto/external/bsd/heimdal/dist/lib/base/ |
| db.c | 1346 heim_object_t vc, ve, vt; local 1349 ve = heim_dict_get_value(options, HSTR("exclusive")); 1352 ret = open_file(dbname, 1, ve ? 1 : 0, NULL, error); 1355 } else if (vc || ve || vt) {
|
| /src/external/bsd/unbound/dist/validator/ |
| validator.c | 668 * @param ve: validator env for verify. 679 struct module_env* env, struct val_env* ve, 723 sec = val_verify_rrset_entry(env, ve, s, key_entry, &reason, 768 sec = val_verify_rrset_entry(env, ve, s, key_entry, &reason, 814 (void)val_verify_rrset_entry(env, ve, s, key_entry, 995 * @param ve: validator env for verify. 1007 validate_positive_response(struct module_env* env, struct val_env* ve, 1073 enum sec_status sec = nsec3_prove_wildcard(env, ve, 1114 * @param ve: validator env for verify. 1126 validate_nodata_response(struct module_env* env, struct val_env* ve, 2676 struct val_env* ve = (struct val_env*)qstate->env->modinfo[id]; local 2782 struct val_env* ve = (struct val_env*)qstate->env->modinfo[id]; local 2888 struct val_env* ve = (struct val_env*)qstate->env->modinfo[id]; local 3150 struct val_env* ve = (struct val_env*)qstate->env->modinfo[id]; local 3249 struct val_env* ve = (struct val_env*)qstate->env->modinfo[id]; local 3371 struct val_env* ve = (struct val_env*)qstate->env->modinfo[id]; local 3506 struct val_env* ve = (struct val_env*)env->modinfo[id]; local [all...] |
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| classes.cc | 331 class vE : public virtual vD { 333 int ve; member in class:vE 337 vE g_vE; 379 // {{{{{vA::va,vA::vx},vB::vb,vB::vx},vC::vc,vC::vx},vD::vd,vD::vx},vE::ve,vE::vx} 389 g_vE.vE::ve = 27; 390 g_vE.vE::vx = 28;
|
| misc.cc | 334 class vE : public virtual vD { 336 int ve; member in class:vE 340 vE g_vE; 382 // {{{{{vA::va,vA::vx},vB::vb,vB::vx},vC::vc,vC::vx},vD::vd,vD::vx},vE::ve,vE::vx} 392 g_vE.vE::ve = 27; 393 g_vE.vE::vx = 28;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| classes.cc | 331 class vE : public virtual vD { 333 int ve; member in class:vE 337 vE g_vE; 379 // {{{{{vA::va,vA::vx},vB::vb,vB::vx},vC::vc,vC::vx},vD::vd,vD::vx},vE::ve,vE::vx} 389 g_vE.vE::ve = 27; 390 g_vE.vE::vx = 28;
|
| misc.cc | 334 class vE : public virtual vD { 336 int ve; member in class:vE 340 vE g_vE; 382 // {{{{{vA::va,vA::vx},vB::vb,vB::vx},vC::vc,vC::vx},vD::vd,vD::vx},vE::ve,vE::vx} 392 g_vE.vE::ve = 27; 393 g_vE.vE::vx = 28;
|
| /src/external/cddl/osnet/dist/lib/libzfs/common/ |
| libzfs_import.c | 229 vdev_entry_t *ve; local 298 for (ve = pe->pe_vdevs; ve != NULL; ve = ve->ve_next) { 299 if (ve->ve_guid == top_guid) 303 if (ve == NULL) { 304 if ((ve = zfs_alloc(hdl, sizeof (vdev_entry_t))) == NULL) { 308 ve->ve_guid = top_guid; 309 ve->ve_next = pe->pe_vdevs 448 vdev_entry_t *ve; local 1176 vdev_entry_t *ve, *venext; local [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| Triple.h | 103 ve, // NEC SX-Aurora Vector Engine enumerator in enum:llvm::Triple::ArchType 104 LastArchType = ve 787 /// Tests whether the target is VE 789 return getArch() == Triple::ve;
|
| /src/external/bsd/unbound/dist/services/ |
| authzone.c | 7829 struct val_env* ve; local 7838 ve = (struct val_env*)env->modinfo[m]; 7854 sec = dnskeyset_verify_rrset(env, ve, &pk, dnskey, sigalg, why_bogus, NULL, 8173 struct val_env* ve; local 8192 ve = (struct val_env*)env->modinfo[m]; 8203 sec = val_verify_DNSKEY_with_TA(env, ve, keystorage, anchor->ds_rrset, 8234 struct val_env* ve; local 8254 ve = (struct val_env*)env->modinfo[m]; 8264 sec = val_verify_DNSKEY_with_DS(env, ve, keystorage, ds, sigalg,
|
| /src/external/gpl3/gcc/dist/gcc/ |
| omp-low.cc | 496 /* For file scope vars, track whether we've seen them as 910 tree ve = DECL_VALUE_EXPR (decl); local 911 walk_tree (&ve, copy_tree_body_r, &ctx->cb, NULL); 912 SET_DECL_VALUE_EXPR (new_decl, ve); 10163 /* If we've added a separate identity element
|
| /src/external/gpl3/gcc.old/dist/gcc/ |
| omp-low.cc | 494 /* For file scope vars, track whether we've seen them as 907 tree ve = DECL_VALUE_EXPR (decl); local 908 walk_tree (&ve, copy_tree_body_r, &ctx->cb, NULL); 909 SET_DECL_VALUE_EXPR (new_decl, ve); 10206 /* If we've added a separate identity element
|