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

/freebsd-9.3-release/sys/boot/ficl/
H A Dmath64.c525 DPUNS subtrahend; local
531 subtrahend.lo = y;
532 subtrahend.hi = 0;
537 while ((m64Compare(subtrahend, q) < 0) &&
538 (subtrahend.hi & CELL_HI_BIT) == 0)
541 subtrahend = m64ASL(subtrahend);
546 if (m64Compare(subtrahend, q) <= 0)
548 q = m64Sub( q, subtrahend);
552 subtrahend
[all...]
/freebsd-9.3-release/lib/libc/isc/
H A Dev_timers.c97 evSubTime(struct timespec minuend, struct timespec subtrahend) { argument
100 x.tv_sec = minuend.tv_sec - subtrahend.tv_sec;
101 if (minuend.tv_nsec >= subtrahend.tv_nsec)
102 x.tv_nsec = minuend.tv_nsec - subtrahend.tv_nsec;
104 x.tv_nsec = BILLION - subtrahend.tv_nsec + minuend.tv_nsec;
/freebsd-9.3-release/usr.sbin/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
/freebsd-9.3-release/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_consume.c141 dt_subtract_128(uint64_t *minuend, uint64_t *subtrahend, uint64_t *difference) argument
145 result[0] = minuend[0] - subtrahend[0];
146 result[1] = minuend[1] - subtrahend[1] -
147 (minuend[0] < subtrahend[0] ? 1 : 0);
206 * We initialize subtrahend by shifting divisor left as far as possible. We
207 * loop, comparing subtrahend to dividend: if subtrahend is smaller, we
209 * subtrahend right by one bit for the next comparison.
216 uint64_t subtrahend[2]; local
229 subtrahend[
[all...]
/freebsd-9.3-release/contrib/llvm/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 121 milliseconds