Home
last modified time | relevance | path

Searched refs:time0 (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/tzcode/
H A Ddifftime.c22 difftime(time_t time1, time_t time0) in difftime() argument
29 double t1 = time1, t0 = time0; in difftime()
38 return time0 <= time1 ? time1 - time0 : dminus(time0 - time1); in difftime()
42 uintmax_t t1 = time1, t0 = time0; in difftime()
43 return time0 <= time1 ? t1 - t0 : dminus(t0 - t1); in difftime()
50 if ((time1 < 0) == (time0 < 0)) in difftime()
51 return time1 - time0; in difftime()
59 long double t1 = time1, t0 = time0; in difftime()
/freebsd/contrib/tcsh/
H A Dsh.time.c70 (void) gettimeofday(&time0, NULL); in settimes()
78 (void) get_process_stats(&time0, PS_SELF, &ru0, &ruch); in settimes()
82 time0 = times(&times0); in settimes()
111 prusage(&ru0, &ru1, &timedol, &time0); in dotime()
119 prusage(&ru0, &ru1, &timedol, &time0); in dotime()
134 prusage(&times0, &times_dol, timedol, time0); in dotime()
H A Dsh.h608 EXTERN struct timeval time0; /* Time at which the shell started */ variable
612 EXTERN timeval_t time0; /* time at which shell started */ variable
616 EXTERN time_t time0; /* time at which shell started */ variable
618 EXTERN clock_t time0; /* time at which shell started */ variable
H A Dsh.c2265 new = stb.st_mtime > time0.tv_sec; in mailchk()
2284 new = stb.st_mtime > time0.tv_sec; in mailchk()
H A DFixes755 6. Don't re-use time0 to compare to stat's st_mtime, cause it could be
/freebsd/contrib/llvm-project/libcxx/include/
H A Dctime34 double difftime(time_t time1, time_t time0);
/freebsd/sys/netgraph/
H A Dng_cisco.c83 uint16_t time0; member
621 ch->time0 = htons((uint16_t) (t >> 16)); in cisco_send()