Searched refs:time (Results 26 - 50 of 2085) sorted by relevance

1234567891011>>

/freebsd-10.3-release/contrib/ofed/management/libibcommon/src/
H A Dtime.c35 #include <sys/time.h>
/freebsd-10.3-release/contrib/mdocml/
H A Dst.c23 #include <time.h>
H A Dvol.c23 #include <time.h>
H A Darch.c23 #include <time.h>
H A Datt.c23 #include <time.h>
H A Dlib.c23 #include <time.h>
/freebsd-10.3-release/crypto/heimdal/lib/roken/
H A Dgetdtablesize.c42 #include <sys/time.h>
43 #include <time.h>
45 #include <sys/time.h>
47 #include <time.h>
/freebsd-10.3-release/crypto/openssl/crypto/
H A Do_time.h63 # include <time.h>
/freebsd-10.3-release/contrib/file/src/
H A Dasctime_r.c7 #include <time.h>
H A Dctime_r.c7 #include <time.h>
/freebsd-10.3-release/contrib/ldns/compat/
H A Dctime_r.c6 #include <time.h>
H A Dgmtime_r.c6 #include <time.h>
H A Dlocaltime_r.c6 #include <time.h>
/freebsd-10.3-release/contrib/binutils/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...]
/freebsd-10.3-release/cddl/contrib/opensolaris/cmd/stat/common/
H A Dstatcommon.h37 #include <time.h>
39 #define NODATE 0 /* Default: No time stamp */
41 #define UDATE 2 /* Internal representation of Unix time */
/freebsd-10.3-release/usr.sbin/nscd/
H A Dsingletons.c31 #include <sys/time.h>
/freebsd-10.3-release/usr.sbin/pw/
H A Dpsdate.h32 #include <time.h>
/freebsd-10.3-release/contrib/ncurses/ncurses/tinfo/
H A Dlib_napms.c46 #include <time.h>
48 #include <sys/time.h> /* needed for MacOS X DP3 */
/freebsd-10.3-release/crypto/heimdal/lib/kadm5/
H A Dset_modifier.c49 ent->modified_by->time = time(NULL);
/freebsd-10.3-release/lib/libcompat/4.1/
H A Dftime.c36 #include <sys/time.h>
48 tbp->time = t.tv_sec;
/freebsd-10.3-release/lib/libc/gen/
H A Dtime.c31 static char sccsid[] = "@(#)time.c 8.1 (Berkeley) 6/4/93";
34 __FBSDID("$FreeBSD: releng/10.3/lib/libc/gen/time.c 201194 2009-12-29 12:47:47Z kib $");
37 #include <sys/time.h>
40 time(time_t *t) function
/freebsd-10.3-release/sys/boot/ofw/libofw/
H A Dofw_time.c34 time(time_t *tloc) function
48 time(&n);
/freebsd-10.3-release/contrib/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...]
/freebsd-10.3-release/sys/boot/ia64/ski/
H A Dtime.c41 __FBSDID("$FreeBSD: releng/10.3/sys/boot/ia64/ski/time.c 139738 2005-01-05 22:16:58Z imp $");
43 #include <time.h>
44 #include <sys/time.h>
167 time(time_t *tloc) function
169 struct ssc_time time; local
171 ssc((u_int64_t) &time, 0, 0, 0, SSC_GET_RTC);
173 return *tloc = EfiTimeToUnixTime(&time);
/freebsd-10.3-release/sys/contrib/octeon-sdk/
H A Dcvmx-thunder.c84 uint32_t time; local
88 time = cvmx_twsi_read8(CVMX_RTC_DS1374_ADDR, 0x0);
89 time |= (cvmx_twsi_read8_cur_addr(CVMX_RTC_DS1374_ADDR) & 0xff) << 8;
90 time |= (cvmx_twsi_read8_cur_addr(CVMX_RTC_DS1374_ADDR) & 0xff) << 16;
91 time |= (cvmx_twsi_read8_cur_addr(CVMX_RTC_DS1374_ADDR) & 0xff) << 24;
94 if (sec == (time & 0xff))
98 return time;
105 int cvmx_rtc_ds1374_write(uint32_t time) argument
113 rc = cvmx_twsi_write8(CVMX_RTC_DS1374_ADDR, 0x0, time & 0xff);
114 rc |= cvmx_twsi_write8(CVMX_RTC_DS1374_ADDR, 0x1, (time >>
[all...]

Completed in 275 milliseconds

1234567891011>>