t                  74 common/gcc-millicode/qdivrem.c 	unsigned int qhat, rhat, t;
t                 136 common/gcc-millicode/qdivrem.c 			t = v[2];	/* nonzero, by definition */
t                 137 common/gcc-millicode/qdivrem.c 			q1 = (digit)(u[1] / t);
t                 138 common/gcc-millicode/qdivrem.c 			rbj = COMBINE(u[1] % t, u[2]);
t                 139 common/gcc-millicode/qdivrem.c 			q2 = (digit)(rbj / t);
t                 140 common/gcc-millicode/qdivrem.c 			rbj = COMBINE(rbj % t, u[3]);
t                 141 common/gcc-millicode/qdivrem.c 			q3 = (digit)(rbj / t);
t                 142 common/gcc-millicode/qdivrem.c 			rbj = COMBINE(rbj % t, u[4]);
t                 143 common/gcc-millicode/qdivrem.c 			q4 = (digit)(rbj / t);
t                 145 common/gcc-millicode/qdivrem.c 				*arq = rbj % t;
t                 170 common/gcc-millicode/qdivrem.c 	for (t = v[1]; t < B / 2; t <<= 1)
t                 217 common/gcc-millicode/qdivrem.c 		for (t = 0, i = n; i > 0; i--) {
t                 218 common/gcc-millicode/qdivrem.c 			t = u[i + j] - v[i] * qhat - t;
t                 219 common/gcc-millicode/qdivrem.c 			u[i + j] = (digit)LHALF(t);
t                 220 common/gcc-millicode/qdivrem.c 			t = (B - HHALF(t)) & (B - 1);
t                 222 common/gcc-millicode/qdivrem.c 		t = u[j] - t;
t                 223 common/gcc-millicode/qdivrem.c 		u[j] = (digit)LHALF(t);
t                 230 common/gcc-millicode/qdivrem.c 		if (HHALF(t)) {
t                 232 common/gcc-millicode/qdivrem.c 			for (t = 0, i = n; i > 0; i--) { /* D6: add back. */
t                 233 common/gcc-millicode/qdivrem.c 				t += u[i + j] + v[i];
t                 234 common/gcc-millicode/qdivrem.c 				u[i + j] = (digit)LHALF(t);
t                 235 common/gcc-millicode/qdivrem.c 				t = HHALF(t);
t                 237 common/gcc-millicode/qdivrem.c 			u[j] = (digit)LHALF(u[j] + t);
t                  92 kern/include/proc.h int proc_addthread(struct proc *proc, struct thread *t);
t                  95 kern/include/proc.h void proc_remthread(struct thread *t);
t                  47 kern/include/stdarg.h #define va_arg(ap,t)       __builtin_va_arg(ap, t)
t                  77 kern/include/threadlist.h void threadlist_addhead(struct threadlist *tl, struct thread *t);
t                  78 kern/include/threadlist.h void threadlist_addtail(struct threadlist *tl, struct thread *t);
t                  87 kern/include/threadlist.h void threadlist_remove(struct threadlist *tl, struct thread *t);
t                 282 kern/proc/proc.c proc_addthread(struct proc *proc, struct thread *t)
t                 286 kern/proc/proc.c 	KASSERT(t->t_proc == NULL);
t                 289 kern/proc/proc.c 	result = threadarray_add(&proc->p_threads, t, NULL);
t                 294 kern/proc/proc.c 	t->t_proc = proc;
t                 303 kern/proc/proc.c proc_remthread(struct thread *t)
t                 308 kern/proc/proc.c 	proc = t->t_proc;
t                 315 kern/proc/proc.c 		if (threadarray_get(&proc->p_threads, i) == t) {
t                 318 kern/proc/proc.c 			t->t_proc = NULL;
t                 324 kern/proc/proc.c 	panic("Thread (%p) has escaped from its process (%p)\n", t, proc);
t                 862 kern/thread/thread.c 	struct thread *t;
t                 885 kern/thread/thread.c 		t = threadlist_remtail(&curcpu->c_runqueue);
t                 886 kern/thread/thread.c 		threadlist_addhead(&victims, t);
t                 897 kern/thread/thread.c 			t = threadlist_remhead(&victims);
t                 920 kern/thread/thread.c 			if (t == curthread) {
t                 921 kern/thread/thread.c 				threadlist_addtail(&victims, t);
t                 926 kern/thread/thread.c 			t->t_cpu = c;
t                 927 kern/thread/thread.c 			threadlist_addtail(&c->c_runqueue, t);
t                 930 kern/thread/thread.c 			      t->t_name, curcpu->c_number, c->c_number);
t                 950 kern/thread/thread.c 		while ((t = threadlist_remhead(&victims)) != NULL) {
t                 951 kern/thread/thread.c 			threadlist_addtail(&curcpu->c_runqueue, t);
t                  40 kern/thread/threadlist.c threadlistnode_init(struct threadlistnode *tln, struct thread *t)
t                  43 kern/thread/threadlist.c 	KASSERT(t != NULL);
t                  47 kern/thread/threadlist.c 	tln->tln_self = t;
t                 107 kern/thread/threadlist.c threadlist_insertafternode(struct threadlistnode *onlist, struct thread *t)
t                 111 kern/thread/threadlist.c 	addee = &t->t_listnode;
t                 127 kern/thread/threadlist.c threadlist_insertbeforenode(struct thread *t, struct threadlistnode *onlist)
t                 131 kern/thread/threadlist.c 	addee = &t->t_listnode;
t                 163 kern/thread/threadlist.c threadlist_addhead(struct threadlist *tl, struct thread *t)
t                 166 kern/thread/threadlist.c 	DEBUGASSERT(t != NULL);
t                 168 kern/thread/threadlist.c 	threadlist_insertafternode(&tl->tl_head, t);
t                 173 kern/thread/threadlist.c threadlist_addtail(struct threadlist *tl, struct thread *t)
t                 176 kern/thread/threadlist.c 	DEBUGASSERT(t != NULL);
t                 178 kern/thread/threadlist.c 	threadlist_insertbeforenode(t, &tl->tl_tail);
t                 235 kern/thread/threadlist.c threadlist_remove(struct threadlist *tl, struct thread *t)
t                 237 kern/thread/threadlist.c 	threadlist_removenode(&t->t_listnode);
t                  44 user/include/stdarg.h #define va_arg(ap,t) __builtin_va_arg(ap,t)
t                  39 user/lib/libc/time/time.c time(time_t *t)
t                  41 user/lib/libc/time/time.c 	return __time(t, NULL);
t                 140 user/testbin/parallelvm/parallelvm.c 	int i, t=0;
t                 142 user/testbin/parallelvm/parallelvm.c 		t += m1->m_data[i][i];
t                 144 user/testbin/parallelvm/parallelvm.c 	return t;