Searched refs:ts1 (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/lib/libkse/thread/
H A Dthr_nanosleep.c50 struct timespec ts, ts1; local
79 KSE_GET_TOD(curthread->kse, &ts1);
81 + ts.tv_sec - ts1.tv_sec;
83 + ts.tv_nsec - ts1.tv_nsec;
/freebsd-9.3-release/lib/libthr/thread/
H A Dthr_mutex.c565 struct timespec ts1, ts2; local
576 clock_gettime(CLOCK_REALTIME, &ts1);
577 TIMESPEC_SUB(&ts2, abstime, &ts1);
601 clock_gettime(CLOCK_REALTIME, &ts1);
602 TIMESPEC_SUB(&ts2, abstime, &ts1);
607 ts1.tv_sec = 30;
608 ts1.tv_nsec = 0;
610 __sys_nanosleep(&ts1, NULL);
/freebsd-9.3-release/crypto/openssl/demos/tunala/
H A Dtest.sh17 $VER -cipher $CIPHER 1> ts1.txt 2> ts2.txt &
/freebsd-9.3-release/contrib/gcc/
H A Dcfglayout.c388 tree ts1 = s1, ts2 = s2;
391 while (ts1 != ts2)
393 gcc_assert (ts1 && ts2);
394 if (BLOCK_NUMBER (ts1) > BLOCK_NUMBER (ts2))
395 ts1 = BLOCK_SUPERCONTEXT (ts1);
396 else if (BLOCK_NUMBER (ts1) < BLOCK_NUMBER (ts2))
400 ts1 = BLOCK_SUPERCONTEXT (ts1);
404 com = ts1;
383 tree ts1 = s1, ts2 = s2; local
[all...]
/freebsd-9.3-release/sys/kern/
H A Dsubr_turnstile.c820 struct turnstile *ts1; local
849 ts1 = ts;
854 ts1 = LIST_FIRST(&ts->ts_free);
855 MPASS(ts1 != NULL);
856 LIST_REMOVE(ts1, ts_hash);
857 td->td_turnstile = ts1;
H A Duipc_sem.c809 struct timespec ts1, ts2; local
840 ts1 = *abstime;
842 timespecsub(&ts1, &ts2);
843 TIMESPEC_TO_TIMEVAL(&tv, &ts1);
/freebsd-9.3-release/sys/netsmb/
H A Dsmb_trantcp.c509 struct timespec ts1, ts2; local
529 getnanotime(&ts1);
534 timespecsub(&ts2, &ts1);
/freebsd-9.3-release/usr.sbin/moused/
H A Dmoused.c2547 struct timespec ts1; local
2560 clock_gettime(CLOCK_MONOTONIC_FAST, &ts1);
2561 drift_current_ts = ts1;
2566 tssub(&ts1, &ts2, &ts);
2572 tssub(&ts1, &ts2, &ts3);
2586 bstate[i].ts = ts1;
2589 bstate[i].ts = ts1;
2596 bstate[i].ts = ts1;
2613 struct timespec ts1; local
2618 clock_gettime(CLOCK_MONOTONIC_FAST, &ts1);
[all...]

Completed in 256 milliseconds