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()
466 itimer_t *it, **itp; in timer_create() local
557 if ((itp = p->p_itimer) == NULL) { in timer_create()
559 itp = kmem_zalloc(timer_max * sizeof (itimer_t *), KM_SLEEP); in timer_create()
563 p->p_itimer = itp; in timer_create()
565 kmem_free(itp, timer_max * sizeof (itimer_t *)); in timer_create()
566 itp = p->p_itimer; in timer_create()
570 for (i = 0; i < timer_max && itp[i] != NULL; i++) in timer_create()
585 ASSERT(i < timer_max && itp[i] == NULL); in timer_create()
607 itp[i] = it; in timer_create()
639 itp[i] = NULL; /* clear slot */ in timer_create()
652 itp[i] = NULL; /* clear slot */ in timer_create()
829 itimer_t *it, **itp; in timer_lwpexit() local
833 if ((itp = p->p_itimer) == NULL) in timer_lwpexit()
837 if ((it = itp[i]) == NULL) in timer_lwpexit()
873 itimer_t *it, **itp; in timer_lwpbind() local
877 if ((itp = p->p_itimer) == NULL) in timer_lwpbind()
881 if ((it = itp[i]) == NULL) in timer_lwpbind()