/vbox/src/VBox/Devices/PC/ipxe/src/core/ |
H A D | null_time.c | 23 * Nonexistent time source 27 #include <ipxe/time.h>
|
/vbox/src/VBox/Runtime/generic/ |
H A D | RTTimeLocalDeltaNano-generic.cpp | 31 #include <iprt/time.h>
|
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/test/tst/common/aggs/ |
H A D | tst.clearavg2.d | 49 @time = avg(0); 55 printa(" %@d\n", @time); 56 clear(@time);
|
/vbox/src/VBox/ValidationKit/tests/selftests/ |
H A D | tdSelfTest1.py | 39 import time; namespace 43 time.sleep(1);
|
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Time/ |
H A D | gettimeofday.c | 49 #include <sys/time.h> 50 #include <time.h> 62 t = time(NULL);
|
/vbox/src/VBox/Additions/common/VBoxGuestLib/ |
H A D | VBoxGuestR3LibTime.cpp | 31 #include <iprt/time.h> 39 Req.time = UINT64_MAX; 42 RTTimeSpecSetMilli(pTime, (int64_t)Req.time);
|
/vbox/src/VBox/Runtime/r3/posix/ |
H A D | RTTimeNow-posix.cpp | 33 #include <sys/time.h> 34 #include <time.h> 36 #include <iprt/time.h> 40 * Gets the current system time. 43 * @param pTime Where to store the time.
|
H A D | RTTimeSet-posix.cpp | 33 #include <sys/time.h> 34 #include <time.h> 37 #include <iprt/time.h>
|
H A D | time-posix.cpp | 33 #include <sys/time.h> 34 #include <time.h> 36 #include <iprt/time.h> 37 #include "internal/time.h"
|
/vbox/src/VBox/Additions/linux/testcase/ |
H A D | TimesyncBackdoor.c | 20 #include <sys/time.h> 21 #include <time.h> 73 unsigned long long time; local 76 time = (unsigned long long)inl(0x505) << 32; 79 time |= inl(0x505); 81 /* set the system time */ 83 tv.tv_sec = time / (unsigned long long)1000; 84 tv.tv_usec = (time % (unsigned long long)1000) * 1000;
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/interface/pcbios/ |
H A D | rtc_time.c | 23 * RTC-based time source 28 #include <time.h> 30 #include <ipxe/time.h> 66 * Read RTC time 68 * @ret time Time, in seconds 78 time_t time; local 89 /* Read time values */ 111 time = mktime ( &tm ); 113 return time; 117 * Get current time i 122 time_t time = 0; local [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/cplus/ |
H A D | rctime.cpp | 39 ** Class implementation for calendar time routines (ref: prtime.h) 46 RCTime::RCTime(PRTime time): RCBase() { gmt = time; } argument 49 RCTime::RCTime(const PRExplodedTime& time): RCBase() argument 50 { gmt = PR_ImplodeTime(&time); } 52 void RCTime::operator=(const PRExplodedTime& time) argument 53 { gmt = PR_ImplodeTime(&time); }
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ |
H A D | time.h | 6 * Date and time 9 #include <sys/time.h> 10 #include <ipxe/time.h> 12 /** Broken-down time */ 35 * Get current time in seconds since the Epoch 38 * @ret time Current time 40 static inline time_t time ( time_t *t ) { function
|
/vbox/src/VBox/Devices/PC/ipxe/src/config/ |
H A D | time.h | 14 #include <config/local/time.h>
|
/vbox/src/VBox/Devices/Network/lwip/src/core/ |
H A D | sys.c | 51 u32_t time; local 64 if (timeouts->next->time > 0) { 65 time = sys_arch_mbox_fetch(mbox, msg, timeouts->next->time); 67 time = SYS_ARCH_TIMEOUT; 70 if (time == SYS_ARCH_TIMEOUT) { 71 /* If time == SYS_ARCH_TIMEOUT, a timeout occured before a message 87 /* If time != SYS_ARCH_TIMEOUT, a message was received before the timeout 88 occured. The time variable is set to the number of 90 if (time < 103 u32_t time; local [all...] |
/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/cmd/dtrace/demo/io/ |
H A D | iocpu.d | 38 @time["<on cpu>"] = sum(vtimestamp - self->on); 52 @time["<I/O wait>"] = sum(timestamp - self->wait); 59 normalize(@time, 1000000); 60 printa(" %-50s %15@d\n", @time);
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/misc/ |
H A D | prtime.c | 41 * NSPR date and time functions 55 #include <time.h> 88 static void ComputeGMT(PRTime time, PRExplodedTime *gmt); 90 static void ApplySecOffset(PRExplodedTime *time, PRInt32 secOffset); 105 ComputeGMT(PRTime time, PRExplodedTime *gmt) argument 122 LL_DIV(sec, time, usecPerSec); 123 LL_MOD(usec, time, usecPerSec); 152 /* Compute the time of day. */ 159 /* Compute the four-year span containing the specified time */ 334 * 'time' shoul 338 ApplySecOffset(PRExplodedTime *time, PRInt32 secOffset) argument 403 PR_NormalizeTime(PRExplodedTime *time, PRTimeParamFn params) argument 1942 pr_WeekOfYear(const PRExplodedTime* time, unsigned int firstDayOfWeek) argument [all...] |
/vbox/src/libs/xpcom18a4/nsprpub/pr/tests/ |
H A D | fsync.c | 68 PRIntervalTime time, total = 0, shortest = 0x7fffffff, longest = 0; local 116 time = PR_IntervalNow(); 121 time = (PR_IntervalNow() - time); 123 total += time; 124 if (time < shortest) shortest = time; 125 else if (time > longest) longest = time;
|
/vbox/src/VBox/Devices/PC/ipxe/src/include/ipxe/ |
H A D | time.h | 12 #include <sys/time.h> 14 #include <config/time.h> 17 * Calculate static inline time API function name 27 * Provide a time API implementation 37 * Provide a static inline time API implementation 45 /* Include all architecture-independent time API headers */ 49 /* Include all architecture-dependent time API headers */ 50 #include <bits/time.h> 53 * Get current time in seconds 55 * @ret time Tim [all...] |
/vbox/src/VBox/Runtime/r3/haiku/ |
H A D | time-haiku.cpp | 33 #include <sys/time.h> 34 #include <time.h> 39 #include <iprt/time.h> 41 #include "internal/time.h"
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/ |
H A D | dmxmotion.h | 47 unsigned long time);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/ |
H A D | dmxmotion.h | 47 unsigned long time);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | dmxmotion.h | 49 unsigned long time);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | dmxmotion.h | 48 unsigned long time);
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/ |
H A D | dmxmotion.h | 48 unsigned long time);
|