Searched refs:time (Results 1 - 25 of 381) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/tommath/etc/
H A Dtimer.asm6 time dd 0, 0 define
20 mov [time+0],edx
21 mov [time+4],eax
34 sub eax,[time+4]
35 sbb edx,[time+0]
/barrelfish-2018-10-04/lib/barrelfish/
H A Dsystime.c45 uint64_t systime_to_ns(systime_t time) argument
49 q = time / systime_frequency;
50 r = time % systime_frequency;
57 uint64_t systime_to_us(systime_t time) argument
61 q = time / systime_frequency;
62 r = time % systime_frequency;
/barrelfish-2018-10-04/kernel/
H A Dsystime.c3 * \brief System time, constants and convertors
35 uint64_t systime_to_ns(systime_t time) argument
39 q = time / systime_frequency;
40 r = time % systime_frequency;
/barrelfish-2018-10-04/lib/libc/include/isc/
H A Dplatform.h30 #include <time.h> /* For time_t */
/barrelfish-2018-10-04/usr/bench/shared_mem_clock/
H A Dclock.c42 uintptr_t time = *pointer; local
43 if (cas(pointer, time, time + 1)) {
44 return time;
/barrelfish-2018-10-04/lib/libc/gen/
H A Dclock_getcpuclockid.c31 #include <time.h>
33 #include <sys/time.h>
H A Dtime.c31 static char sccsid[] = "@(#)time.c 8.1 (Berkeley) 6/4/93";
37 #include <sys/time.h>
40 time(time_t *t) function
H A Dclock.c37 #include <sys/time.h>
H A Dusleep.c37 #include <time.h>
H A Dutime.c36 #include <sys/time.h>
H A Dwait.c38 #include <sys/time.h>
/barrelfish-2018-10-04/include/barrelfish/
H A Dsystime.h3 * \brief System time
24 /// Frequency of the system time ticks (systime)
28 * Get the current system time from a hardware clock
36 * Convert nanoseconds to a system time ticks
41 * Convert microseconds to a system time ticks
46 * Convert a system time ticks to nanoseconds
48 uint64_t systime_to_ns(systime_t time);
51 * Convert a system time ticks to microseconds
53 uint64_t systime_to_us(systime_t time);
/barrelfish-2018-10-04/usr/drivers/rtc/
H A Dmain.c25 struct rtc_time time; local
33 case 0: // get current real time clock time
34 rtc_read(&time);
36 reply->f->marshall_word(reply, ((uintptr_t)time.hr << 16) |
37 ((uintptr_t)time.min << 8) |
38 (uintptr_t)time.sec);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/
H A Do_time.h62 #include <time.h>
/barrelfish-2018-10-04/include/openssl/local/
H A Do_time.h62 #include <time.h>
/barrelfish-2018-10-04/kernel/include/
H A Dsystime.h3 * \brief System time
20 /// Frequency of the system time ticks (systime)
24 * Get the current system time from a hardware clock
29 * Convert nanoseconds to a system time ticks
34 * Convert a system time ticks to nanoseconds
36 uint64_t systime_to_ns(systime_t time);
/barrelfish-2018-10-04/lib/posixcompat/
H A Dsetitimer.c10 #include <sys/time.h>
H A Dtime.c10 * Developed by: Embedded, Real-time and Operating Systems Program (ERTOS)
90 #include <time.h>
100 time(time_t *timer) function
/barrelfish-2018-10-04/lib/lwip/src/core/
H A Dsys.c49 * Struct used for sys_sem_wait_timeout() to tell wether the time
80 if (timeouts->next->time > 0) {
82 time_needed = sys_arch_mbox_fetch(mbox, msg, timeouts->next->time);
89 /* If time == SYS_ARCH_TIMEOUT, a timeout occured before a message
106 /* If time != SYS_ARCH_TIMEOUT, a message was received before the timeout
107 occured. The time variable is set to the number of
109 if (time_needed < timeouts->next->time) {
110 timeouts->next->time -= time_needed;
112 timeouts->next->time = 0;
139 if (timeouts->next->time >
[all...]
/barrelfish-2018-10-04/lib/lwip2/src/core/
H A Dtimeouts.c144 * there are active (or time-wait) PCBs.
195 * @param msecs time in milliseconds after that the timer should expire
227 timeout->time = msecs + diff;
239 if (next_timeout->time > msecs) {
240 next_timeout->time -= msecs;
245 timeout->time -= t->time;
246 if (t->next == NULL || t->next->time > timeout->time) {
248 t->next->time
[all...]
/barrelfish-2018-10-04/tools/demo/Aquarium/
H A DEvents.cs84 public TemporalTraceEvent(int core, long time, TraceEvent e) argument
88 if (time < 0)
89 throw new ArgumentOutOfRangeException("time");
91 this.Time = time;
101 public static bool TryParse(string core, string time, string args, argument
109 || !long.TryParse(time, out t)
140 public bool Add(string core, string time, string args) argument
143 if (!TemporalTraceEvent.TryParse(core, time, args, out tte))
190 long time = this[i].Time;
196 if (mintime > time)
[all...]
/barrelfish-2018-10-04/lib/libc/sys/
H A Dclock_gettime.c30 #include <sys/time.h>
33 #include <time.h>
H A Dnanosleep.c37 #include <time.h>
H A Dtrivial-vdso_tc.c30 #include <sys/time.h>
/barrelfish-2018-10-04/usr/boot_perfmon/
H A Dtests.c23 void ping(struct boot_perfmon_binding *b, cycles_t time) argument
26 err = boot_perfmon_pong__tx(b, NOP_CONT, time);
32 void pong(struct boot_perfmon_binding *b, cycles_t time) argument
36 timestamp[id].time[counter] = bench_tsc() - time - bench_tscoverhead();

Completed in 206 milliseconds

1234567891011>>