HomeSort by: relevance | last modified time | path
    Searched refs:sys_tick (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/ntp/dist/libntp/
systime.c 55 * The sys_tick variable specifies the system clock tick interval in
59 * at least MINSTEP greater than the prior, sys_tick is the time to read
64 * using get_systime() after sys_tick and sys_fuzz have been determined,
72 * quantized to sys_tick, if sys_tick is greater than sys_fuzz, which
79 double sys_tick = 0; /* tick size or time to read (s) */ variable
82 double measured_tick; /* non-overridable sys_tick (s) */
84 int trunc_os_clock; /* sys_tick > measured_tick */
164 ticks = (long)((tsp->tv_nsec * 1e-9) / sys_tick);
165 tsp->tv_nsec = (long)(ticks * 1e9 * sys_tick);
    [all...]
  /src/external/bsd/ntp/dist/ntpd/
ntpsim.c 574 ticks = (long)(dtemp / sys_tick + .5);
575 adjtv.tv_usec = (long)(ticks * sys_tick * 1e6);
ntp_io.c 3441 if (sys_tick > measured_tick &&
3442 sys_tick > 1e-9) {
3443 ticks = (unsigned long)(nts.l_uf / (unsigned long)(sys_tick * FRAC));
3444 nts.l_uf = (unsigned long)(ticks * (unsigned long)(sys_tick * FRAC));
3456 if (sys_tick > measured_tick &&
3457 sys_tick > 1e-9) {
3459 sys_tick);
3461 sys_tick);
3474 if (sys_tick > measured_tick &&
3475 sys_tick > 1e-6)
    [all...]
ntp_proto.c 5190 * sys_tick and sys_precision represent the time to read the clock for
5213 sys_tick * 1e6, sys_precision);
5214 if (sys_fuzz < sys_tick) {
5301 sys_tick = tick;
  /src/external/bsd/ntp/dist/include/
ntp_stdlib.h 305 extern double sys_tick; /* tick size or time to read */
306 extern double measured_tick; /* non-overridable sys_tick */
308 extern int trunc_os_clock; /* sys_tick > measured_tick */

Completed in 84 milliseconds