HomeSort by: relevance | last modified time | path
    Searched defs:vt (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/sys/arch/algor/dev/
vtpbc_mainbus.c 84 struct vtpbc_config *vt; local
89 vt = &vtpbc_configuration;
90 sc->sc_vtpbc = vt;
92 if (vt->vt_rev < vtpbc_nrevs)
93 printf(": V3 V962, revision %s\n", vtpbc_revs[vt->vt_rev]);
95 printf(": V3 V962, unknown revision %d\n", vt->vt_rev);
98 (u_long) vt->vt_pci_membase);
100 (u_long) vt->vt_dma_winbase);
106 if (vt->vt_pci_iobase == (bus_addr_t) -1)
  /src/external/lgpl3/gmp/dist/mini-gmp/tests/
t-lucm.c 34 mpz_t m, vr, qr, vm, qm, vt; local
44 mpz_init (vt);
71 mpz_sub (vt, m, vr);
77 (mpz_cmp (vm, vr) != 0 && mpz_cmp (vm, vt) != 0))
84 dump ("vt", vt);
97 mpz_clear (vt);
  /src/sys/arch/mips/bonito/
bonito_pci.c 180 struct bonito_config *vt = v; local
184 if (bonito_conf_addr(vt, tag, offset, &cfgoff, &pcimap_cfg))
  /src/sys/arch/algor/algor/
machdep.c 212 struct vtpbc_config *vt = &vtpbc_configuration; local
217 vt->vt_addr = MIPS_PHYS_TO_KSEG1(P4032_V962PBC);
218 vt->vt_cfgbase = MIPS_PHYS_TO_KSEG1(P4032_PCICFG);
219 vt->vt_adbase = 11;
222 vtpbc_init(&acp->ac_pc, vt);
259 struct vtpbc_config *vt = &vtpbc_configuration; local
264 vt->vt_addr = MIPS_PHYS_TO_KSEG1(P5064_V360EPC);
265 vt->vt_cfgbase = MIPS_PHYS_TO_KSEG1(P5064_PCICFG);
266 vt->vt_adbase = 24;
269 vtpbc_init(&acp->ac_pc, vt);
    [all...]
  /src/sys/arch/algor/pci/
vtpbc.c 86 vtpbc_init(pci_chipset_tag_t pc, struct vtpbc_config *vt)
89 pc->pc_conf_v = vt;
97 vt->vt_rev = V96X_PCI_CC_REV(vt) & V96X_PCI_CC_REV_VREV;
107 if (vt->vt_rev < V96X_VREV_B2)
108 vt->vt_pci_iobase = (bus_addr_t) -1;
110 if ((V96X_LB_BASE2(vt) & V96X_LB_BASEx_ENABLE) == 0)
111 vt->vt_pci_iobase = (bus_addr_t) -1;
113 vt->vt_pci_iobase =
114 (V96X_LB_MAP2(vt) & V96X_LB_MAPx_MAP_ADR) << 16
191 struct vtpbc_config *vt = v; local
229 struct vtpbc_config *vt = v; local
    [all...]
  /src/sys/arch/hpcmips/vr/
