HomeSort by: relevance | last modified time | path
    Searched refs:current_time (Results 1 - 25 of 42) sorted by relevancy

1 2

  /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/util/
timespec.h 326 struct timespec current_time; local
327 clock_gettime(clock_domain, &current_time);
328 return timespec_after(&current_time, deadline);
  /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.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/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/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/gallium/drivers/iris/
iris_fence.c 221 uint64_t current_time = gettime_ns();
222 uint64_t max_timeout = (uint64_t) INT64_MAX - current_time;
226 return current_time + timeout;
  /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/sessreg/dist/
sessreg.c 219 time_t current_time; local
354 time (&current_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/gallium/frontends/vdpau/
presentation.c 177 VdpTime *current_time)
181 if (!current_time)
189 *current_time = pq->device->vscreen->get_timestamp(pq->device->vscreen,
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/vdpau/
presentation.c 177 VdpTime *current_time)
181 if (!current_time)
189 *current_time = pq->device->vscreen->get_timestamp(pq->device->vscreen,
  /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();
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/crocus/
crocus_fence.c 310 uint64_t current_time = gettime_ns();
311 uint64_t max_timeout = (uint64_t)INT64_MAX - current_time;
315 return current_time + timeout;
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
iris_fence.c 374 uint64_t current_time = gettime_ns();
375 uint64_t max_timeout = (uint64_t) INT64_MAX - current_time;
379 return current_time + timeout;
  /xsrc/external/mit/MesaLib/dist/src/panfrost/vulkan/
panvk_sync.c 305 uint64_t current_time = gettime_ns();
306 uint64_t max_timeout = (uint64_t) INT64_MAX - current_time;
310 return (current_time + timeout);
  /xsrc/external/mit/mesa-demos/dist/src/xdemos/
shape.c 44 current_time(void) function
272 double dt, t = current_time();
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.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();
glxgears_fbconfig.c 66 current_time(void) function
82 current_time(void) function
564 int t = current_time();
glxgears_pixmap.c 62 current_time(void) function
78 current_time(void) function
480 int t = 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/mesa-demos/dist/src/tests/
auxbuffer.c 49 current_time(void) function
433 int t = current_time();
  /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/dist/src/vulkan/wsi/
wsi_common_x11.c 1032 uint64_t current_time = wsi_common_get_current_time(); local
1034 timeout = MIN2(UINT64_MAX - current_time, timeout);
1036 return current_time + timeout;
1083 uint64_t current_time = wsi_common_get_current_time();
1084 if (atimeout > current_time)
1085 timeout = atimeout - current_time;

Completed in 21 milliseconds

1 2