HomeSort by: relevance | last modified time | path
    Searched defs:c_time (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/am-utils/dist/amd/
clock.c 66 time_t c_time; /* Time of call */ member in struct:callout
134 cpnew->c_time = t;
144 if (cp2->c_time >= t)
186 if (cp->c_time >= now && cp->c_time <= then) {
189 cp->c_id, (long) (cp->c_time - now));
190 next_softclock = cp->c_time = now;
214 while ((cp = callouts.c_next) && cp->c_time <= now) {
240 return cp->c_time - now;
  /src/sys/sys/
callout.h 96 int c_time; /* when callout fires */ member in struct:callout_impl
  /src/external/bsd/ntp/dist/libparse/
parsesolaris.c 648 timestamp_t c_time; local
655 c_time.tv.tv_sec = hres_time.tv_sec;
656 c_time.tv.tv_usec = hres_time.tv_nsec / 1000;
679 if (ch != ~0 && parse_ioread(&parse->parse_io, (unsigned int)ch, &c_time))
700 if (parse_ioread(&parse->parse_io, (unsigned int)0, &c_time))
730 timestamp_t c_time; local
736 c_time.tv.tv_sec = hres_time.tv_sec;
737 c_time.tv.tv_usec = hres_time.tv_nsec / 1000;
742 parse_iopps(&parse->parse_io, status ? SYNC_ONE : SYNC_ZERO, &c_time))
766 parse->parse_ppsclockev.tv = c_time.tv
    [all...]
  /src/sys/arch/shark/shark/
scr.c 535 int c_time; /* ticks to the event */
3601 p1->c_time -= scrClkCount;
3603 if (p1->c_time > 0)
3608 if (p1->c_time == 0)
3617 while ((c = scrClkCallTodo.c_next) != NULL && c->c_time <= 0)
3739 * as well. Watch out for negative c_time values; these represent
3742 for (p = &scrClkCallTodo; (t = p->c_next) != NULL && count > t->c_time; p = t)
3744 if (t->c_time > 0)
3746 count -= t->c_time;
3751 new->c_time = count
534 int c_time; \/* ticks to the event *\/ member in struct:callout_t
    [all...]
  /src/crypto/external/apache2/openssl/dist/test/
ssl_old_test.c 623 long bytes, clock_t *s_time, clock_t *c_time);
625 clock_t *c_time);
921 clock_t s_time = 0, c_time = 0; local
1806 ret = doit_biopair(s_ssl, c_ssl, bytes, &s_time, &c_time);
1811 bytes, &s_time, &c_time);
1815 bytes, &s_time, &c_time);
1881 (double)c_time / CLOCKS_PER_SEC);
1886 (double)s_time, (double)c_time);
1917 clock_t *s_time, clock_t *c_time)
2078 * c_time and s_time increments will typically be very smal
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
ssl_old_test.c 617 long bytes, clock_t *s_time, clock_t *c_time);
619 clock_t *c_time);
911 clock_t s_time = 0, c_time = 0; local
1810 ret = doit_biopair(s_ssl, c_ssl, bytes, &s_time, &c_time);
1815 bytes, &s_time, &c_time);
1819 bytes, &s_time, &c_time);
1886 (double)c_time / CLOCKS_PER_SEC);
1891 (double)s_time, (double)c_time);
1921 clock_t *s_time, clock_t *c_time)
2082 * c_time and s_time increments will typically be very smal
    [all...]
  /src/external/bsd/ppp/dist/pppd/
main.c 1402 struct timeval c_time; /* time at which to call routine */ member in struct:callout
1427 newp->c_time.tv_sec = timenow.tv_sec + secs;
1428 newp->c_time.tv_usec = timenow.tv_usec + usecs;
1429 if (newp->c_time.tv_usec >= 1000000) {
1430 newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000;
1431 newp->c_time.tv_usec %= 1000000;
1438 if (newp->c_time.tv_sec < p->c_time.tv_sec
1439 || (newp->c_time.tv_sec == p->c_time.tv_se
    [all...]
  /src/crypto/external/bsd/openssl.old/dist/test/
ssltest_old.c 622 long bytes, clock_t *s_time, clock_t *c_time);
624 clock_t *c_time);
917 clock_t s_time = 0, c_time = 0; local
1801 ret = doit_biopair(s_ssl, c_ssl, bytes, &s_time, &c_time);
1806 bytes, &s_time, &c_time);
1810 bytes, &s_time, &c_time);
1876 (double)c_time / CLOCKS_PER_SEC);
1881 (double)s_time, (double)c_time);
1913 clock_t *s_time, clock_t *c_time)
2074 * c_time and s_time increments will typically be very smal
    [all...]

Completed in 35 milliseconds