Home
last modified time | relevance | path

Searched refs:now_ms (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/debian/packages-patches/openbox/3.6.1-8/
H A D0001-Support-limiting-move-interval.patch108 + glong now_ms, next_ms;
111 + now_ms = curr_tm.tv_sec * 1000 + curr_tm.tv_usec / 1000;
114 + if (next_ms <= now_ms) {
117 + last_move_time = now_ms;
H A D0002-Support-outline-moving.patch208 glong now_ms, next_ms;
212 if (next_ms <= now_ms) {
216 last_move_time = now_ms;
/OK3568_Linux_fs/buildroot/package/lvgl/lvgl/
H A D0011-src-add-lv_systick.patch56 + uint64_t now_ms;
57 + now_ms = (tv_now.tv_sec * 1000000 + tv_now.tv_usec) / 1000;
59 + uint32_t time_ms = now_ms - start_ms;
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_11.0.1/
H A D0016-backend-drm-Support-virtual-screen-size.patch126 now_ms = timespec_to_msec(&now);
127 - if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS) {
128 + if (now_ms < b->last_resize_ms + b->resize_freeze_ms) {
130 if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS)
H A D0015-backend-drm-Support-selecting-monitors.patch298 + int64_t now_ms;
313 + now_ms = timespec_to_msec(&now);
314 + if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS) {
316 + if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS)
590 + int64_t now_ms, next_ms;
593 + now_ms = timespec_to_msec(&now);
600 + if (next_ms <= now_ms) {
607 + next_ms - now_ms);
H A D0019-backend-drm-Support-controlling-output-dynamically.patch296 now_ms = timespec_to_msec(&now);
297 - if (now_ms < b->last_resize_ms + b->resize_freeze_ms) {
298 + if (now_ms < b->last_resize_ms + b->resize_freeze_ms ||
299 + now_ms < output->last_resize_ms + b->resize_freeze_ms) {
301 if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS)
/OK3568_Linux_fs/buildroot/package/weston/
H A D0016-backend-drm-Support-virtual-screen-size.patch126 now_ms = timespec_to_msec(&now);
127 - if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS) {
128 + if (now_ms < b->last_resize_ms + b->resize_freeze_ms) {
130 if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS)
H A D0015-backend-drm-Support-selecting-monitors.patch298 + int64_t now_ms;
313 + now_ms = timespec_to_msec(&now);
314 + if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS) {
316 + if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS)
590 + int64_t now_ms, next_ms;
593 + now_ms = timespec_to_msec(&now);
600 + if (next_ms <= now_ms) {
607 + next_ms - now_ms);
H A D0019-backend-drm-Support-controlling-output-dynamically.patch300 now_ms = timespec_to_msec(&now);
301 - if (now_ms < b->last_resize_ms + b->resize_freeze_ms) {
302 + if (now_ms < b->last_resize_ms + b->resize_freeze_ms ||
303 + now_ms < output->last_resize_ms + b->resize_freeze_ms) {
305 if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS)
/OK3568_Linux_fs/yocto/meta-rockchip/recipes-graphics/wayland/weston_10.0.2/
H A D0013-backend-drm-Support-selecting-monitors.patch304 + int64_t now_ms;
313 + now_ms = timespec_to_msec(&now);
314 + if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS) {
316 + if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS)
594 + int64_t now_ms, next_ms;
597 + now_ms = timespec_to_msec(&now);
604 + if (next_ms <= now_ms) {
611 + next_ms - now_ms);
H A D0014-backend-drm-Support-virtual-screen-size.patch134 now_ms = timespec_to_msec(&now);
135 - if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS) {
136 + if (now_ms < b->last_resize_ms + b->resize_freeze_ms) {
138 if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS)
H A D0016-backend-drm-Support-controlling-output-dynamically.patch298 now_ms = timespec_to_msec(&now);
299 - if (now_ms < b->last_resize_ms + b->resize_freeze_ms) {
300 + if (now_ms < b->last_resize_ms + b->resize_freeze_ms ||
301 + now_ms < output->last_resize_ms + b->resize_freeze_ms) {
303 if (now_ms < b->last_resize_ms + DRM_RESIZE_FREEZE_MS)
/OK3568_Linux_fs/kernel/net/openvswitch/
H A Dmeter.c596 long long int now_ms = div_u64(ktime_get_ns(), 1000 * 1000); in ovs_meter_execute() local
613 long_delta_ms = (now_ms - meter->used); /* ms */ in ovs_meter_execute()
631 meter->used = now_ms; in ovs_meter_execute()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ui/
H A Dtoasterui.py63 now_ms = int((now - int(now)) * 1000)
65 log_file_name = time_str + ('.%d.log' % now_ms)
/OK3568_Linux_fs/external/xserver/hw/xfree86/drivers/modesetting/
H A Ddrmmode_display.c4985 uint64_t now_ms, diff_ms; in drmmode_flip_fb() local
4996 now_ms = tv.tv_sec * 1000 + tv.tv_usec / 1000; in drmmode_flip_fb()
4998 diff_ms = now_ms - drmmode_crtc->flipping_time_ms; in drmmode_flip_fb()
5067 drmmode_crtc->flipping_time_ms = now_ms; in drmmode_flip_fb()