Home
last modified time | relevance | path

Searched refs:starttime (Results 1 – 14 of 14) sorted by relevance

/external/dropbear/libtommath/
Dpretty.build13 my $starttime = time;
55 if (time != $starttime) {
56 my $delay = time - $starttime;
62 printf("\nFinished building source (%d seconds, %3.2f files per second).\n", time - $starttime, $ra…
/external/openssl/crypto/rand/
Drand_win.c466 DWORD starttime = 0; in RAND_poll() local
499 if (good) starttime = GetTickCount(); in RAND_poll()
530 && (!good || (GetTickCount()-starttime)<MAXDELAY) in RAND_poll()
540 && (!good || (GetTickCount()-starttime)<MAXDELAY) in RAND_poll()
563 && (!good || (GetTickCount()-starttime)<MAXDELAY)); in RAND_poll()
574 if (good) starttime = GetTickCount(); in RAND_poll()
578 while (process_next(handle, &p) && (!good || (GetTickCount()-starttime)<MAXDELAY)); in RAND_poll()
586 if (good) starttime = GetTickCount(); in RAND_poll()
590 while (thread_next(handle, &t) && (!good || (GetTickCount()-starttime)<MAXDELAY)); in RAND_poll()
598 if (good) starttime = GetTickCount(); in RAND_poll()
[all …]
/external/quake/quake/src/QW/server/
Dsys_win.c89 static int starttime; in Sys_DoubleTime() local
93 if (!starttime) in Sys_DoubleTime()
94 starttime = tstruct.time; in Sys_DoubleTime()
95 t = (tstruct.time-starttime) + tstruct.millitm*0.001; in Sys_DoubleTime()
/external/quake/quake/src/WinQuake/
Dsys_wind.cpp193 static int starttime; in Sys_FloatTime() local
197 if (!starttime) in Sys_FloatTime()
198 starttime = tstruct.time; in Sys_FloatTime()
199 t = (tstruct.time-starttime) + tstruct.millitm*0.001; in Sys_FloatTime()
Dsys_win.cpp36 int starttime; variable
354 double starttime; in Sys_Error() local
384 starttime = Sys_FloatTime (); in Sys_Error()
388 ((Sys_FloatTime () - starttime) < CONSOLE_ERROR_TIMEOUT)) in Sys_Error()
Dvid_ext.cpp249 double starttime, time; in VID_ExtraVidLookForState() local
251 starttime = Sys_FloatTime (); in VID_ExtraVidLookForState()
262 } while ((time - starttime) < 0.1); in VID_ExtraVidLookForState()
/external/quake/quake/src/QW/client/
Dsys_win.c35 int starttime; variable
374 static DWORD starttime; in Sys_DoubleTime() local
383 starttime = now; in Sys_DoubleTime()
387 if (now < starttime) // wrapped? in Sys_DoubleTime()
388 return (now / 1000.0) + (LONG_MAX - starttime / 1000.0); in Sys_DoubleTime()
390 if (now - starttime == 0) in Sys_DoubleTime()
393 return (now - starttime) / 1000.0; in Sys_DoubleTime()
/external/webrtc/src/modules/audio_processing/aecm/
Decho_control_mobile.c286 struct timeval starttime; in WebRtcAecm_Process() local
461 gettimeofday(&starttime, NULL); in WebRtcAecm_Process()
505 if( endtime.tv_usec > starttime.tv_usec) in WebRtcAecm_Process()
507 timeused += endtime.tv_usec - starttime.tv_usec; in WebRtcAecm_Process()
510 timeused += endtime.tv_usec + 1000000 - starttime.tv_usec; in WebRtcAecm_Process()
/external/icu4c/tools/tzcode/
Dzic.c122 static void addtt(zic_t starttime, int type);
2104 register zic_t starttime, untiltime; local
2129 INITIALIZE(starttime);
2263 addtt(starttime, type);
2335 if (usestart && ktime == starttime)
2338 if (ktime < starttime) {
2408 else addtt(starttime,
2429 starttime = zp->z_untiltime;
2431 starttime = tadd(starttime, -stdoff);
2433 starttime = tadd(starttime, -gmtoff);
[all …]
Dlocaltime.c979 time_t starttime; local
1010 starttime = transtime(janfirst, year, &start,
1014 if (starttime > endtime) {
1017 *atp++ = starttime;
1020 *atp++ = starttime;
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/test/
Dtest_iSACfixfloat.c108 double starttime; in main() local
300 starttime = clock()/(double)CLOCKS_PER_SEC; /* Runtime statistics */ in main()
672 runtime = (double)(clock()/(double)CLOCKS_PER_SEC-starttime); in main()
Dkenny.c107 double starttime, runtime, length_file; in main() local
460 starttime = clock()/(double)CLOCKS_PER_SEC; in main()
837 runtime = (double)(((double)clock()/(double)CLOCKS_PER_SEC)-starttime); in main()
/external/grub/netboot/
Dmain.c539 unsigned long starttime; in bootp() local
556 starttime = currticks (); in bootp()
560 ip.bp.bp_xid = xid += htonl (starttime); in bootp()
676 ip.bp.bp_secs = htons ((currticks () - starttime) / TICKS_PER_SEC); in bootp()
/external/openssl/ssl/
Dkssl.c1505 krb5ticket->enc_part2->times.starttime, in kssl_sget_tkt()
1544 ttimes->starttime = krb5ticket->enc_part2->times.starttime; in kssl_sget_tkt()
1974 start = (ttimes->starttime != 0)? ttimes->starttime: ttimes->authtime; in kssl_validate_times()