Lines Matching refs:t32
301 struct timeval32 *t32; in sbioc() local
303 t32 = (struct timeval32 *)mp->b_cont->b_rptr; in sbioc()
304 if (t32->tv_sec < 0 || t32->tv_usec < 0) { in sbioc()
308 ticks = TIMEVAL_TO_TICK(t32); in sbioc()
598 struct timeval32 *t32; in sbioctl() local
606 t32 = (struct timeval32 *)mp->b_cont->b_rptr; in sbioctl()
607 if (t32->tv_sec < 0 || t32->tv_usec < 0) { in sbioctl()
611 ticks = TIMEVAL_TO_TICK(t32); in sbioctl()
671 struct timeval32 *t32; in sbioctl() local
674 datamp = allocb(sizeof (*t32), BPRI_MED); in sbioctl()
679 mcopyout(mp, NULL, sizeof (*t32), NULL, datamp); in sbioctl()
682 t32 = (struct timeval32 *)mp->b_cont->b_rptr; in sbioctl()
683 TICK_TO_TIMEVAL32(sbp->sb_ticks, t32); in sbioctl()
688 miocack(wq, mp, sizeof (*t32), 0); in sbioctl()