Searched defs:TIME_UNITS_PER_SEC (Results 1 - 2 of 2) sorted by relevance

/external/iproute2/tc/
H A Dtc_core.h7 #define TIME_UNITS_PER_SEC 1000000 macro
/external/iptables/extensions/
H A Dlibxt_RATEEST.c42 #define TIME_UNITS_PER_SEC 1000000 macro
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 << (inf
[all...]

Completed in 60 milliseconds