| /xsrc/external/mit/xorg-server.old/dist/hw/dmx/ |
| H A D | dmxsync.h | 42 extern void dmxSync(DMXScreenInfo *dmxScreen, Bool now);
|
| H A D | dmxsync.c | 137 /** Request an XSync() to the display used by \a dmxScreen. If \a now 150 void dmxSync(DMXScreenInfo *dmxScreen, Bool now) argument 164 now = TRUE; 174 if (now || !dmxScreen) { 180 dmxScreen ? dmxScreen->name : "", now, dmxSyncPending);
|
| /xsrc/external/mit/mesa-demos/dist/src/egl/openvg/ |
| H A D | lion.c | 17 double now; local in function:draw 36 now = eglutGet(EGLUT_ELAPSED_TIME) / 1000.0; 37 if (now - t0 > 5.0) { 40 num_frames, now - t0, num_frames / (now - t0)); 42 t0 = now;
|
| /xsrc/external/mit/xorg-server/dist/os/ |
| H A D | WaitFor.c | 107 static void DoTimer(OsTimerPtr timer, CARD32 now); 108 static void DoTimers(CARD32 now); 131 CARD32 now = GetTimeInMillis(); local in function:check_timers 132 int timeout = timer->expires - now; 135 DoTimers(now); 257 CARD32 now; local in function:CheckAllTimers 261 now = GetTimeInMillis(); 264 if (timer->expires - now > timer->delta + 250) { 265 DoTimer(timer, now); 273 DoTimer(OsTimerPtr timer, CARD32 now) argument 284 DoTimers(CARD32 now) argument 302 CARD32 now = GetTimeInMillis(); local in function:TimerSet 437 ScreenSaverTimeoutExpire(OsTimerPtr timer,CARD32 now,void * arg) argument [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/hud/ |
| H A D | hud_fps.c | 45 uint64_t now = os_time_get(); local in function:query_fps 51 double frametime = ((double)now - (double)info->last_time) / 1000.0; 53 info->last_time = now; 55 else if (info->last_time + gr->pane->period <= now) { 57 (double)(now - info->last_time); 59 info->last_time = now; 65 info->last_time = now;
|
| H A D | hud_cpu.c | 195 uint64_t now = os_time_get(); local in function:query_cpu_load 198 if (info->last_time + gr->pane->period <= now) { 210 info->last_time = now; 215 info->last_time = now; 290 int64_t now = os_time_get_nano(); local in function:query_api_thread_busy_status 293 if (info->last_time + gr->pane->period*1000 <= now) { 308 (now - info->last_time); 319 info->last_time = now; 323 info->last_time = now; 387 int64_t now local in function:query_thread_counter [all...] |
| H A D | hud_cpufreq.c | 98 uint64_t now = os_time_get(); local in function:query_cfi_load 100 if (cfi->last_time + gr->pane->period <= now) { 108 cfi->last_time = now; 113 cfi->last_time = now;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/hud/ |
| H A D | hud_fps.c | 45 uint64_t now = os_time_get(); local in function:query_fps 51 double frametime = ((double)now - (double)info->last_time) / 1000.0; 53 info->last_time = now; 55 else if (info->last_time + gr->pane->period <= now) { 57 (double)(now - info->last_time); 59 info->last_time = now; 65 info->last_time = now;
|
| H A D | hud_cpu.c | 234 uint64_t now = os_time_get(); local in function:query_cpu_load 237 if (info->last_time + gr->pane->period <= now) { 249 info->last_time = now; 254 info->last_time = now; 329 int64_t now = os_time_get_nano(); local in function:query_api_thread_busy_status 332 if (info->last_time + gr->pane->period*1000 <= now) { 347 (now - info->last_time); 358 info->last_time = now; 362 info->last_time = now; 426 int64_t now local in function:query_thread_counter [all...] |
| /xsrc/external/mit/xorg-server.old/dist/Xext/ |
| H A D | sleepuntil.c | 173 TimeStamp now; local in function:SertafiedBlockHandler 177 now.milliseconds = GetTimeInMillis (); 178 now.months = currentTime.months; 179 if ((int) (now.milliseconds - currentTime.milliseconds) < 0) 180 now.months++; 184 if (CompareTimeStamps (pReq->revive, now) == LATER) 197 delay = pReq->revive.milliseconds - now.milliseconds; 205 TimeStamp now; local in function:SertafiedWakeupHandler 207 now.milliseconds = GetTimeInMillis (); 208 now [all...] |
| /xsrc/external/mit/xorg-server/dist/Xext/ |
| H A D | sleepuntil.c | 157 TimeStamp now; local in function:SertafiedBlockHandler 161 now.milliseconds = GetTimeInMillis(); 162 now.months = currentTime.months; 163 if ((int) (now.milliseconds - currentTime.milliseconds) < 0) 164 now.months++; 167 if (CompareTimeStamps(pReq->revive, now) == LATER) 180 delay = pReq->revive.milliseconds - now.milliseconds; 188 TimeStamp now; local in function:SertafiedWakeupHandler 190 now.milliseconds = GetTimeInMillis(); 191 now [all...] |
| /xsrc/external/mit/xf86-video-intel-old/dist/src/ |
| H A D | i830_accel.c | 76 unsigned int now = 0; local in function:I830WaitLpRing 99 now = GetTimeInMillis(); 100 if (start == 0 || now < start || ring->head != last_head) { 102 if (now > start) 104 start = now; 106 } else if (now - start > timeout_millis) { 122 now = GetTimeInMillis(); 123 if (now - first) { 124 ErrorF("Elapsed %u ms\n", now - first);
|
| /xsrc/external/mit/xorg-server.old/dist/os/ |
| H A D | WaitFor.c | 126 static void DoTimer(OsTimerPtr timer, CARD32 now, OsTimerPtr *prev); 159 CARD32 now = 0; local in function:WaitForSomething 200 now = GetTimeInMillis(); 201 timeout = timers->expires - now; 208 timeout = timers->expires - now; 275 now = GetTimeInMillis(); 276 if ((int) (timers->expires - now) <= 0) 279 while (timers && (int) (timers->expires - now) <= 0) 280 DoTimer(timers, now, &timers); 294 now 407 CARD32 now; local in function:CheckAllTimers 421 DoTimer(OsTimerPtr timer,CARD32 now,OsTimerPtr * prev) argument 437 CARD32 now = GetTimeInMillis(); local in function:TimerSet 532 CARD32 now = GetTimeInMillis(); local in function:TimerCheck 585 ScreenSaverTimeoutExpire(OsTimerPtr timer,CARD32 now,pointer arg) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/winsys/virgl/common/ |
| H A D | virgl_resource_cache.c | 58 virgl_resource_cache_destroy_expired(struct virgl_resource_cache *cache, int64_t now) argument 65 if (!os_time_timeout(entry->timeout_start, entry->timeout_end, now)) 89 const int64_t now = os_time_get(); local in function:virgl_resource_cache_add 95 virgl_resource_cache_destroy_expired(cache, now); 97 entry->timeout_start = now; 106 const int64_t now = os_time_get(); local in function:virgl_resource_cache_remove_compatible 135 if (os_time_timeout(entry->timeout_start, entry->timeout_end, now))
|
| /xsrc/external/mit/libXau/dist/ |
| H A D | AuLock.c | 57 Time_t now; local in function:XauLockAuth 65 now = time ((Time_t *) 0); 67 * NFS may cause ctime to be before now, special 70 if (dead == 0 || now - statb.st_ctime > dead) {
|
| /xsrc/external/mit/MesaLib/dist/src/util/ |
| H A D | cnd_monotonic.h | 118 const uint64_t now = os_time_get_nano() / 1000000; local in function:u_cnd_monotonic_timedwait 119 const DWORD timeout = (future > now) ? (DWORD)(future - now) : 0;
|
| /xsrc/external/mit/libICE/dist/src/ |
| H A D | iceauth.c | 61 struct timeval now; local in function:emulate_getrandom_buf 62 X_GETTIMEOFDAY (&now); 63 ldata[0] = now.tv_sec; 64 ldata[1] = now.tv_usec;
|
| /xsrc/external/mit/MesaLib.old/dist/src/vulkan/wsi/ |
| H A D | wsi_common_queue.h | 116 struct timespec now; local in function:wsi_queue_pull 117 clock_gettime(CLOCK_MONOTONIC, &now); 119 uint32_t abs_nsec = now.tv_nsec + timeout % NSEC_PER_SEC; 120 uint64_t abs_sec = now.tv_sec + (abs_nsec / NSEC_PER_SEC) +
|
| /xsrc/external/mit/MesaLib/dist/src/vulkan/wsi/ |
| H A D | wsi_common_queue.h | 114 struct timespec now; local in function:wsi_queue_pull 115 clock_gettime(CLOCK_MONOTONIC, &now); 117 uint32_t abs_nsec = now.tv_nsec + timeout % NSEC_PER_SEC; 118 uint64_t abs_sec = now.tv_sec + (abs_nsec / NSEC_PER_SEC) +
|
| /xsrc/external/mit/MesaLib/dist/src/panfrost/bifrost/ |
| H A D | bi_pack.c | 27 * scheduling and RA, the IR is now finalized, so we need to emit it to actual 79 /* Assign it now */ 100 bi_assign_slots(bi_tuple *now, bi_tuple *prev) argument 106 bool read_dreg = now->add && bi_opcode_props[now->add->op].sr_read; 111 if (now->fma) 112 bi_foreach_src(now->fma, src) 113 bi_assign_slot_read(&now->regs, (now->fma)->src[src]); 115 if (now [all...] |
| /xsrc/external/mit/MesaLib/dist/docs/isl/ |
| H A D | index.rst | 6 written by Chad Versace and is now maintained by Jason Ekstrand and Nanley
|
| /xsrc/external/mit/xf86-video-intel/dist/src/legacy/i810/ |
| H A D | i810_accel.c | 89 int now = 0; local in function:I810WaitLpRing 112 now = GetTimeInMillis(); 113 if (start == 0 || now < start || ring->head != last_head) { 115 if (now > start) 117 start = now; 119 } else if (now - start > timeout_millis) { 120 ErrorF("Error in I810WaitLpRing(), now is %d, start is %d\n", now, 140 now = GetTimeInMillis(); 141 if (now [all...] |
| /xsrc/external/mit/xf86-video-intel-2014/dist/src/legacy/i810/ |
| H A D | i810_accel.c | 89 int now = 0; local in function:I810WaitLpRing 112 now = GetTimeInMillis(); 113 if (start == 0 || now < start || ring->head != last_head) { 115 if (now > start) 117 start = now; 119 } else if (now - start > timeout_millis) { 120 ErrorF("Error in I810WaitLpRing(), now is %d, start is %d\n", now, 140 now = GetTimeInMillis(); 141 if (now [all...] |
| /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/ |
| H A D | glutGet.cpp | 127 bigtime_t elapsed, beginning, now; local in function:glutGet 129 now = system_time(); 130 elapsed = now - beginning; 166 * easy, since BeOS only supports a keyboard and mouse now
|
| /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/ |
| H A D | glut_get.c | 190 struct timeval6 elapsed, beginning, now; local in function:glutGet 192 struct timeval elapsed, beginning, now; 196 GETTIMEOFDAY(&now); 197 TIMEDELTA(elapsed, now, beginning);
|