| /src/lib/libc/gen/ |
| utimens.c | 43 utimens(const char *path, const struct timespec times[2]) 45 return utimensat(AT_FDCWD, path, times, 0); 49 lutimens(const char *path, const struct timespec times[2]) 51 return utimensat(AT_FDCWD, path, times, AT_SYMLINK_NOFOLLOW);
|
| utime.c | 50 utime(const char *path, const struct utimbuf *times) 56 if (times == (struct utimbuf *) NULL) 59 tv[0].tv_sec = times->actime; 60 tv[1].tv_sec = times->modtime;
|
| /src/sys/compat/sys/ |
| times.h | 1 /* $NetBSD: times.h,v 1.3 2005/12/11 12:20:29 christos Exp $ */ 36 * @(#)times.h 8.4 (Berkeley) 1/21/94 44 clock_t times(struct tms *);
|
| /src/lib/libc/compat/gen/ |
| compat_times.c | 13 #include <sys/times.h> 14 #include <compat/sys/times.h> 19 __weak_alias(times,_times) 22 __warn_references(times, 23 "warning: reference to compatibility times(); include <sys/times.h> for correct reference") 31 #include "gen/times.c"
|
| /src/tests/usr.bin/xlint/lint1/ |
| init_braces.c | 75 struct times { struct 83 struct times times; member in struct:outer::__anon8028::__anon8029 91 .times = { 99 return var.times.t0.ns;
|
| /src/external/cddl/dtracetoolkit/dist/Bin/ |
| cswstat.d | 48 times = 0; 63 times += timestamp - start[cpu]; 70 printf("%20Y %8d %12d %12d\n", walltimestamp, num, times/1000, 71 num == 0 ? 0 : times/(1000 * num)); 72 times = 0;
|
| /src/external/cddl/dtracetoolkit/dist/Kernel/ |
| cswstat.d | 48 times = 0; 63 times += timestamp - start[cpu]; 70 printf("%20Y %8d %12d %12d\n", walltimestamp, num, times/1000, 71 num == 0 ? 0 : times/(1000 * num)); 72 times = 0;
|
| /src/external/bsd/libarchive/dist/cpio/test/ |
| test_option_u.c | 16 struct utimbuf times; local 39 memset(×, 0, sizeof(times)); 40 times.actime = 1; 41 times.modtime = 3; 42 assertEqualInt(0, utime("f", ×));
|
| test_option_a.c | 38 struct utimbuf times; local 54 memset(×, 0, sizeof(times)); 56 times.actime = 86400; 57 times.modtime = 86400; 59 times.actime = 1; 60 times.modtime = 3; 62 assertEqualInt(0, utime(files[i].name, ×));
|
| /src/external/gpl3/binutils/dist/libiberty/ |
| clock.c | 48 #include <sys/times.h> 82 times (&tms); 94 times (&vms_times);
|
| /src/external/gpl3/binutils.old/dist/libiberty/ |
| clock.c | 48 #include <sys/times.h> 82 times (&tms); 94 times (&vms_times);
|
| /src/external/gpl3/gcc/dist/libiberty/ |
| clock.c | 48 #include <sys/times.h> 82 times (&tms); 94 times (&vms_times);
|
| /src/external/gpl3/gcc.old/dist/libiberty/ |
| clock.c | 48 #include <sys/times.h> 82 times (&tms); 94 times (&vms_times);
|
| /src/external/gpl3/gdb.old/dist/libiberty/ |
| clock.c | 48 #include <sys/times.h> 82 times (&tms); 94 times (&vms_times);
|
| /src/external/historical/nawk/dist/testdir/ |
| time.c | 5 #include <sys/times.h> 15 times(&before); 25 times(&after);
|
| /src/external/gpl3/gdb/dist/libiberty/ |
| clock.c | 48 #include <sys/times.h> 82 times (&tms); 94 times (&vms_times);
|
| /src/sys/sys/ |
| times.h | 1 /* $NetBSD: times.h,v 1.13 2005/12/11 12:25:21 christos Exp $ */ 36 * @(#)times.h 8.4 (Berkeley) 1/21/94 61 clock_t times(struct tms *) __RENAME(__times13);
|
| /src/external/bsd/libarchive/dist/cpio/ |
| cpio_windows.h | 46 extern int futimes(int fd, const struct __timeval *times); 50 extern int utimes(const char *name, const struct __timeval *times);
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.arch/ |
| amd64-optimout-repeat.exp | 35 gdb_test "print v" { = {i = 0, xxx = {<optimized out> <repeats 256 times>}}}
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/ |
| amd64-optimout-repeat.exp | 35 gdb_test "print v" { = {i = 0, xxx = {<optimized out> <repeats 256 times>}}}
|
| /src/crypto/external/bsd/heimdal/dist/lib/krb5/ |
| test_keytab.c | 176 perf_add(krb5_context context, krb5_keytab id, int times) 181 perf_find(krb5_context context, krb5_keytab id, int times) 186 perf_delete(krb5_context context, krb5_keytab id, int forward, int times) 194 static int times = 1000; variable 199 {"times", 0, arg_integer, ×, 200 "number of times to run the perforamce test", "number" }, 255 perf_add(context, id, times); 256 perf_find(context, id, times); 257 perf_delete(context, id, 0, times); [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
| selftest_engine_heartbeat.c | 204 u32 times[5]; local 218 for (i = 0; i < ARRAY_SIZE(times); i++) { 246 times[i] = ktime_us_delta(t1, t0); 249 sort(times, ARRAY_SIZE(times), sizeof(times[0]), cmp_u32, NULL); 253 times[ARRAY_SIZE(times) / 2], 254 times[0], 255 times[ARRAY_SIZE(times) - 1]) [all...] |
| /src/usr.bin/systat/ |
| syscall.c | 61 uint64_t times[SYS_NSYSENT]; member in struct:Info 122 if (sysctlnametomib("kern.syscalls.times", times_mib, ×_mib_len)) 213 v = s.times[i] - s1.times[i]; 217 v = v ? (s.times[i] - s1.times[i]) / v : 0; 253 mvprintw(l, c, FMT, "TIMES", "times"); 282 memcpy(s1.times, s.times, sizeof s1.times) [all...] |
| /src/usr.bin/make/unit-tests/ |
| counter-append.mk | 3 # Demonstrates how to let make count the number of times a variable 7 # 6 words, even though the NEXT variable was only accessed 3 times.
|
| counter.mk | 3 # Demonstrates how to let make count the number of times a variable 7 # 4 words, even though the NEXT variable was only accessed 3 times.
|