Lines Matching defs:t32
300 struct timeval32 *t32;
302 t32 = (struct timeval32 *)mp->b_cont->b_rptr;
303 if (t32->tv_sec < 0 || t32->tv_usec < 0) {
307 ticks = TIMEVAL_TO_TICK(t32);
597 struct timeval32 *t32;
605 t32 = (struct timeval32 *)mp->b_cont->b_rptr;
606 if (t32->tv_sec < 0 || t32->tv_usec < 0) {
610 ticks = TIMEVAL_TO_TICK(t32);
670 struct timeval32 *t32;
673 datamp = allocb(sizeof (*t32), BPRI_MED);
678 mcopyout(mp, NULL, sizeof (*t32), NULL, datamp);
681 t32 = (struct timeval32 *)mp->b_cont->b_rptr;
682 TICK_TO_TIMEVAL32(sbp->sb_ticks, t32);
687 miocack(wq, mp, sizeof (*t32), 0);