/src/sys/arch/algor/dev/ |
vtpbc_mainbus.c | 84 struct vtpbc_config *vt; local in function:vtpbc_mainbus_attach 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/sys/arch/mips/bonito/ |
bonito_pci.c | 180 struct bonito_config *vt = v; local in function:bonito_conf_write 184 if (bonito_conf_addr(vt, tag, offset, &cfgoff, &pcimap_cfg))
|
/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 in function:vtpbc_conf_read 229 struct vtpbc_config *vt = v; local in function:vtpbc_conf_write [all...] |
/src/sys/arch/algor/algor/ |
machdep.c | 212 struct vtpbc_config *vt = &vtpbc_configuration; local in function:mach_init 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 in function:mach_init 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/hpcmips/vr/ |
bcu_vrip.c | 221 int vt; local in function:vrbcu_dump_regs 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/sys/fs/tmpfs/ |
tmpfs_vnops.c | 330 enum vtype vt = vap->va_type; local in function:tmpfs_mknod 332 if (vt != VBLK && vt != VCHR && vt != VFIFO) {
|
/src/usr.sbin/puffs/mount_sysctlfs/ |
sysctlfs.c | 651 enum vtype vt; local in function:sysctlfs_node_readdir 679 vt = VDIR; 681 vt = VREG; 697 puffs_vtype2dt(vt), reslen))
|
/src/sys/kern/ |
uipc_mbufdebug.c | 294 uint8_t vt; local in function:m_examine_pppoe 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 in function:vn_bdev_openpath 1559 vt = vp->v_type; 1560 if (vt == VBLK) 1566 if (vt != VBLK)
|
/src/sys/arch/xen/xen/ |
xen_clock.c | 199 volatile struct vcpu_time_info *vt = &curcpu()->ci_vcpu->time; local in function:xen_vcputime_enter 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 in function:xen_vcputime_systime_ns 291 vt = xen_vcputime_enter(&ticket); 294 raw_systime_ns = vt->system_time 432 volatile struct vcpu_time_info *vt; local in function:xen_vcputime_raw_systime_ns 602 volatile struct vcpu_time_info *vt; local in function:xen_delay [all...] |
/src/sys/altq/ |
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 */
|
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 in function:init_vf 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...] |
/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 in function:addvalue 131 vt->type = type; 132 vt->attr = a; 133 vt->value = value; 134 return vt; 2114 struct vtype *vt = v; local in function:deselectattrcb2 2121 if (!vt->attr->a_deselected) 2124 switch (vt->type) { 2128 deselectattr(vt->value) [all...] |
/src/sys/rump/librump/rumpvfs/ |
rumpfs.c | 250 enum vtype vt; local in function:ettype_to_vtype 254 vt = VREG; 257 vt = VBLK; 260 vt = VCHR; 263 vt = VDIR; 266 vt = VDIR; 272 return vt; 278 enum vtype vt; local in function:hft_to_vtype 282 vt = VNON; 285 vt = VDIR [all...] |
/src/sbin/efi/ |
devpath3.c | 571 struct vendor_type *vt; local in function:devpath_msg_vendor 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 in function:video_get_tuner 1405 struct video_tuner vt; local in function:video_set_tuner 1441 struct video_tuner vt; local in function:video_set_frequency [all...] |