Lines Matching refs:t32
300 struct timeval32 *t32; in sbioc() local
302 t32 = (struct timeval32 *)mp->b_cont->b_rptr; in sbioc()
303 if (t32->tv_sec < 0 || t32->tv_usec < 0) { in sbioc()
307 ticks = TIMEVAL_TO_TICK(t32); in sbioc()
600 struct timeval32 *t32; in sbioctl() local
608 t32 = (struct timeval32 *)mp->b_cont->b_rptr; in sbioctl()
609 if (t32->tv_sec < 0 || t32->tv_usec < 0) { in sbioctl()
613 ticks = TIMEVAL_TO_TICK(t32); in sbioctl()
673 struct timeval32 *t32; in sbioctl() local
676 datamp = allocb(sizeof (*t32), BPRI_MED); in sbioctl()
681 mcopyout(mp, NULL, sizeof (*t32), NULL, datamp); in sbioctl()
684 t32 = (struct timeval32 *)mp->b_cont->b_rptr; in sbioctl()
685 TICK_TO_TIMEVAL32(sbp->sb_ticks, t32); in sbioctl()
690 miocack(wq, mp, sizeof (*t32), 0); in sbioctl()