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

1234567891011>>

/macosx-10.10/WebKit2-7600.1.25/UIProcess/efl/
H A DEasingCurves.cpp39 float easeInOutQuad(float time, const float base, const float constant, const unsigned duration) argument
41 if (time > duration || time < 0)
44 if ((time /= (duration / 2)) < 1)
45 return (constant / 2) * time * time + base;
47 time -= 1;
48 return -1 * (constant / 2) * (time * (time - 2) - 1) + base;
H A DEasingCurves.h35 float easeInOutQuad(float time, const float base, const float constant, const unsigned duration);
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/contrib/ldapc++/src/ac/
H A Dtime.h1 /* Generic time.h */
17 # include <sys/time.h>
18 # include <time.h>
20 # include <sys/time.h>
25 # include <time.h>
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/include/ac/
H A Dtime.h1 /* Generic time.h */
21 # include <sys/time.h>
22 # include <time.h>
24 # include <sys/time.h>
29 # include <time.h>
/macosx-10.10/uucp-11/uucp/unix/
H A Dtime.c0 /* time.c
2 Get the current time. */
7 #include <time.h>
12 #ifndef time
13 extern time_t time ();
16 /* Get the time in seconds since the epoch, with optional
19 time based only on the process). */
30 return (long) time ((time_t *) NULL);
/macosx-10.10/xnu-2782.1.97/tools/tests/libMicro/
H A Dtime.c43 "notes: measures time()\n");
55 (void) time(NULL);
56 (void) time(NULL);
57 (void) time(NULL);
58 (void) time(NULL);
59 (void) time(NULL);
60 (void) time(NULL);
61 (void) time(NULL);
62 (void) time(NULL);
63 (void) time(NUL
[all...]
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dgettimeofday.c4 #include <time.h>
7 #include <sys/time.h>
14 Writes the current time to @var{tp}. This implementation requires
27 if (time (&tp->tv_sec) == (time_t) -1)
/macosx-10.10/gnutar-453/gnutar/lib/
H A Dgetdate.h1 /* Parse a string into an internal time stamp.
21 #include <time.h>
H A Dutimens.h1 #include <time.h>
/macosx-10.10/emacs-93/emacs/src/
H A Dsystime.h1 /* systime.h - System-dependent definitions for time manipulations.
26 #include <sys/time.h>
27 #include <time.h>
30 #include <sys/time.h>
32 #include <time.h>
53 /* On some configurations (hpux8.0, X11R4), sys/time.h and X11/Xos.h
79 EMACS_GET_TIME (TIME) stores the current system time in TIME, which
96 #define EMACS_SECS(time) ((time).tv_sec + 0)
97 #define EMACS_USECS(time) ((tim
[all...]
/macosx-10.10/bash-94.1.2/bash-3.2/include/
H A Dposixtime.h1 /* posixtime.h -- wrapper for time.h, sys/times.h mess. */
26 For example, Dynix/ptx has that definition in <time.h> rather than
27 sys/time.h */
29 # include <sys/time.h>
30 # include <time.h>
33 # include <sys/time.h>
35 # include <time.h>
/macosx-10.10/postfix-255/postfix/src/global/
H A Dmail_date.h8 /* return formatted time
17 #include <time.h>
H A Dverify.h17 #include <time.h>
/macosx-10.10/postfix-255/postfix/src/util/
H A Dsane_time.h8 /* time(2) with backward time jump protection
17 #include <time.h>
H A Dtimecmp.h4 #include <time.h>
/macosx-10.10/libresolv-57/
H A Dns_date.c36 #include <time.h>
60 struct tm time; local
72 memset(&time, 0, sizeof time);
73 time.tm_year = datepart(cp + 0, 4, 1990, 9999, errp) - 1900;
74 time.tm_mon = datepart(cp + 4, 2, 01, 12, errp) - 1;
75 time.tm_mday = datepart(cp + 6, 2, 01, 31, errp);
76 time.tm_hour = datepart(cp + 8, 2, 00, 23, errp);
77 time.tm_min = datepart(cp + 10, 2, 00, 59, errp);
78 time
[all...]
/macosx-10.10/WTF-7600.1.24/wtf/
H A DRandomNumberSeed.h31 #include <time.h>
34 #include <sys/time.h>
55 timeval time;
56 gettimeofday(&time, 0);
57 srandom(static_cast<unsigned>(time.tv_usec * getpid()));
59 srand(static_cast<unsigned>(time(0)));
/macosx-10.10/dtrace-147/test/tst/common/aggs/
H A Dtst.clearavg2.d49 @time = avg(0);
55 printa(" %@d\n", @time);
56 clear(@time);
/macosx-10.10/Heimdal-398.1.2/lib/roken/
H A Drand.c44 srandom(time(NULL));
46 srand ((int)time(NULL));
H A Dtm2time.c37 #include <sys/time.h>
38 #include <time.h>
40 #include <sys/time.h>
42 #include <time.h>
/macosx-10.10/OpenSSL098-52/src/crypto/
H A Do_time.h62 #include <time.h>
/macosx-10.10/sudo-73/src/
H A Dgettime.c21 #include <sys/time.h>
24 # include <time.h>
30 * Get the current time via gettimeofday() for systems with
31 * timespecs in struct stat or, otherwise, using time().
41 rval = (int)time(&tv->tv_sec);
/macosx-10.10/libauto-186/auto_tester/
H A Dauto_perf.c30 #include <time.h>
39 char *duration_description(uint64_t time, char *buf, int bufsz) { argument
44 while (time/divisor > 1000 && suffix < sizeof(suffixes)/sizeof(void *)) {
49 snprintf(buf, bufsz, "%3.3g %s", (float)time/divisor, suffixes[suffix]);
76 void measure(uint64_t *reps, uint64_t *time, void (^test)()) { argument
99 *time = d;
102 void log_result(char *name, uint64_t repetitions, uint64_t time) { argument
104 printf("%s: %ld repetitions in %s = %ld per second\n", name, (long)repetitions, duration_description(time, buf, sizeof(buf)), (long)(repetitions * NSEC_PER_SEC / time));
110 uint64_t reps, time; local
119 uint64_t reps, time; local
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/hcrypto/libtommath/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]
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DMediaTimeMac.cpp52 CMTime time = {mediaTime.timeValue(), mediaTime.timeScale(), 0, 0}; local
55 time.flags |= kCMTimeFlags_Valid;
57 time.flags |= kCMTimeFlags_HasBeenRounded;
59 time.flags |= kCMTimeFlags_PositiveInfinity;
61 time.flags |= kCMTimeFlags_NegativeInfinity;
63 return time;

Completed in 179 milliseconds

1234567891011>>