Searched refs:minuend (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dformat.el764 (let* ((minuend (copy-alist minu))
766 (m (car minuend))
769 (while (and minuend subtrahend)
771 ;; The minuend starts after the subtrahend ends; keep it.
774 (setq minuend (cdr minuend)
775 m (car minuend)))
776 ;; The minuend extends beyond the end of the subtrahend. Chop it off.
780 ;; The subtrahend starts after the minuend ends; throw it away.
783 ;; The subtrahend extends beyond the end of the minuend
[all...]
/macosx-10.10.1/crontabs-52/newsyslog/
H A Dptimes.c482 ptimeget_diff(const struct ptime_data *minuend, const struct argument
487 if (minuend == NULL || subtrahend == NULL)
490 return (difftime(minuend->tsecs, subtrahend->tsecs));
/macosx-10.10.1/libresolv-57/
H A Dres_send.c338 evSubTime(struct timespec minuend, struct timespec subtrahend) argument
342 x.tv_sec = minuend.tv_sec - subtrahend.tv_sec;
343 if (minuend.tv_nsec >= subtrahend.tv_nsec)
345 x.tv_nsec = minuend.tv_nsec - subtrahend.tv_nsec;
349 x.tv_nsec = BILLION - subtrahend.tv_nsec + minuend.tv_nsec;
/macosx-10.10.1/dtrace-147/libdtrace/
H A Ddt_consume.c159 dt_subtract_128(uint64_t *minuend, uint64_t *subtrahend, uint64_t *difference) argument
163 result[0] = minuend[0] - subtrahend[0];
164 result[1] = minuend[1] - subtrahend[1] -
165 (minuend[0] < subtrahend[0] ? 1 : 0);

Completed in 125 milliseconds