| /xsrc/external/mit/xfs/dist/os/ |
| waitfor.c | 105 long current_time = 0; local 124 current_time = GetTimeInMillis(); 125 timeout = current_time - LastReapTime; 128 LastReapTime = current_time; 192 if (current_time) /* may not have been set */ 193 current_time = GetTimeInMillis(); 203 client->last_request_time = current_time;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/pipebuffer/ |
| pb_cache.c | 58 int64_t current_time) 68 if (!os_time_timeout(entry->start, entry->end, current_time)) 93 int64_t current_time = os_time_get(); local 96 release_expired_buffers_locked(&mgr->buckets[i], current_time);
|
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| timespec.h | 326 struct timespec current_time; local 327 clock_gettime(clock_domain, ¤t_time); 328 return timespec_after(¤t_time, deadline);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/pipebuffer/ |
| pb_cache.c | 58 int64_t current_time) 68 if (!os_time_timeout(entry->start, entry->end, current_time)) 93 int64_t current_time = os_time_get(); local 96 release_expired_buffers_locked(&mgr->buckets[i], current_time);
|
| /xsrc/external/mit/MesaLib/dist/src/intel/tools/imgui/ |
| imgui_impl_gtk3.cpp | 247 guint64 current_time = g_get_monotonic_time(); local 248 io.DeltaTime = g_Time > 0 ? ((float)(current_time - g_Time) / 1000000) : (float)(1.0f/60.0f); 249 g_Time = current_time;
|
| /xsrc/external/mit/MesaLib.old/dist/src/intel/tools/imgui/ |
| imgui_impl_gtk3.cpp | 247 guint64 current_time = g_get_monotonic_time(); local 248 io.DeltaTime = g_Time > 0 ? ((float)(current_time - g_Time) / 1000000) : (float)(1.0f/60.0f); 249 g_Time = current_time;
|
| /xsrc/external/mit/mesa-demos/dist/src/egl/opengl/ |
| peglgears.c | 55 current_time(void) function 71 current_time(void) function 77 fprintf(stderr, "Warning: current_time() not implemented!!\n"); 333 double st = current_time(); 340 double tt = current_time();
|
| xeglgears.c | 70 current_time(void) function 86 current_time(void) function 92 fprintf(stderr, "Warning: current_time() not implemented!!\n"); 687 double dt, t = current_time();
|
| /xsrc/external/mit/mesa-demos/dist/src/tests/ |
| auxbuffer.c | 49 current_time(void) function 433 int t = current_time();
|
| /xsrc/external/mit/mesa-demos/dist/src/xdemos/ |
| glxcontexts.c | 55 current_time(void) function 71 current_time(void) function 77 fprintf(stderr, "Warning: current_time() not implemented!!\n"); 470 double dt, t = current_time();
|
| glxgears_pixmap.c | 62 current_time(void) function 78 current_time(void) function 480 int t = current_time();
|
| multictx.c | 63 current_time(void) function 254 double dt, t = current_time();
|
| shape.c | 44 current_time(void) function 272 double dt, t = current_time();
|
| glxgears_fbconfig.c | 66 current_time(void) function 82 current_time(void) function 564 int t = current_time();
|
| glxgears.c | 57 current_time(void) function 73 current_time(void) function 79 fprintf(stderr, "Warning: current_time() not implemented!!\n"); 327 double dt, t = current_time();
|
| glxswapcontrol.c | 81 current_time(void) function 97 current_time(void) function 604 int t = current_time();
|
| /xsrc/external/mit/sessreg/dist/ |
| sessreg.c | 219 time_t current_time; local 354 time (¤t_time); 356 set_utmp (&utmp_entry, line, user_name, host_name, current_time, aflag); 368 host_name, current_time, aflag); 431 ll.ll_time = current_time;
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/vulkan/ |
| v3dv_queue.c | 81 uint64_t current_time = gettime_ns(); local 82 uint64_t max_timeout = (uint64_t) INT64_MAX - current_time; 86 return (current_time + timeout);
|
| /xsrc/external/mit/MesaLib/dist/src/freedreno/perfcntrs/ |
| fdperf.c | 294 uint64_t current_time = gettime_us(); local 296 if ((current_time - last_time) < (REFRESH_MS * 1000 / 2)) 299 last_time = current_time;
|
| /xsrc/external/mit/MesaLib/dist/src/vulkan/wsi/ |
| wsi_common_wayland.c | 1009 struct timespec current_time; local 1010 clock_gettime(CLOCK_MONOTONIC, ¤t_time); 1011 if (timespec_after(¤t_time, &end_time)) 1030 timespec_sub(&rel_timeout, &end_time, ¤t_time);
|
| /xsrc/external/mit/xf86-input-synaptics/dist/tools/ |
| syndaemon.c | 229 double current_time; local 234 current_time = get_time(); 236 last_activity = current_time; 240 if (last_activity > current_time) 241 last_activity = current_time - idle_time - 1; 243 if (current_time > last_activity + idle_time) { /* Enable touchpad */
|
| /xsrc/external/mit/MesaLib/dist/src/glx/ |
| dri2_glx.c | 710 uint64_t current_time; local 713 current_time = (uint64_t)tv.tv_sec*1000000 + (uint64_t)tv.tv_usec; 717 if (draw->previous_time + interval * 1000000 <= current_time) { 721 (double)(current_time - draw->previous_time)); 724 draw->previous_time = current_time;
|
| /xsrc/external/mit/MesaLib.old/dist/src/glx/ |
| dri2_glx.c | 770 uint64_t current_time; local 773 current_time = (uint64_t)tv.tv_sec*1000000 + (uint64_t)tv.tv_usec; 777 if (draw->previous_time + interval * 1000000 <= current_time) { 781 (double)(current_time - draw->previous_time)); 784 draw->previous_time = current_time;
|
| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/wsi/ |
| wsi_common_x11.c | 863 uint64_t current_time = wsi_common_get_current_time(); local 865 timeout = MIN2(UINT64_MAX - current_time, timeout); 867 return current_time + timeout; 914 uint64_t current_time = wsi_common_get_current_time(); 915 if (atimeout > current_time) 916 timeout = atimeout - current_time;
|
| /xsrc/external/mit/libXt/dist/src/ |
| NextEvent.c | 817 struct timeval current_time; local 835 X_GETTIMEOFDAY(¤t_time); 836 FIXUP_TIMEVAL(current_time); 837 ADD_TIME(tptr->te_timer_value, tptr->te_timer_value, current_time);
|