Searched refs:time (Results 101 - 125 of 381) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/lib/lua/src/
H A Dloslib.c12 #include <time.h>
197 time_t t = luaL_opt(L, (time_t)luaL_checknumber, 2, time(NULL));
244 t = time(NULL); /* get current time */
279 "numeric", "time", NULL};
310 {"time", os_time},
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bf/
H A Dbf_opts.c77 #include <time.h>
195 ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bn/
H A Dexpspeed.c105 #include <time.h>
184 ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/cast/
H A Dcastopts.c77 #include <time.h>
205 ret=((double)(tend.time-tstart.time))+((double)i)/1000.0;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/des/
H A Dspeed.c78 #include <time.h>
173 ret=((double)(tend.time-tstart.time))+((double)i)/1e3;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/idea/
H A Didea_spd.c77 #include <time.h>
168 ret=((double)(tend.time-tstart.time))+((double)i)/1e3;
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/rand/
H A Drand_unix.c122 #include <sys/time.h>
127 #include <time.h>
151 real-time clock has a granularity of 1 nsec so it should be
323 time. */
364 l=time(NULL);
/barrelfish-2018-10-04/usr/drivers/xeon_phi/
H A Dxeon_phi.c252 for (uint32_t time = 0; time < XEON_PHI_RESET_TIME; ++time) {
/barrelfish-2018-10-04/usr/eclipseclp/GecodeInterface/
H A Dgfd.hpp139 Search::TimeStop* ts; ///< Used time stop object
144 Cutoff(unsigned int node, unsigned int fail, unsigned int time/*, size_t mem*/)
147 ts((time > 0) ? new Search::TimeStop(time) : NULL),
/barrelfish-2018-10-04/tools/harness/tests/
H A Dechoserver.py10 import re, os, subprocess, select, time, datetime namespace
82 time.sleep(IPBENCH_SLEEPTIME)
95 # read one char at a time to avoid blocking
117 time.sleep(1)
/barrelfish-2018-10-04/lib/acpica/source/os_specific/service_layers/
H A Dosunixxf.c130 #include <sys/time.h>
985 * The interface to sem_timedwait is an absolute time, so we need to
986 * get the current time, then add in the millisecond Timeout value.
1213 * RETURN: Current time in 100 nanosecond units
1215 * DESCRIPTION: Get the current system time
1223 struct timeval time; local
1228 gettimeofday (&time, NULL);
1232 return (((UINT64) time.tv_sec * ACPI_100NSEC_PER_SEC) +
1233 ((UINT64) time.tv_usec * ACPI_100NSEC_PER_USEC));
/barrelfish-2018-10-04/lib/openssl-1.0.0d/ssl/
H A Dssl_sess.c203 ss->time=(unsigned long)time(NULL);
234 * "most" of the time (btw: understatement). So, if it takes us 10 iterations
553 * it and then due to a time-out decided to 'OPENSSL_free' it we could
559 if (ret->timeout < (long)(time(NULL) - ret->time)) /* timeout */
569 /* ret->time=time(NULL); */ /* rezero timeout? */
817 return(s->time);
823 s->time
900 long time; member in struct:timeout_param_st
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/documents/tutorial/
H A Dhybrid.tex125 and a time point
143 Each task has a start time $Start$ and a duration $Duration$.
148 % Bool is 1 if the task with start time Start and duration
149 % Duration overlaps time point Time and 0 otherwise
153 time point, and $0$ otherwise. To enforce that only one task overlaps
154 the time point, the associated boolean variables must sum to $1$.
161 % the task with start time Start and duration Duration is
162 % completed before time point Time
168 time of {\em task3}:
172 % duration 5 overlaps time poin
[all...]
H A Dprogramanalysis.tex48 give a statistical summary of where the execution time is spent.
70 a program that are worth optimising. It can be used any time with any
121 Total user time: 0.03s
140 \item The next line shows the time spent executing the goal.
146 frequency is too low when compared to the total user time spent
173 Total user time: 3.19s
187 resulting in a more accurate view of where the time is being spent in
189 time is spent in the \verb+nodiag/3+ predicate, making it an ideal
207 incremented each time the evaluation of a query passes them. There
/barrelfish-2018-10-04/usr/eclipseclp/documents/userman/
H A Dumsprofile.tex45 %The first tool is the {\it profiler} which finds out how much time
57 It can be used any time with any compiled Prolog code,
68 and then it prints the statistics about the time spent
83 Total user time: 10.65s
100 percentage of total time spent in this predicate and the absolute time.
107 written in C, the time will be assigned to the Prolog predicate.
126 Total user time: 10.55s
209 %Most of the time it is useful to write it into a file using
/barrelfish-2018-10-04/tools/demo/Aquarium/
H A DWindow1.xaml.cs255 // Number the time axis
492 private void AddDiamond(int core, long time, SolidColorBrush brush, string text) argument
495 AddInteractiveDiamond(core, time, brush, text);
497 AddVisDiamond(core, time, brush);
499 private void AddInteractiveDiamond(int core, long time, SolidColorBrush brush, string text) argument
501 double x = ((double)time - this.TimeMin) / this.TicksPerPixel;
517 private void AddVisDiamond(int core, long time, SolidColorBrush brush) argument
519 double x = ((double)time - this.TimeMin) / this.TicksPerPixel;
535 private void AddInteractiveBlob(int core, long time, SolidColorBrush brush, string text) argument
537 double x = ((double)time
547 AddVisBlob(int core, long time, SolidColorBrush brush, string text) argument
552 AddBlob(int core, long time, TraceEvent te) argument
607 ChannelAction(long time, int core, ulong channel, SolidColorBrush colour) argument
[all...]
/barrelfish-2018-10-04/usr/eclipseclp/documents/megalog/
H A Dkernel-lst.tex84 \item[bang_retrieve(+RelationName, ?Tuple, +Condition)]{Tuple at a time retrieval. On backtracking the next tuple is retrieved.}
86 \item[bang_retrieve_delete(+RelName, ?Tuple, +Condition)]{Tuple at a time retrieval with deletion. On backtracking the next tuple is retrieved and deleted.}
88 \item[bang_retrieve_delete(+RelName, ?Tuple, +Condition, +Test)]{Tuple at a time retrieval with deletion. On backtracking the next tuple is retrieved and deleted.}
108 \item[current_time(+TimerName, ?Value)]{Get the current time from an internal timer.}
110 \item[delta_time(+TimerName, ?Delta)]{Get the time since the last call from an internal timer.}
/barrelfish-2018-10-04/tools/fof/
H A DFutureWork.tex50 or no run-time checks. It is just a matter of putting more run-time
57 run-time, except if it is provided with bogus input data. Being able
/barrelfish-2018-10-04/lib/timer/
H A Dtimer.c42 * The timer priority queue (sorted by expiration time)
50 * Timers pending insertion into the queue (sorted by expiration time)
58 * Did we already request the remaining time but not yet see a reply?
97 static void timer_insert_pending(uint64_t time);
113 * \brief Handle a remaining time message from the timer driver.
116 static void remaining_handler(struct timer_binding *b, uint64_t time) argument
120 timer_insert_pending(time);
383 * \brief Insert pending timers given the remaining time on the top timer.
385 * This function is given the remaining time of the currently-running timer,
481 // add to pending insertion queue, send off request for the remaining time
[all...]
/barrelfish-2018-10-04/usr/tests/spantest/
H A Dspantest.c228 uint64_t time = rdtsc(); local
230 times[core] = time;
231 printf("remote running on %d after %"PRIu64"\n", core, time-times[0]);
/barrelfish-2018-10-04/lib/libc/stdio/
H A Dxprintf_time.c40 #include <sys/time.h>
/barrelfish-2018-10-04/lib/libc/sys/
H A Dutimensat.c35 #include <time.h>
/barrelfish-2018-10-04/lib/libc/x86/sys/
H A D__vdso_gettc.c39 #include <sys/time.h>
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Da_time.c65 #include <time.h>
H A Da_verify.c60 #include <time.h>

Completed in 189 milliseconds

1234567891011>>