Searched defs:SensorClock (Results 1 – 1 of 1) sorted by relevance
361 struct SensorClock { struct362 using rep = int64_t;363 using period = std::ratio<1, 32768>;364 using duration = std::chrono::duration<rep, period>;365 using time_point = std::chrono::time_point<SensorClock>;366 static time_point now() noexcept { in now()