Lines Matching defs:hTime
29 inline int64_t HstTime2Ns(int64_t hTime)
31 return hTime / HST_NSECOND;
34 inline bool Ns2HstTime (int64_t ns, int64_t& hTime)
36 hTime = ns * HST_NSECOND;
40 inline int64_t HstTime2Us(int64_t hTime)
42 return hTime / HST_USECOND;
45 inline bool Us2HstTime (int64_t us, int64_t& hTime)
50 hTime = us * HST_USECOND;
54 inline int64_t HstTime2Ms(int64_t hTime)
56 return hTime / HST_MSECOND;
59 inline bool Ms2HstTime (int64_t ms, int64_t& hTime)
64 hTime = ms * HST_MSECOND;
68 inline int64_t HstTime2Sec(int64_t hTime)
70 return hTime / HST_SECOND;
73 inline bool Sec2HstTime (int64_t sec, int64_t& hTime)
78 hTime = sec * HST_SECOND;