Searched defs:TICKS_PER_SEC (Results 1 - 4 of 4) sorted by relevance

/external/bluetooth/bluedroid/include/
H A Dgki_target.h89 #ifndef TICKS_PER_SEC
90 #define TICKS_PER_SEC 100 macro
97 #define GKI_MS_TO_TICKS(x) ((x) / (1000 / TICKS_PER_SEC))
101 #define GKI_SECS_TO_TICKS(x) ((x) * (TICKS_PER_SEC))
105 #define GKI_TICKS_TO_MS(x) ((x) * 1000 / TICKS_PER_SEC)
109 #define GKI_TICKS_TO_SECS(x) ((x) / TICKS_PER_SEC)
/external/libnfc-nci/src/hal/include/
H A Dgki_hal_target.h87 #ifndef TICKS_PER_SEC
88 #define TICKS_PER_SEC 100 macro
95 #define GKI_MS_TO_TICKS(x) ((x) / (1000 / TICKS_PER_SEC))
99 #define GKI_SECS_TO_TICKS(x) ((x) * (TICKS_PER_SEC))
103 #define GKI_TICKS_TO_MS(x) ((x) * 1000 / TICKS_PER_SEC)
107 #define GKI_TICKS_TO_SECS(x) ((x) / TICKS_PER_SEC)
/external/libnfc-nci/src/include/
H A Dgki_target.h131 #ifndef TICKS_PER_SEC
132 #define TICKS_PER_SEC 100 macro
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/
H A Dvp9_cx_iface.c803 #define TICKS_PER_SEC 10000000LL macro
807 return n * TICKS_PER_SEC * timebase->num / timebase->den;
812 const int64_t round = TICKS_PER_SEC * timebase->num / 2 - 1;
813 return (n * timebase->den + round) / timebase->num / TICKS_PER_SEC;

Completed in 122 milliseconds