Searched refs:subtrahend (Results 1 - 5 of 5) sorted by relevance

/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dformat.el765 (subtrahend (copy-alist subtra))
767 (s (car subtrahend))
769 (while (and minuend subtrahend)
771 ;; The minuend starts after the subtrahend ends; keep it.
776 ;; The minuend extends beyond the end of the subtrahend. Chop it off.
780 ;; The subtrahend starts after the minuend ends; throw it away.
782 (setq subtrahend (cdr subtrahend) s (car subtrahend)))
783 ;; The subtrahend extend
[all...]
/macosx-10.10.1/crontabs-52/newsyslog/
H A Dptimes.c483 ptime_data *subtrahend)
487 if (minuend == NULL || subtrahend == NULL)
490 return (difftime(minuend->tsecs, subtrahend->tsecs));
482 ptimeget_diff(const struct ptime_data *minuend, const struct ptime_data *subtrahend) argument
/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);
224 * We initialize subtrahend by shifting divisor left as far as possible. We
225 * loop, comparing subtrahend to dividend: if subtrahend is smaller, we
227 * subtrahend right by one bit for the next comparison.
234 uint64_t subtrahend[2]; local
247 subtrahend[
[all...]
/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/llvmCore-3425.0.34/lib/Support/
H A DAPInt.cpp1570 uint64_t subtrahend = uint64_t(qp) * uint64_t(v[i]);
1571 bool borrow = subtrahend > u_tmp;
1573 << ", subtrahend == " << subtrahend
1576 uint64_t result = u_tmp - subtrahend;

Completed in 180 milliseconds