Lines Matching refs:time
73 * Shift the indexed-list to the most current time.
75 * t - most current time.
90 while (k->time < t) {
101 if (k->time < INFINITY - DT) {
102 nt = k->time + DT; /* next key time */
106 while (k->time < nt) {
111 while (n->time >= nt) {
118 LB = fk->time;
121 fk->time = nt;
129 fn->time = nt;
190 n->time = LB;
201 k->time = LB;
223 n->time = t;
234 k->time = t;
251 n->time = INFINITY; /* the end of the world */
263 k->time = INFINITY; /* the end of the world */
282 * Add an event to the element list with it's execution time.
287 * t - The time when the event is scheduled at.
320 (curr == NULL || t <= curr->time)) {
336 /* not initialization time */
358 while (k->time > t) {
376 y->time = x->time;
388 if (y->time > t) {
399 x->time = t;
406 while (n->time > t) {
418 if (curr == NULL || curr->time > t) {
494 k->time = k->notice->time;
554 * t - Pointer of time of the event for returning.
597 /* return the time */
598 *t = curr->time;