Home
last modified time | relevance | path

Searched refs:MSEC_TO_NANOS (Results 1 – 2 of 2) sorted by relevance

/system/chre/apps/nearby/location/lbs/contexthub/nanoapps/common/math/
Dmacros.h40 #define MSEC_TO_NANOS(x) (static_cast<uint64_t>((x) * UINT64_C(1000000))) macro
42 #define MSEC_TO_NANOS(x) ((uint64_t)((x) * UINT64_C(1000000))) // NOLINT macro
45 #define SEC_TO_NANOS(x) MSEC_TO_NANOS((x) * UINT64_C(1000))
/system/chre/apps/nearby/location/lbs/contexthub/nanoapps/nearby/
Dapp_manager.cc78 event->reports[i].timestamp / MSEC_TO_NANOS(1)); in HandleEvent()