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

/frameworks/native/include/utils/
H A DTimers.h34 typedef int64_t nsecs_t; // nano-seconds typedef
36 static inline nsecs_t seconds_to_nanoseconds(nsecs_t secs)
41 static inline nsecs_t milliseconds_to_nanoseconds(nsecs_t secs)
46 static inline nsecs_t microseconds_to_nanoseconds(nsecs_t secs)
51 static inline nsecs_t nanoseconds_to_seconds(nsecs_t secs)
56 static inline nsecs_t nanoseconds_to_millisecond
[all...]
/frameworks/rs/
H A DrsCppUtils.h144 typedef int64_t nsecs_t; // nano-seconds typedef
154 static inline nsecs_t systemTime(int clock)
167 return nsecs_t(t.tv_sec)*1000000000LL + t.tv_nsec;
173 return nsecs_t(t.tv_sec)*1000000000LL + nsecs_t(t.tv_usec)*1000LL;
177 static inline nsecs_t nanoseconds_to_milliseconds(nsecs_t secs)

Completed in 3140 milliseconds