Searched refs:vto (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.1-release/sys/powerpc/wii/
H A Dwii_fb.c343 struct wiifb_vtimingodd vto; local
401 vto.vto_preb = (P + interlacebias + prb) << shift;
402 vto.vto_postb = (Q - interlacebias + psb) << shift;
411 vto.vto_preb = (P + prb) << shift;
412 vto.vto_postb = (Q - psb) << shift;
414 wiifb_vtimingodd_write(sc, &vto);
H A Dwii_fbvar.h244 wiifb_vtimingodd_read(struct wiifb_softc *sc, struct wiifb_vtimingodd *vto) argument
249 vto->vto_preb = *reg & 0x3ff;
250 vto->vto_postb = (*reg >> 16) & 0x3ff;
254 wiifb_vtimingodd_write(struct wiifb_softc *sc, struct wiifb_vtimingodd *vto) argument
259 *reg = ((vto->vto_postb & 0x3ff) << 16) |
260 (vto->vto_preb & 0x3ff);
/freebsd-10.1-release/sys/dev/digi/
H A Ddigi.c185 digi_bcopy(const void *vfrom, void *vto, size_t sz) argument
188 volatile char *to = (volatile char *)vto;
195 to = (volatile char *)vto;

Completed in 104 milliseconds