HomeSort by relevance Sort by last modified time
    Searched defs:TIME_UNITS_PER_SEC (Results 1 - 2 of 2) sorted by null

  /external/iproute2/tc/
tc_core.h 7 #define TIME_UNITS_PER_SEC 1000000
  /external/iptables/extensions/
libxt_RATEEST.c 42 #define TIME_UNITS_PER_SEC 1000000
57 t *= TIME_UNITS_PER_SEC;
60 t *= TIME_UNITS_PER_SEC/1000;
63 t *= TIME_UNITS_PER_SEC/1000000;
77 if (tmp >= TIME_UNITS_PER_SEC)
78 printf(" %.1fs", tmp / TIME_UNITS_PER_SEC);
79 else if (tmp >= TIME_UNITS_PER_SEC/1000)
80 printf(" %.1fms", tmp / (TIME_UNITS_PER_SEC / 1000));
144 if (interval <= (1 << info->interval) * (TIME_UNITS_PER_SEC / 4))
172 local_interval = (TIME_UNITS_PER_SEC << (info->interval + 2)) / 4
    [all...]

Completed in 166 milliseconds