| /src/lib/libc/compat/gen/ | 
| compat_time.c | 26 #define time_t int32_t  macro 
 | 
| /src/lib/libc/compat/time/ | 
| compat_difftime.c | 52 #define	time_t	int32_t  macro 
 | 
| compat_asctime.c | 31 #define	time_t	int32_t  macro 
 | 
| compat_localtime.c | 75 #define	time_t	int32_t  macro 
 | 
| /src/include/ | 
| utime.h | 40 typedef	_BSD_TIME_T_	time_t;  typedef in typeref:typename:_BSD_TIME_T_ 45 	time_t actime;		/* Access time */
 46 	time_t modtime;		/* Modification time */
 
 | 
| util.h | 42 typedef _BSD_TIME_T_    time_t;  typedef in typeref:typename:_BSD_TIME_T_ 103 time_t		parsedate(const char *, const time_t *, const int *)
 
 | 
| time.h | 54 typedef	_BSD_TIME_T_	time_t;  typedef in typeref:typename:_BSD_TIME_T_ 93 char *ctime(const time_t *) __RENAME(__ctime50);
 94 double difftime(time_t, time_t) __RENAME(__difftime50);
 95 struct tm *gmtime(const time_t *) __RENAME(__gmtime50);
 96 struct tm *localtime(const time_t *) __RENAME(__locatime50);
 97 time_t time(time_t *) __RENAME(__time50);
 98 time_t mktime(struct tm *) __RENAME(__mktime50);
 178 char *ctime_r(const time_t *, char *) __RENAME(__ctime_r50)
 [all...]
 | 
| /src/sys/sys/ | 
| timespec.h | 43 typedef	_BSD_TIME_T_	time_t;  typedef in typeref:typename:_BSD_TIME_T_ 48 	time_t	tv_sec;		/* seconds */
 
 | 
| types.h | 304 typedef	_BSD_TIME_T_		time_t;  typedef in typeref:typename:_BSD_TIME_T_ 
 | 
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ | 
| sanitizer_platform_limits_linux.cc | 41 #define time_t __kernel_time_t  macro 
 | 
| /src/sys/arch/hpc/stand/include/machine/ | 
| types.h | 38 typedef long			time_t;  typedef in typeref:typename:long 40 typedef unsigned long		time_t;  typedef in typeref:typename:unsigned long
 
 | 
| /src/lib/libc/time/ | 
| private.h | 67 /* On GNUish systems where time_t might be 32 or 64 bits, use 64. 655    as if compiling with '-Dtime_tz=time_t'.  */
 657 # define time_tz time_t
 662 ** time_t type equivalent to T rather than the system-supplied time_t.
 664 ** (e.g., time_t wider than 'long', or unsigned time_t) even on
 674 static time_t sys_time(time_t *x) { return time(x); }
 715 # undef  time_t
 716 # define time_t  macro
 [all...]
 | 
| localtime.c | 3 /* Convert timestamp from time_t to struct tm.  */ 92    This tells us to #define time_t to an internal type timex_t that is
 95    to a static function that returns the redefined time_t.
 104 # undef time_t
 105 # define time_t timex_t  macro
 280 static struct tm *gmtsub(struct state const *, time_t const *, int_fast32_t,
 285 static struct tm *timesub(time_t const *, int_fast32_t, struct state const *,
 732 		/* Read transitions, discarding those out of time_t range.
 741 			  time_t attime
 742 			    = ((TYPE_SIGNED(time_t) ? at < TIME_T_MIN : at < 0
 [all...]
 |