Lines Matching refs:itp
202 itimer_t **itp, *it; in timer_grab() local
209 if ((itp = p->p_itimer) == NULL || (it = itp[tid]) == NULL) { in timer_grab()
475 itimer_t *it, **itp; in timer_create() local
566 if ((itp = p->p_itimer) == NULL) { in timer_create()
568 itp = kmem_zalloc(timer_max * sizeof (itimer_t *), KM_SLEEP); in timer_create()
572 p->p_itimer = itp; in timer_create()
574 kmem_free(itp, timer_max * sizeof (itimer_t *)); in timer_create()
575 itp = p->p_itimer; in timer_create()
579 for (i = 0; i < timer_max && itp[i] != NULL; i++) in timer_create()
594 ASSERT(i < timer_max && itp[i] == NULL); in timer_create()
616 itp[i] = it; in timer_create()
648 itp[i] = NULL; /* clear slot */ in timer_create()
661 itp[i] = NULL; /* clear slot */ in timer_create()
838 itimer_t *it, **itp; in timer_lwpexit() local
842 if ((itp = p->p_itimer) == NULL) in timer_lwpexit()
846 if ((it = itp[i]) == NULL) in timer_lwpexit()
882 itimer_t *it, **itp; in timer_lwpbind() local
886 if ((itp = p->p_itimer) == NULL) in timer_lwpbind()
890 if ((it = itp[i]) == NULL) in timer_lwpbind()