/src/sys/arch/algor/pci/ |
vtpbcreg.h | 12 #define V96XW(vt, x) *(volatile u_int32_t *)((vt)->vt_addr + (x)) 13 #define V96XH(vt, x) *(volatile u_int16_t *)((vt)->vt_addr + (x)) 14 #define V96XB(vt, x) *(volatile u_int8_t *)((vt)->vt_addr + (x)) 16 #define V96XW(vt, x) *(volatile u_int32_t *)((vt)->vt_addr + (x)) 17 #define V96XH(vt, x) *(volatile u_int16_t *)((vt)->vt_addr + ((x) ^ 2) [all...] |
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/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/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/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/external/bsd/acpica/dist/tests/templates/ |
templates.sh | 26 $ASL_COMPILER -vt -T ALL > /dev/null 2>&1
|
/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/dev/usb/ |
auvitek_video.c | 328 auvitek_get_tuner(void *opaque, struct video_tuner *vt) 332 switch (vt->index) { 334 strlcpy(vt->name, "XC5000", sizeof(vt->name)); 335 vt->freq_lo = 44000000 / 62500; 336 vt->freq_hi = 958000000 / 62500; 337 vt->caps = VIDEO_TUNER_F_STEREO; 338 vt->mode = VIDEO_TUNER_F_STEREO; 340 vt->signal = au8522_get_signal(sc->sc_au8522); 342 vt->signal = 0 [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/lib/libpuffs/ |
pnode.c | 160 puffs_newinfo_setvtype(struct puffs_newinfo *pni, enum vtype vt) 163 *pni->pni_vtype = vt;
|
subr.c | 232 puffs_vtype2dt(enum vtype vt) 235 if ((int)vt >= VNON && vt < (sizeof(vdmap)/sizeof(vdmap[0]))) 236 return vdmap[vt];
|
/src/sys/arch/arm/iomd/ |
makemodes.awk | 237 vt = split(modes[loop, 5], vtimings, ","); 238 if (vt != 6) continue;
|
/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...] |
/src/sys/external/gpl2/dts/dist/arch/arm64/boot/dts/mediatek/ |
mt6380.dtsi | 77 mt6380_vt_reg: ldo-vt { 78 regulator-name = "vt";
|
/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/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...] |
rump_vfs.c | 345 rump_vattr_settype(struct vattr *vap, enum rump_vtype vt) 348 vap->va_type = (enum vtype)vt;
|
/src/etc/etc.vax/ |
MAKEDEV.conf | 122 dhu[0-9]*|dh[0-9]*|dmf[0-9]*|dmz[0-9]*|vt[0-9]*) 124 vt*) name=vt; major=68; count=8 125 unit=${i#vt}
|
/src/sys/dev/videomode/ |
videomode.c | 25 #define M(nm,hr,vr,clk,hs,he,ht,vs,ve,vt,f) \ 26 { clk, hr, hs, he, ht, vr, vs, ve, vt, f, nm }
|
/src/sys/external/bsd/drm2/dist/include/drm/ |
drm_modes.h | 137 #define DRM_MODE(nm, t, c, hd, hss, hse, ht, hsk, vd, vss, vse, vt, vs, f) \ 141 .vsync_start = (vss), .vsync_end = (vse), .vtotal = (vt), \
|
/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 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/i2c/ |
ch7006_mode.c | 110 #define __MODE(f, hd, vd, ht, vt, hsynp, vsynp, \ 125 .vtotal = vt, \ 140 #define MODE(f, hd, vd, ht, vt, hsynp, vsynp, \ 142 __MODE(f, hd, vd, ht, vt, hsynp, vsynp, subc, scale, \
|
/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/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/usr.sbin/puffs/mount_9p/ |
nineproto.c | 323 const struct vattr *vap, const char *filename, enum vtype vt) 341 mode = vap->va_mode | (vt == VDIR ? P9PROTO_CPERM_DIR : 0);
|