Searched refs:times (Results 1 - 25 of 281) sorted by relevance

1234567891011>>

/macosx-10.10.1/ksh-23/ksh/src/lib/libast/astsa/
H A Dtimes.h25 #include <sys/times.h>
/macosx-10.10.1/xnu-2782.1.97/tools/tests/libMicro/
H A Dtimes.c34 #include <sys/times.h>
46 "notes: measures times()\n");
59 (void) times(&buf);
60 (void) times(&buf);
61 (void) times(&buf);
62 (void) times(&buf);
63 (void) times(&buf);
64 (void) times(&buf);
65 (void) times(&buf);
66 (void) times(
[all...]
/macosx-10.10.1/sudo-73/src/
H A Dutimes.c39 utimes(file, times)
41 const struct timeval *times;
43 if (times != NULL) {
46 utb.actime = (time_t)(times[0].tv_sec + times[0].tv_usec / 1000000);
47 utb.modtime = (time_t)(times[1].tv_sec + times[1].tv_usec / 1000000);
59 futimes(fd, times)
61 const struct timeval *times;
63 if (times !
[all...]
H A Dfileops.c57 * Update the access and modify times on an fd or file.
65 struct timeval times[2]; local
68 times[0].tv_sec = times[1].tv_sec = tvp->tv_sec;
69 times[0].tv_usec = times[1].tv_usec = tvp->tv_usec;
74 return futimes(fd, tvp ? times : NULL);
78 return utimes(path, tvp ? times : NULL);
/macosx-10.10.1/ruby-106/ruby/nacl/
H A Dutime.h9 int utime(const char *filename, const struct utimbuf *times);
10 int utimes(const char *filename, const struct timeval times[2]);
/macosx-10.10.1/lukemftp-14/tnftp/libnetbsd/
H A Dutimes.c46 utimes(const char *path, const struct timeval *times) argument
48 if (times != NULL) {
51 ut.actime = times[0].tv_sec;
52 ut.modtime = times[1].tv_sec;
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dutime.c41 utime(path, times)
43 const struct utimbuf *times;
47 if (times) {
48 tv[0].tv_sec = times->actime;
49 tv[1].tv_sec = times->modtime;
H A Dtimes.c35 static char sccsid[] = "@(#)times.c 8.1 (Berkeley) 6/4/93";
38 __FBSDID("$FreeBSD: src/lib/libc/gen/times.c,v 1.2 2002/02/01 01:08:48 obrien Exp $");
42 #include <sys/times.h>
52 times(tp) function
/macosx-10.10.1/dtrace-147/DTTk/Bin/
H A Dcswstat.d46 times = 0;
61 times += timestamp - start[cpu];
68 printf("%20Y %8d %12d %12d\n", walltimestamp, num, times/1000,
69 times/(1000*num)); /* assume num > 0 */
70 times = 0;
/macosx-10.10.1/dtrace-147/DTTk/Kernel/
H A Dcswstat.d46 times = 0;
61 times += timestamp - start[cpu];
68 printf("%20Y %8d %12d %12d\n", walltimestamp, num, times/1000,
69 times/(1000*num)); /* assume num > 0 */
70 times = 0;
/macosx-10.10.1/ICU-531.30/icuSources/test/perf/howExpensiveIs/
H A Dsieve.cpp81 double midpoint(double *times, double i, int n) { argument
86 return times[(int)fl];
88 return (times[(int)fl]+times[(int)ce])/2;
92 double medianof(double *times, int n, int type) { argument
95 return midpoint(times,n/4,n);
97 return midpoint(times,n/2,n);
99 return midpoint(times,(n/2)+(n/4),n);
104 double qs(double *times, int n, double *q1, double *q2, double *q3) { argument
105 *q1 = medianof(times,
111 uprv_getMeanTime(double *times, uint32_t *timeCount, double *marginOfError) argument
197 double times[SAMPLES]; local
[all...]
H A Dsieve.h23 * @param times array of times (modified/sorted)
28 U_INTERNAL double uprv_getMeanTime(double *times, uint32_t *timeCount, double *marginOfError);
/macosx-10.10.1/bash-94.1.2/bash-3.2/builtins/
H A Dshift.c26 shifting. Return > 0 if `times' > $#, otherwise 0. */
31 intmax_t times; local
35 times = get_numeric_arg (list, 0);
37 if (times == 0)
39 else if (times < 0)
44 else if (times > number_of_args ())
51 while (times-- > 0)
/macosx-10.10.1/libarchive-30/libarchive/cpio/test/
H A Dtest_option_u.c35 struct utimbuf times; local
57 memset(&times, 0, sizeof(times));
58 times.actime = 1;
59 times.modtime = 3;
60 assertEqualInt(0, utime("f", &times));
H A Dtest_option_a.c57 struct utimbuf times; local
73 memset(&times, 0, sizeof(times));
74 times.actime = 1;
75 times.modtime = 3;
76 assertEqualInt(0, utime(files[i].name, &times));
/macosx-10.10.1/bash-94.1.2/bash-3.2/include/
H A Dsystimes.h20 * POSIX Standard: 4.5.2 Process Times <sys/times.h>
32 # include <sys/times.h>
51 errors. All times are in CLK_TCKths of a second. */
52 extern clock_t times __P((struct tms *buffer));
/macosx-10.10.1/Libc-1044.1.2/emulated/
H A Dlutimes.c32 lutimes(const char *path, const struct timeval *times) argument
44 return utimes(path, times);
48 if(times) {
49 TIMEVAL_TO_TIMESPEC(&times[0], &t.access);
50 TIMEVAL_TO_TIMESPEC(&times[1], &t.mod);
/macosx-10.10.1/cxxfilt-11/cxxfilt/libiberty/
H A Dclock.c48 #include <sys/times.h>
82 times (&tms);
94 times (&vms_times);
H A Dgetruntime.c54 #include <sys/times.h>
105 times (&tms);
/macosx-10.10.1/MITKerberosShim-66/
H A Dcreds.c122 c->times.authtime = from->times.authtime;
123 c->times.starttime = from->times.starttime;
124 c->times.endtime = from->times.endtime;
125 c->times.renew_till = from->times.renew_till;
/macosx-10.10.1/xnu-2782.1.97/bsd/sys/
H A Dtimes.h66 * @(#)times.h 8.4 (Berkeley) 1/21/94
80 * [XSI] Structure whose address is passed as the first parameter to times()
91 clock_t times(struct tms *);
/macosx-10.10.1/libarchive-30/libarchive/cpio/
H A Dcpio_windows.h63 extern int futimes(int fd, const struct __timeval *times);
67 extern int utimes(const char *name, const struct __timeval *times);
/macosx-10.10.1/uucp-11/uucp/unix/
H A Dproctm.c38 /* Prefer gettimeofday to ftime to times. */
65 #include <sys/times.h>
69 /* We use a macro to protect this because times really returns clock_t
73 #ifndef times
74 extern long times ();
185 i = (long) times (&s);
/macosx-10.10.1/Heimdal-398.1.2/lib/krb5/
H A Dtest_keytab.c174 perf_add(krb5_context context, krb5_keytab id, int times) argument
179 perf_find(krb5_context context, krb5_keytab id, int times) argument
184 perf_delete(krb5_context context, krb5_keytab id, int forward, int times) argument
192 static int times = 1000; variable
197 {"times", 0, arg_integer, &times,
198 "number of times to run the perforamce test", "number" },
253 perf_add(context, id, times);
254 perf_find(context, id, times);
255 perf_delete(context, id, 0, times);
[all...]
/macosx-10.10.1/gnutar-453/gnutar/lib/
H A Dutime.c56 interpret it to set the access and modification times of FILE to
103 rpl_utime (const char *file, const struct utimbuf *times) argument
105 if (times)
106 return utime (file, times);

Completed in 481 milliseconds

1234567891011>>