bcu_vrip.c 221 int vt; local
224 vt = ((spdreg & BCUCLKSPEED_DIVVTMASK) >>
226 if (vt == 0)
228 else if (vt < 0x9)
229 vtclock = cpuclock / vt;
231 vtclock = cpuclock / ((vt - 8)*2+1) * 2;
  /src/tests/fs/puffs/h_dtfs/
dtfs_vfsops.c 44 rtstr(struct puffs_usermount *pu, const char *str, enum vtype vt)
54 dtfs_baseattrs(va, vt, 2);
60 puffs_setrootinfo(pu, vt, 0, 0);
66 rtdev(struct puffs_usermount *pu, const char *str, enum vtype vt)
75 dtfs_baseattrs(va, vt, 2);
79 if (vt == VBLK)
84 puffs_setrootinfo(pu, vt, 0, va->va_rdev);
90 rtnorm(struct puffs_usermount *pu, const char *str, enum vtype vt)
95 dtfs_baseattrs(va, vt, 2);
96 if (vt == VDIR
108 enum vtype vt; member in struct:rtype
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
graphds.cc 73 struct vertex *vf = &g->vertices[f], *vt = &g->vertices[t]; local
78 e->pred_next = vt->pred;
79 vt->pred = e;
  /src/external/gpl3/gcc.old/dist/gcc/
graphds.cc 73 struct vertex *vf = &g->vertices[f], *vt = &g->vertices[t]; local
78 e->pred_next = vt->pred;
79 vt->pred = e;
  /src/external/lgpl3/gmp/dist/tests/
refmpf.c 31 mp_ptr ut, vt, wt; local
73 vt = TMP_ALLOC_LIMBS (size + 1);
76 MPN_ZERO (vt, size);
81 MPN_COPY (vt + off, PTR (v), ABSIZ (v));
84 cy = mpn_add_n (wt, ut, vt, size);
203 mp_ptr ut, vt, wt; local
246 vt = TMP_ALLOC_LIMBS (size + 1);
249 MPN_ZERO (vt, size);
254 MPN_COPY (vt + off, PTR (v), ABSIZ (v));
257 if (mpn_cmp (ut, vt, size) >= 0
    [all...]
  /src/sys/arch/xen/xen/
xen_clock.c 199 volatile struct vcpu_time_info *vt = &curcpu()->ci_vcpu->time; local
201 while (__predict_false(1 & (tp->version = vt->version)))
211 return vt;
215 * xen_vcputime_exit(vt, tp)
222 xen_vcputime_exit(volatile struct vcpu_time_info *vt,
226 KASSERT(vt == &curcpu()->ci_vcpu->time);
235 return tp->version == vt->version;
274 volatile struct vcpu_time_info *vt; local
291 vt = xen_vcputime_enter(&ticket);
294 raw_systime_ns = vt->system_time
432 volatile struct vcpu_time_info *vt; local
602 volatile struct vcpu_time_info *vt; local
    [all...]
  /src/sys/fs/tmpfs/
tmpfs_vnops.c 330 enum vtype vt = vap->va_type; local
332 if (vt != VBLK && vt != VCHR && vt != VFIFO) {
  /src/sys/kern/
uipc_mbufdebug.c 294 uint8_t vt; local
321 vt = ph.vertype;
323 (*pr)("PPPoE: Version = %u\n", ((vt >> 4) & 0xff));
324 (*pr)("PPPoE: Type = %u\n", (vt & 0xff));
vfs_vnops.c 1552 enum vtype vt; local
1559 vt = vp->v_type;
1560 if (vt == VBLK)
1566 if (vt != VBLK)
  /src/usr.sbin/puffs/mount_sysctlfs/
sysctlfs.c 651 enum vtype vt; local
679 vt = VDIR;
681 vt = VREG;
697 puffs_vtype2dt(vt), reslen))
  /src/external/bsd/wpa/dist/src/drivers/
ndis_events.c 243 VARIANT vt; local
254 0, &vt, NULL, NULL);
262 SafeArrayGetLBound(V_ARRAY(&vt), 1, &lower);
263 SafeArrayGetUBound(V_ARRAY(&vt), 1, &upper);
269 VariantClear(&vt);
275 SafeArrayGetElement(V_ARRAY(&vt), &k, &ch);
280 VariantClear(&vt);
320 VARIANT vtClass, vt; local
331 hr = IWbemClassObject_Get(pObj, L"InstanceName", 0, &vt, NULL,
348 if (wcscmp(events->adapter_desc, vt.bstrVal) != 0)
494 VARIANT vt; local
    [all...]
  /src/sys/altq/
altq_hfsc.c 772 * get the class with the minimum vt in the hierarchy
787 * don't update if the new vt is smaller.
970 u_int64_t vt, f, cur_time; local
986 * set vt to the average of the min and max
988 * change, don't decrease vt of the class.
990 vt = max_cl->cl_vt;
992 vt = (cl->cl_parent->cl_cvtmin + vt)/2;
995 cl->cl_parentperiod || vt > cl->cl_vt)
996 cl->cl_vt = vt;
    [all...]
altq_hfsc.h 80 u_int64_t vt; /* virtual time */ member in struct:hfsc_classstats
101 u_int vtperiod; /* vt period sequence no */
102 u_int parentperiod; /* parent's vt period seqno */
263 u_int64_t cl_vtadj; /* intra-period cumulative vt
265 u_int64_t cl_vtoff; /* inter-period cumulative vt offset */
266 u_int64_t cl_cvtmax; /* max child's vt in the last period */
278 u_int cl_vtperiod; /* vt period sequence no */
279 u_int cl_parentperiod; /* parent's vt period seqno */
  /src/sys/external/bsd/drm2/dist/drm/ast/
ast_drv.h 264 u32 vt; member in struct:ast_vbios_enhtable
  /src/usr.bin/config/
sem.c 130 struct vtype *vt = emalloc(sizeof(*vt)); local
131 vt->type = type;
132 vt->attr = a;
133 vt->value = value;
134 return vt;
2119 struct vtype *vt = v; local
2126 if (!vt->attr->a_deselected)
2129 switch (vt->type) {
2133 deselectattr(vt->value)
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/base/
db.c 1346 heim_object_t vc, ve, vt; local
1350 vt = heim_dict_get_value(options, HSTR("truncate"));
1351 if (vc && vt) {
1355 } else if (vc || ve || vt) {
  /src/external/gpl3/gdb.old/dist/sim/mips/
mdmx.c 376 int vt,
388 op2 = ValueFPR(vt, fmt_mdmx);
392 result = qh_vector_op(op1, ValueFPR(vt, fmt_mdmx), qh_func[op]);
395 result = qh_map_op(op1, vt, qh_func[op]);
403 op2 = ValueFPR(vt, fmt_mdmx);
407 result = ob_vector_op(op1, ValueFPR(vt, fmt_mdmx), ob_func[op]);
410 result = ob_map_op(op1, vt, ob_func[op]);
496 int vt,
507 op2 = ValueFPR(vt, fmt_mdmx);
511 qh_vector_test(cpu, v1, ValueFPR(vt, fmt_mdmx), cond)
1383 enum {vs, ss, vt} source; enumerator in enum:__anon22562::__anon22563
    [all...]
  /src/external/gpl3/gdb/dist/sim/mips/
mdmx.c 376 int vt,
388 op2 = ValueFPR(vt, fmt_mdmx);
392 result = qh_vector_op(op1, ValueFPR(vt, fmt_mdmx), qh_func[op]);
395 result = qh_map_op(op1, vt, qh_func[op]);
403 op2 = ValueFPR(vt, fmt_mdmx);
407 result = ob_vector_op(op1, ValueFPR(vt, fmt_mdmx), ob_func[op]);
410 result = ob_map_op(op1, vt, ob_func[op]);
496 int vt,
507 op2 = ValueFPR(vt, fmt_mdmx);
511 qh_vector_test(cpu, v1, ValueFPR(vt, fmt_mdmx), cond)
1383 enum {vs, ss, vt} source; enumerator in enum:__anon2030::__anon2031
    [all...]
  /src/sbin/efi/
devpath3.c 571 struct vendor_type *vt; local
579 vt = devpath_msg_vendor_type(&p->GUID);
580 if (vt == NULL) {
584 else if (vt->fn == NULL) {
585 assert(vt->name != NULL);
586 path->sz = easprintf(&path->cp, "%s(%s)", vt->name, data_str);
589 vt->fn(dp, path, dbg);
  /src/sys/dev/
video.c 1310 struct video_tuner *vt)
1312 vt->index = tuner->index;
1313 strlcpy(vt->name, tuner->name, sizeof(vt->name));
1314 vt->freq_lo = tuner->rangelow;
1315 vt->freq_hi = tuner->rangehigh;
1316 vt->signal = tuner->signal;
1317 vt->afc = tuner->afc;
1318 vt->caps = 0;
1320 vt->caps |= VIDEO_TUNER_F_STEREO
1384 struct video_tuner vt; local
1405 struct video_tuner vt; local
1441 struct video_tuner vt; local
    [all...]

Completed in 61 milliseconds

1 2