Searched refs:seconds (Results 1 - 25 of 44) sorted by relevance

12

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/agg/
H A Ddenorm.d41 this->seconds = (timestamp - start) / 1000000000;
42 printf("Ran for %d seconds.\n", this->seconds);
45 normalize(@func, this->seconds);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/tests/
H A Dinterval.cpp59 PRIntn msecs, seconds, loops, iterations = DEFAULT_ITERATIONS; local
62 for (seconds = 0; seconds < 10; ++seconds)
64 timeout = RCInterval::FromSeconds(seconds);
79 output, "Waiting %u seconds took %s%u milliseconds\n",
80 seconds, ((elapsed < timeout)? "**" : ""),
85 for (seconds = 0; seconds < 10; ++seconds)
[all...]
/vbox/src/VBox/Devices/PC/ipxe/src/core/
H A Dtime.c27 * POSIX:2008 section 4.15 defines "seconds since the Epoch" as an
28 * abstract measure approximating the number of seconds that have
29 * elapsed since the Epoch, excluding leap seconds. The formula given
104 * Calculate seconds since the Epoch
112 time_t seconds; local
123 /* Calculate seconds since the Epoch */
128 seconds = ( ( ( ( time_t ) days_since_epoch ) * ( ( time_t ) 86400 ) ) +
133 tm->tm_mday, tm->tm_hour, tm->tm_min, tm->tm_sec, seconds,
136 return seconds;
H A Dexec.c543 COMMAND_DESC ( struct sleep_options, sleep_opts, 1, 1, "<seconds>" );
554 unsigned int seconds; local
563 /* Parse number of seconds */
564 if ( ( rc = parse_integer ( argv[optind], &seconds ) ) != 0 )
567 /* Delay for specified number of seconds */
569 delay = ( seconds * TICKS_PER_SEC );
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/predicates/
H A Dtst.predcache.ksh163 seconds=`date +%S`
165 if [ "$seconds" -ne "$last" ]; then
166 last=$seconds
186 seconds=`date +%S`
188 if [ "$seconds" -ne "$last" ]; then
189 last=$seconds
/vbox/src/VBox/Devices/PC/ipxe/src/include/
H A Dunistd.h36 extern unsigned int sleep ( unsigned int seconds );
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_process.h31 extern DECLEXPORT(void) crSleep( unsigned int seconds );
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/
H A Dinrval.c145 PRInt32 seconds; local
150 for (seconds = 0; seconds < 10; ++seconds)
152 PRIntervalTime ticks = PR_SecondsToInterval(seconds);
163 "TestIntervals: %swaiting %ld seconds took %ld msecs\n",
164 ((rv == PR_SUCCESS) ? "" : "FAILED "), seconds, delta);
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/java_api/src/
H A DTestDrop.java43 static int seconds; field in class:TestDrop
48 if (seconds <= 0) {
58 }, seconds * 1000L);
108 System.err.println("usage: java TestDrop [ seconds ]");
117 seconds = Integer.parseInt(args[0]);
/vbox/src/VBox/Frontends/VirtualBox/src/widgets/
H A DUIProgressDialog.cpp248 long seconds; local
253 seconds = newTime < 0 ? 0 : newTime;
254 minutes = seconds / 60;
255 seconds -= minutes * 60;
264 QString strSeconds = VBoxGlobal::secondsToString(seconds);
287 else if (minutes > 0 && seconds > 5)
291 else if (seconds > 5)
293 else if (seconds > 0)
294 m_pEtaLbl->setText(tr("A few seconds remaining"));
/vbox/src/VBox/GuestHost/OpenGL/util/
H A Dprocess.c23 * Sleep/pause for the given number of seconds.
25 void crSleep( unsigned int seconds )
28 Sleep(seconds*1000); /* milliseconds */
30 sleep(seconds);
/vbox/src/libs/xpcom18a4/nsprpub/pr/include/
H A Dprinrval.h156 NSPR_API(PRIntervalTime) PR_SecondsToInterval(PRUint32 seconds); variable
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/
H A Drcinrval.h93 static PRIntervalTime FromSeconds(PRUint32 seconds);
160 inline PRIntervalTime RCInterval::FromSeconds(PRUint32 seconds) argument
161 { return PR_SecondsToInterval(seconds); }
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/
H A Dprinrval.c86 PR_IMPLEMENT(PRIntervalTime) PR_SecondsToInterval(PRUint32 seconds)
88 return seconds * PR_TicksPerSecond();
/vbox/src/libs/xpcom18a4/xpcom/base/
H A Dpure.h75 int __cdecl PurifySetLateDetectScanInterval(int seconds);
H A Dpure_api.c109 __declspec(dllexport) int __cdecl PurifySetLateDetectScanInterval(int seconds) { avoidGy_29++; seconds; return 0; };
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/cmd/badioctl/
H A Dbadioctl.c62 int i = 0, seconds; local
/vbox/src/libs/xpcom18a4/ipc/ipcd/daemon/src/
H A DipcdUnix.cpp73 IPC_Sleep(int seconds)
75 while (seconds > 0) {
76 LOG(("\rsleeping for %d seconds...", seconds));
78 --seconds;
/vbox/src/VBox/Runtime/r3/posix/
H A Dthread-posix.cpp434 *pKernelTime = ThreadInfo.system_time.seconds * 1000 + ThreadInfo.system_time.microseconds / 1000;
435 *pUserTime = ThreadInfo.user_time.seconds * 1000 + ThreadInfo.user_time.microseconds / 1000;
/vbox/src/VBox/Runtime/testcase/
H A DtstDarwinSched.cpp83 BasicInfo.user_time.seconds, BasicInfo.user_time.microseconds,
84 BasicInfo.system_time.seconds, BasicInfo.system_time.microseconds,
/vbox/src/VBox/ValidationKit/testmanager/core/
H A Dtestboxstatus.py129 ## The number of seconds between each time to call touchStatus() when
272 return oDelta.seconds + oDelta.days * 24 * 3600;
/vbox/src/VBox/ValidationKit/bootsectors/
H A Dbootsector2-cpu-pf-1.asm48 ;; The desired benchmark period (seconds).
/vbox/src/VBox/ValidationKit/testmanager/webui/
H A Dwuiadmintestbox.py208 if oDelta.days <= 0 and oDelta.seconds <= 15*60: # 15 mins and we consider you dead.
209 oSeen = WuiSpanText('tmspan-online', u'%s\u00a0s\u00a0ago' % (oDelta.days * 24 * 3600 + oDelta.seconds,));
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/
H A Dxf86_ansic.h295 unsigned int xf86sleep(unsigned int seconds);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/
H A Dxf86_ansic.h279 unsigned int xf86sleep(unsigned int seconds);

Completed in 136 milliseconds

12