Searched refs:time (Results 51 - 75 of 3222) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/platform/audio/
H A DAudioUtilities.h36 // timeConstant is the time it takes a first-order linear time-invariant system
38 // discreteTimeConstantForSampleRate() will return the discrete time-constant for the specific sampleRate.
41 // Convert the time to a sample frame at the given sample rate.
42 size_t timeToSampleFrame(double time, double sampleRate);
H A DAudioUtilities.cpp57 size_t timeToSampleFrame(double time, double sampleRate) argument
59 return static_cast<size_t>(round(time * sampleRate));
/macosx-10.10/cxxfilt-11/cxxfilt/libiberty/
H A Dgetruntime.c1 /* Return time used so far, in microseconds.
26 to get the definition of "time_t" before you include <time.h>. */
29 /* There are several ways to get elapsed execution time; unfortunately no
34 # include <sys/time.h>
35 # include <time.h>
38 # include <sys/time.h>
41 # include <time.h>
84 Returns the time used so far, in microseconds. If possible, this is
85 the time used by this process, else it is the elapsed time sinc
[all...]
H A Dpex-unix.c52 #include <sys/time.h>
84 time that it took. This is simple if we have wait4, slightly
93 struct pex_time *time)
99 if (time == NULL)
105 if (time != NULL)
107 time->user_seconds = r.ru_utime.tv_sec;
108 time->user_microseconds= r.ru_utime.tv_usec;
109 time->system_seconds = r.ru_stime.tv_sec;
110 time->system_microseconds= r.ru_stime.tv_usec;
124 struct pex_time *time)
92 pex_wait(struct pex_obj *obj ATTRIBUTE_UNUSED, pid_t pid, int *status, struct pex_time *time) argument
123 pex_wait(struct pex_obj *obj ATTRIBUTE_UNUSED, pid_t pid, int *status, struct pex_time *time) argument
134 pex_wait(struct pex_obj *obj ATTRIBUTE_UNUSED, pid_t pid, int *status, struct pex_time *time) argument
179 struct pex_time time; member in struct:status_list
183 pex_wait(struct pex_obj *obj, pid_t pid, int *status, struct pex_time *time) argument
477 pex_unix_wait(struct pex_obj *obj, long pid, int *status, struct pex_time *time, int done, const char **errmsg, int *err) argument
[all...]
/macosx-10.10/emacs-93/emacs/mac/inc/
H A Dutime.h27 #include <time.h>
32 time_t actime; /* access time (ignored on the Mac) */
33 time_t modtime; /* modification time */
/macosx-10.10/emacs-93/emacs/src/
H A Dw32inevt.h31 unsigned long *time);
/macosx-10.10/ntp-92/sntp/
H A Dlog.h10 #include <time.h>
/macosx-10.10/postfix-255/postfix/src/global/
H A Dsent.h17 #include <time.h>
/macosx-10.10/sudo-73/src/
H A Dinsults.h57 #define INSULT (insults[time(NULL) % NOFINSULTS])
/macosx-10.10/xnu-2782.1.97/libkern/uuid/
H A Duuid.c41 #include <sys/time.h>
99 uint64_t time; local
104 time = read_time();
105 out[0] = (uint8_t)(time >> 24);
106 out[1] = (uint8_t)(time >> 16);
107 out[2] = (uint8_t)(time >> 8);
108 out[3] = (uint8_t)time;
109 out[4] = (uint8_t)(time >> 40);
110 out[5] = (uint8_t)(time >> 32);
111 out[6] = (uint8_t)(time >> 5
[all...]
/macosx-10.10/Heimdal-398.1.2/lib/kadm5/
H A Dset_modifier.c49 ent->modified_by->time = time(NULL);
/macosx-10.10/Libc-1044.1.2/stdtime/FreeBSD/
H A Dftime.c36 #include <sys/time.h>
49 tbp->time = t.tv_sec;
/macosx-10.10/Security-57031.1.35/Security/include/security_cryptkit/
H A Dplatform.c58 #include <time.h>
67 time(&curTime);
89 extern void time(unsigned *tp);
96 time(&curTime);
108 #include <time.h>
133 time(&curTime);
177 #include <time.h>
186 time(&curTime);
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cryptkit/lib/
H A Dplatform.c58 #include <time.h>
67 time(&curTime);
89 extern void time(unsigned *tp);
96 time(&curTime);
108 #include <time.h>
133 time(&curTime);
177 #include <time.h>
186 time(&curTime);
/macosx-10.10/WebCore-7600.1.25/Modules/vibration/
H A DNavigatorVibration.cpp41 bool NavigatorVibration::vibrate(Navigator* navigator, unsigned time) argument
43 return NavigatorVibration::vibrate(navigator, VibrationPattern(1, time));
/macosx-10.10/apr-32/apr/apr/include/
H A Dapr_time.h64 #define apr_time_sec(time) ((time) / APR_USEC_PER_SEC)
67 #define apr_time_usec(time) ((time) % APR_USEC_PER_SEC)
70 #define apr_time_msec(time) (((time) / 1000) % 1000)
73 #define apr_time_as_msec(time) ((time) / 1000)
86 * @return the current time
117 /** daylight saving time */
[all...]
/macosx-10.10/bind9-45.101/bind9/contrib/nslint-2.1a3/lbl/
H A Dos-irix5.h38 time_t time(time_t *);
/macosx-10.10/ncurses-44/ncurses/ncurses/tinfo/
H A Dlib_napms.c46 #include <time.h>
48 #include <sys/time.h> /* needed for MacOS X DP3 */
/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DAudioParam.h88 void setValueAtTime(float value, float time) { m_timeline.setValueAtTime(value, time); } argument
89 void linearRampToValueAtTime(float value, float time) { m_timeline.linearRampToValueAtTime(value, time); } argument
90 void exponentialRampToValueAtTime(float value, float time) { m_timeline.exponentialRampToValueAtTime(value, time); } argument
91 void setTargetAtTime(float target, float time, float timeConstant) { m_timeline.setTargetAtTime(target, time, timeConstant); } argument
92 void setValueCurveAtTime(Float32Array* curve, float time, float duration) { m_timeline.setValueCurveAtTime(curve, time, duratio argument
[all...]
/macosx-10.10/ipsec-286.1.1/ipsec-tools/racoon/
H A Dthrottle.c40 # include <sys/time.h>
41 # include <time.h>
44 # include <sys/time.h>
46 # include <time.h>
85 te->penalty = time(NULL) + isakmp_cfg_config.auth_throttle;
104 now = time(NULL);
125 * give no penalty even on error: this is the first time
133 return (time(NULL)
/macosx-10.10/zsh-61/zsh/Src/Modules/
H A Dzprof.c33 #include <sys/time.h>
42 double time; member in struct:pfunc
62 double time; member in struct:parc
129 return ((*a)->time > (*b)->time ? -1 : ((*a)->time != (*b)->time));
135 return ((*a)->time > (*b)->time ? -1 : ((*a)->time !
[all...]
/macosx-10.10/rsync-45/rsync/
H A Dprogress.c38 struct timeval time; member in struct:progress_history
56 * @param is_last True if this is the last time progress will be
72 if (!ph_start.time.tv_sec
73 || !(diff = msdiff(&ph_start.time, now)))
76 /* Switch to total time taken for our last update. */
80 if (!(diff = msdiff(&ph_list[oldest_hpos].time, now)))
141 if (!ph_start.time.tv_sec) {
144 /* Try to guess the real starting time when the sender started
145 * to send us data by using the time we last received some data
147 if (msdiff(&ph_list[newest_hpos].time,
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DPlatformClockCA.cpp63 void PlatformClockCA::setCurrentTime(double time) argument
69 caTime.time.seconds = time;
79 // CAClock does not return the correct current time when stopped. Instead, query for
80 // what is the start time, i.e. what the current time will be when started.
83 return caTime.time.seconds;
86 return caTime.time.seconds;
/macosx-10.10/uucp-11/uucp/
H A Dtime.c0 /* time.c
2 Routines to deal with UUCP time spans.
28 const char time_rcsid[] = "$Id: time.c,v 1.22 2002/03/05 19:10:41 ian Rel $";
34 #include <sys/time.h>
36 #include <time.h>
43 #ifndef time
44 extern time_t time ();
51 /* See if the current time matches a time span. If it does, return
70 time (
[all...]
/macosx-10.10/emacs-93/emacs/lisp/emacs-lisp/
H A Dtimer.el1 ;;; timer.el --- run a function with args at some time in future
48 (defun timer-set-time (timer time &optional delta)
49 "Set the trigger time of TIMER to TIME.
50 TIME must be in the internal format returned by, e.g., `current-time'.
55 (aset timer 1 (car time))
56 (aset timer 2 (if (consp (cdr time)) (car (cdr time)) (cdr time)))
57 (aset timer 3 (or (and (consp (cdr time)) (cons
[all...]

Completed in 268 milliseconds

1234567891011>>