Searched refs:time0 (Results 1 - 9 of 9) sorted by relevance

/macosx-10.10/Libc-1044.1.2/stdtime/FreeBSD/
H A Ddifftime.c21 difftime(time1, time0)
23 const time_t time0;
31 return (double) time1 - (double) time0;
36 return time1 - time0;
44 if (time1 >= time0)
45 return time1 - time0;
46 else return -((double) (time0 - time1));
50 ** Handle cases where both time1 and time0 have the same sign
53 if ((time1 < 0) == (time0 < 0))
54 return time1 - time0;
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/examples/plotchart/
H A Dplotdemos13.tcl16 set time0 [clock milliseconds]
54 puts "Plotting a line with 1000 points: [expr {$time1-$time0}] ms"
/macosx-10.10/tcsh-65/tcsh/
H A Dsh.time.c74 (void) gettimeofday(&time0, NULL);
82 (void) get_process_stats(&time0, PS_SELF, &ru0, &ruch);
86 time0 = times(&times0);
115 prusage(&ru0, &ru1, &timedol, &time0);
123 prusage(&ru0, &ru1, &timedol, &time0);
138 prusage(&times0, &times_dol, timedol, time0);
H A Dsh.h591 EXTERN struct timeval time0; /* Time at which the shell started */ variable in typeref:struct:timeval
595 EXTERN timeval_t time0; /* time at which shell started */ variable
599 EXTERN time_t time0; /* time at which shell started */ variable
601 EXTERN clock_t time0; /* time at which shell started */ variable
H A Dsh.c2101 new = stb.st_mtime > time0.tv_sec;
2120 new = stb.st_mtime > time0.tv_sec;
/macosx-10.10/emacs-93/emacs/lisp/
H A Dls-lisp.el498 (defun ls-lisp-time-lessp (time0 time1)
500 (let ((hi0 (car time0)) (hi1 (car time1)))
503 (< (cadr time0) (cadr time1))))))
/macosx-10.10/IOKitUser-1050.1.21/graphics.subproj/
H A DIOGraphicsLibInternal.h34 fprintf(cref->logfile, "%10lld %s: ", ((time - cref->time0) / 1000), __FUNCTION__); \
418 uint64_t time0; member in struct:IOFBConnect
H A DIOGraphicsLib.c2611 gAllConnects->time0 = mach_absolute_time();
2613 gAllConnects->next->time0 = gAllConnects->time0;
4325 connectRef->time0 = gAllConnects->time0;
4330 connectRef->time0 = mach_absolute_time();
/macosx-10.10/emacs-93/emacs/lisp/textmodes/
H A Dorg.el12439 ts time time0)
12454 (setq time0 (org-parse-time-string ts))
12458 (list (or (car time0) 0))
12459 (list (+ (if (eq org-ts-what 'minute) n 0) (nth 1 time0)))
12460 (list (+ (if (eq org-ts-what 'hour) n 0) (nth 2 time0)))
12461 (list (+ (if (eq org-ts-what 'day) n 0) (nth 3 time0)))
12462 (list (+ (if (eq org-ts-what 'month) n 0) (nth 4 time0)))
12463 (list (+ (if (eq org-ts-what 'year) n 0) (nth 5 time0)))
12464 (nthcdr 6 time0))))
12471 (setcar (nthcdr 4 time0) (nt
[all...]

Completed in 291 milliseconds