Home
last modified time | relevance | path

Searched refs:nowtime (Results 1 – 25 of 208) sorted by relevance

123456789

/dports/sysutils/loganalyzer/loganalyzer-4.1.12/src/classes/reports/
H A Dreport.eventlog.eventsummary.class.php147 $nowtime = microtime_float();
148 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s, ";
179 $nowtime = microtime_float();
180 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s, ";
201 $nowtime = microtime_float();
202 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
349 $nowtime = microtime_float();
350 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
356 $nowtime = microtime_float();
388 $nowtime = microtime_float();
[all …]
H A Dreport.eventlog.logonlogoff.class.php145 $nowtime = microtime_float();
146 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s, ";
177 $nowtime = microtime_float();
178 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
322 $nowtime = microtime_float();
323 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
326 $nowtime = microtime_float();
327 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
386 $nowtime = microtime_float();
387 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
[all …]
H A Dreport.syslog.syslogsummary.class.php144 $nowtime = microtime_float();
145 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s, ";
175 $nowtime = microtime_float();
176 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s, ";
193 $nowtime = microtime_float();
194 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
341 $nowtime = microtime_float();
342 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
348 $nowtime = microtime_float();
388 $nowtime = microtime_float();
[all …]
H A Dreport.eventlog.auditsummary.class.php228 $nowtime = microtime_float();
260 $nowtime = microtime_float();
261 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
433 $nowtime = microtime_float();
434 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
437 $nowtime = microtime_float();
549 $nowtime = microtime_float();
622 $nowtime = microtime_float();
623 $content["report_rendertime"] .= number_format($nowtime - $gl_starttime, 2, '.', '') . "s ";
672 $nowtime = microtime_float();
[all …]
/dports/games/edge/Edge-1.35-source/src/
H A Dn_network.cc272 int nowtime = I_GetTime(); in N_NetUpdate() local
275 return nowtime; in N_NetUpdate()
277 int newtics = nowtime - last_update_tic; in N_NetUpdate()
278 last_update_tic = nowtime; in N_NetUpdate()
296 return nowtime; in N_NetUpdate()
335 int nowtime = N_NetUpdate(); in N_TryRunTics() local
337 last_tryrun_tic = nowtime; in N_TryRunTics()
341 nowtime, nowtime - realtics, realtics); in N_TryRunTics()
349 nowtime = N_NetUpdate(true); in N_TryRunTics()
350 realtics = nowtime - last_tryrun_tic; in N_TryRunTics()
[all …]
/dports/ftp/weex/weex-2.8.3/src/
H A Dlog.c144 struct tm *nowtime; in log_write() local
162 nowtime=localtime(&t); in log_write()
166 …d:%02d %s weex[%d]: %s\n"),_(month_str[nowtime->tm_mon]),nowtime->tm_mday,nowtime->tm_hour,nowtime in log_write()
/dports/security/xinetd/xinetd-2.3.15/xinetd/
H A Dsensor.c68 time_t nowtime; in process_sensor() local
71 nowtime = time(NULL); in process_sensor()
80 (time_t)nowtime+(60*SC_DENY_TIME(SVC_CONF(sp)))); in process_sensor()
114 time_t nowtime, new_time; in process_sensor() local
116 nowtime = time(NULL); in process_sensor()
117 …new_time = (time_t)nowtime+(60*SC_DENY_TIME(SVC_CONF(sp))); if (difftime(new_t… in process_sensor()
166 time_t nowtime = time(NULL); in scrub_global_access_list() local
179 if (difftime(nowtime, (time_t)stored_time) >= 0.0) in scrub_global_access_list()
H A Daccess.c74 time_t nowtime; in cps_service_restart() local
77 nowtime = time(NULL); in cps_service_restart()
86 if ( SC_TIME_REENABLE(scp) <= nowtime ) { in cps_service_restart()
105 time_t nowtime; in cps_service_stop() local
111 nowtime = time(NULL); in cps_service_stop()
112 SC_TIME_REENABLE(scp) = nowtime + SC_TIME_WAIT(scp); in cps_service_stop()
281 time_t nowtime; in parent_access_control() local
290 nowtime = time(NULL); in parent_access_control()
291 time_diff = nowtime - SC_TIME_LIMIT(scp) ; in parent_access_control()
295 SC_TIME_LIMIT(scp) = nowtime; in parent_access_control()
[all …]
/dports/games/sopwith/sopwith-1.8.4/src/gtk/
H A Dtimer.c38 struct timeval nowtime; in Timer_GetMS() local
41 gettimeofday(&nowtime, NULL); in Timer_GetMS()
42 ms = (nowtime.tv_sec - start.tv_sec) * 1000 in Timer_GetMS()
43 + (nowtime.tv_usec-start.tv_usec)/1000; in Timer_GetMS()
/dports/games/sopwith/sopwith-1.8.4/src/psion/
H A Dtimer.c38 struct timeval nowtime; in Timer_GetMS() local
41 gettimeofday(&nowtime, NULL); in Timer_GetMS()
42 ms = (nowtime.tv_sec - start.tv_sec) * 1000 in Timer_GetMS()
43 + (nowtime.tv_usec-start.tv_usec)/1000; in Timer_GetMS()
/dports/net/ntp/ntp-4.2.8p15/tests/libntp/
H A Dtest-libntp.c9 time_t nowtime = 0; variable
15 *ptr = nowtime; in timefunc()
16 return nowtime; in timefunc()
26 nowtime = days * SECSPERDAY + secs; in settime()
/dports/games/flightgear/flightgear-2020.3.11/src/FDM/LaRCsim/
H A Dls_interface.c282 struct tm *nowtime; in ls_stamp() local
290 nowtime = localtime( &nowtime_t ); /* set fields to correct time values */ in ls_stamp()
291 date = (nowtime->tm_year % 100)*10000 in ls_stamp()
292 + (nowtime->tm_mon + 1)*100 in ls_stamp()
293 + (nowtime->tm_mday); in ls_stamp()
296 nowtime->tm_hour, nowtime->tm_min, nowtime->tm_sec); in ls_stamp()
/dports/games/chocolate-doom/chocolate-doom-3.0.1/src/
H A Dnet_common.c300 unsigned int nowtime; in NET_Conn_Run() local
302 nowtime = I_GetTimeMS(); in NET_Conn_Run()
308 if (nowtime - conn->keepalive_recv_time > CONNECTION_TIMEOUT_LEN * 1000) in NET_Conn_Run()
317 if (nowtime - conn->keepalive_send_time > KEEPALIVE_PERIOD * 1000) in NET_Conn_Run()
335 || nowtime - conn->reliable_packets->last_send_time > 1000)) in NET_Conn_Run()
340 conn->reliable_packets->last_send_time = nowtime; in NET_Conn_Run()
348 || nowtime - conn->last_send_time > 1000) in NET_Conn_Run()
361 conn->last_send_time = nowtime; in NET_Conn_Run()
380 if (nowtime - conn->last_send_time > 5000) in NET_Conn_Run()
H A Dnet_client.c564 unsigned int nowtime; in NET_CL_SendResendRequest() local
576 nowtime = I_GetTimeMS(); in NET_CL_SendResendRequest()
589 recvwindow[index].resend_time = nowtime; in NET_CL_SendResendRequest()
599 unsigned int nowtime; in NET_CL_CheckResends() local
601 nowtime = I_GetTimeMS(); in NET_CL_CheckResends()
671 unsigned int nowtime; in NET_CL_ParseGameData() local
684 nowtime = I_GetTimeMS(); in NET_CL_ParseGameData()
692 gamedata_recv_time = nowtime; in NET_CL_ParseGameData()
1008 int nowtime = I_GetTimeMS(); in NET_CL_Connect() local
1015 last_send_time = nowtime; in NET_CL_Connect()
[all …]
/dports/games/crispy-doom/crispy-doom-crispy-doom-5.10.3/src/
H A Dnet_client.c615 unsigned int nowtime; in NET_CL_SendResendRequest() local
627 nowtime = I_GetTimeMS(); in NET_CL_SendResendRequest()
640 recvwindow[index].resend_time = nowtime; in NET_CL_SendResendRequest()
650 unsigned int nowtime; in NET_CL_CheckResends() local
653 nowtime = I_GetTimeMS(); in NET_CL_CheckResends()
738 unsigned int nowtime; in NET_CL_ParseGameData() local
753 nowtime = I_GetTimeMS(); in NET_CL_ParseGameData()
761 gamedata_recv_time = nowtime; in NET_CL_ParseGameData()
1101 int nowtime = I_GetTimeMS(); in NET_CL_Connect() local
1107 last_send_time = nowtime; in NET_CL_Connect()
[all …]
H A Dnet_common.c280 unsigned int nowtime; in NET_Conn_Run() local
282 nowtime = I_GetTimeMS(); in NET_Conn_Run()
288 if (nowtime - conn->keepalive_recv_time > CONNECTION_TIMEOUT_LEN * 1000) in NET_Conn_Run()
297 if (nowtime - conn->keepalive_send_time > KEEPALIVE_PERIOD * 1000) in NET_Conn_Run()
315 || nowtime - conn->reliable_packets->last_send_time > 1000)) in NET_Conn_Run()
320 conn->reliable_packets->last_send_time = nowtime; in NET_Conn_Run()
328 || nowtime - conn->last_send_time > 1000) in NET_Conn_Run()
341 conn->last_send_time = nowtime; in NET_Conn_Run()
360 if (nowtime - conn->last_send_time > 5000) in NET_Conn_Run()
/dports/net/proby/proby-1.0.2/cargo-crates/libnghttp2-sys-0.1.4+1.41.0/nghttp2/third-party/mruby/mrbgems/mruby-time/src/
H A Dtime.c367 struct tm nowtime = { 0 }; in time_mktime() local
371 nowtime.tm_mday = (int)aday; in time_mktime()
373 nowtime.tm_min = (int)amin; in time_mktime()
374 nowtime.tm_sec = (int)asec; in time_mktime()
375 nowtime.tm_isdst = -1; in time_mktime()
377 if (nowtime.tm_mon < 0 || nowtime.tm_mon > 11 in time_mktime()
378 || nowtime.tm_mday < 1 || nowtime.tm_mday > 31 in time_mktime()
379 || nowtime.tm_hour < 0 || nowtime.tm_hour > 24 in time_mktime()
380 || (nowtime.tm_hour == 24 && (nowtime.tm_min > 0 || nowtime.tm_sec > 0)) in time_mktime()
381 || nowtime.tm_min < 0 || nowtime.tm_min > 59 in time_mktime()
[all …]
/dports/lang/rust/rustc-1.58.1-src/vendor/libnghttp2-sys/nghttp2/third-party/mruby/mrbgems/mruby-time/src/
H A Dtime.c367 struct tm nowtime = { 0 }; in time_mktime() local
371 nowtime.tm_mday = (int)aday; in time_mktime()
373 nowtime.tm_min = (int)amin; in time_mktime()
374 nowtime.tm_sec = (int)asec; in time_mktime()
375 nowtime.tm_isdst = -1; in time_mktime()
377 if (nowtime.tm_mon < 0 || nowtime.tm_mon > 11 in time_mktime()
378 || nowtime.tm_mday < 1 || nowtime.tm_mday > 31 in time_mktime()
379 || nowtime.tm_hour < 0 || nowtime.tm_hour > 24 in time_mktime()
380 || (nowtime.tm_hour == 24 && (nowtime.tm_min > 0 || nowtime.tm_sec > 0)) in time_mktime()
381 || nowtime.tm_min < 0 || nowtime.tm_min > 59 in time_mktime()
[all …]
/dports/www/h2o-devel/h2o-dcc7134/deps/mruby/mrbgems/mruby-time/src/
H A Dtime.c363 struct tm nowtime = { 0 }; in time_mktime() local
367 nowtime.tm_mday = (int)aday; in time_mktime()
369 nowtime.tm_min = (int)amin; in time_mktime()
370 nowtime.tm_sec = (int)asec; in time_mktime()
371 nowtime.tm_isdst = -1; in time_mktime()
373 if (nowtime.tm_mon < 0 || nowtime.tm_mon > 11 in time_mktime()
374 || nowtime.tm_mday < 1 || nowtime.tm_mday > 31 in time_mktime()
375 || nowtime.tm_hour < 0 || nowtime.tm_hour > 24 in time_mktime()
376 || (nowtime.tm_hour == 24 && (nowtime.tm_min > 0 || nowtime.tm_sec > 0)) in time_mktime()
377 || nowtime.tm_min < 0 || nowtime.tm_min > 59 in time_mktime()
[all …]
/dports/multimedia/dvb-apps/dvb-apps-3d43b280298c/lib/libdvbmisc/
H A Ddvbmisc.h64 struct timeval nowtime; in time_after() local
65 gettimeofday(&nowtime, 0); in time_after()
66 uint64_t nowtime_ms = (nowtime.tv_sec * 1000) + (nowtime.tv_usec / 1000); in time_after()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/windowing/tvos/
H A DVideoSyncTVos.cpp64 int64_t nowtime = CurrentHostCounter(); in TVosVblankHandler() local
68 static_cast<double>(nowtime - m_LastVBlankTime) / static_cast<double>(CurrentHostFrequency()); in TVosVblankHandler()
72 m_LastVBlankTime = nowtime; in TVosVblankHandler()
75 UpdateClock(NrVBlanks, nowtime, m_refClock); in TVosVblankHandler()
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/windowing/ios/
H A DVideoSyncIos.cpp66 int64_t nowtime = CurrentHostCounter(); in IosVblankHandler() local
69 VBlankTime = (double)(nowtime - m_LastVBlankTime) / (double)CurrentHostFrequency(); in IosVblankHandler()
73 m_LastVBlankTime = nowtime; in IosVblankHandler()
76 UpdateClock(NrVBlanks, nowtime, m_refClock); in IosVblankHandler()
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/libnghttp2-sys-0.1.7+1.45.0/nghttp2/third-party/mruby/mrbgems/mruby-time/src/
H A Dtime.c445 struct tm nowtime = { 0 }; in time_mktime() local
449 nowtime.tm_mday = (int)aday; in time_mktime()
451 nowtime.tm_min = (int)amin; in time_mktime()
452 nowtime.tm_sec = (int)asec; in time_mktime()
453 nowtime.tm_isdst = -1; in time_mktime()
455 if (nowtime.tm_mon < 0 || nowtime.tm_mon > 11 in time_mktime()
456 || nowtime.tm_mday < 1 || nowtime.tm_mday > 31 in time_mktime()
457 || nowtime.tm_hour < 0 || nowtime.tm_hour > 24 in time_mktime()
458 || (nowtime.tm_hour == 24 && (nowtime.tm_min > 0 || nowtime.tm_sec > 0)) in time_mktime()
459 || nowtime.tm_min < 0 || nowtime.tm_min > 59 in time_mktime()
[all …]
/dports/devel/cargo-generate/cargo-generate-0.9.0/cargo-crates/libnghttp2-sys-0.1.6+1.43.0/nghttp2/third-party/mruby/mrbgems/mruby-time/src/
H A Dtime.c445 struct tm nowtime = { 0 }; in time_mktime() local
449 nowtime.tm_mday = (int)aday; in time_mktime()
451 nowtime.tm_min = (int)amin; in time_mktime()
452 nowtime.tm_sec = (int)asec; in time_mktime()
453 nowtime.tm_isdst = -1; in time_mktime()
455 if (nowtime.tm_mon < 0 || nowtime.tm_mon > 11 in time_mktime()
456 || nowtime.tm_mday < 1 || nowtime.tm_mday > 31 in time_mktime()
457 || nowtime.tm_hour < 0 || nowtime.tm_hour > 24 in time_mktime()
458 || (nowtime.tm_hour == 24 && (nowtime.tm_min > 0 || nowtime.tm_sec > 0)) in time_mktime()
459 || nowtime.tm_min < 0 || nowtime.tm_min > 59 in time_mktime()
[all …]
/dports/www/libnghttp2/nghttp2-1.46.0/third-party/mruby/mrbgems/mruby-time/src/
H A Dtime.c445 struct tm nowtime = { 0 }; in time_mktime() local
449 nowtime.tm_mday = (int)aday; in time_mktime()
451 nowtime.tm_min = (int)amin; in time_mktime()
452 nowtime.tm_sec = (int)asec; in time_mktime()
453 nowtime.tm_isdst = -1; in time_mktime()
455 if (nowtime.tm_mon < 0 || nowtime.tm_mon > 11 in time_mktime()
456 || nowtime.tm_mday < 1 || nowtime.tm_mday > 31 in time_mktime()
457 || nowtime.tm_hour < 0 || nowtime.tm_hour > 24 in time_mktime()
458 || (nowtime.tm_hour == 24 && (nowtime.tm_min > 0 || nowtime.tm_sec > 0)) in time_mktime()
459 || nowtime.tm_min < 0 || nowtime.tm_min > 59 in time_mktime()
[all …]

123456789