Lines Matching refs:now
255 nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC); in showfps() local
256 nsecs_t diff = now - lastfpstime; in showfps()
258 lastfpstime = now; in showfps()
542 uint64_t now = 0; in vsync_clock_now() local
546 now = ((uint64_t)ts.tv_sec) * 1000000000ull + ts.tv_nsec; in vsync_clock_now()
548 return now; in vsync_clock_now()
2510 uint64_t now = vsync_clock_now(); in omap4_hwc_hdmi_thread() local
2515 idle_wakeup = now + (((uint64_t)timeout) * 1000000); in omap4_hwc_hdmi_thread()
2523 : now; in omap4_hwc_hdmi_thread()
2527 if (vsync_wakeup < now) in omap4_hwc_hdmi_thread()
2528 vsync_wakeup = now; in omap4_hwc_hdmi_thread()
2539 else if (effective_wakeup <= now) in omap4_hwc_hdmi_thread()
2542 effective_timeout = (int)((effective_wakeup - now + 999999) / 1000000); in omap4_hwc_hdmi_thread()
2549 now = vsync_clock_now(); in omap4_hwc_hdmi_thread()
2554 if (now >= vsync_wakeup) { in omap4_hwc_hdmi_thread()
2559 if (hwc_dev->idle && (now >= idle_wakeup)) { in omap4_hwc_hdmi_thread()