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.c48 #define TIME_UNITS_PER_SEC 1000000 macro
63 t *= TIME_UNITS_PER_SEC;
66 t *= TIME_UNITS_PER_SEC/1000;
69 t *= TIME_UNITS_PER_SEC/1000000;
83 if (tmp >= TIME_UNITS_PER_SEC)
84 printf(" %.1fs", tmp / TIME_UNITS_PER_SEC);
85 else if (tmp >= TIME_UNITS_PER_SEC/1000)
86 printf(" %.1fms", tmp / (TIME_UNITS_PER_SEC / 1000));
118 if (udata->interval <= (1 << info->interval) * (TIME_UNITS_PER_SEC / 4))
146 local_interval = (TIME_UNITS_PER_SEC << (inf
[all...]

Completed in 1004 milliseconds