HomeSort by relevance Sort by last modified time
    Searched refs:TICKS_TO_MSEC (Results 1 - 4 of 4) sorted by null

  /external/bison/lib/
timevar.c 120 static float ticks_to_msec; variable
121 #define TICKS_TO_MSEC (1.0 / TICKS_PER_SECOND)
213 now->wall = times (&tms) * ticks_to_msec;
215 now->user = tms.tms_utime * ticks_to_msec;
216 now->sys = tms.tms_stime * ticks_to_msec;
218 now->user = (tms.tms_utime + tms.tms_cutime) * ticks_to_msec;
219 now->sys = (tms.tms_stime + tms.tms_cstime) * ticks_to_msec;
269 ticks_to_msec = TICKS_TO_MSEC;
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_constants.h 606 #define TICKS_TO_MSEC(x) ((hz == 1000) ? x : ((((x) * 1000) + (hz - 1)) / hz))
    [all...]
sctp_usrreq.c     [all...]
sctputil.c 975 asoc->heart_beat_delay = TICKS_TO_MSEC(inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_HEARTBEAT]);
1057 asoc->delayed_ack = TICKS_TO_MSEC(inp->sctp_ep.sctp_timeoutticks[SCTP_TIMER_RECV]);
    [all...]

Completed in 54 milliseconds