Searched refs:subtrahend (Results 1 - 6 of 6) sorted by path

/freebsd-11-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_consume.c160 dt_subtract_128(uint64_t *minuend, uint64_t *subtrahend, uint64_t *difference) argument
164 result[0] = minuend[0] - subtrahend[0];
165 result[1] = minuend[1] - subtrahend[1] -
166 (minuend[0] < subtrahend[0] ? 1 : 0);
225 * We initialize subtrahend by shifting divisor left as far as possible. We
226 * loop, comparing subtrahend to dividend: if subtrahend is smaller, we
228 * subtrahend right by one bit for the next comparison.
235 uint64_t subtrahend[2]; local
248 subtrahend[
[all...]
/freebsd-11-stable/contrib/jemalloc/include/jemalloc/internal/
H A Dnstime.h35 void nstime_subtract(nstime_t *time, const nstime_t *subtrahend);
/freebsd-11-stable/contrib/jemalloc/src/
H A Dnstime.c64 nstime_subtract(nstime_t *time, const nstime_t *subtrahend) argument
67 assert(nstime_compare(time, subtrahend) >= 0);
69 time->ns -= subtrahend->ns;
/freebsd-11-stable/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-11-stable/stand/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-11-stable/usr.sbin/newsyslog/
H A Dptimes.c552 ptime_data *subtrahend)
556 if (minuend == NULL || subtrahend == NULL)
559 return (difftime(minuend->tsecs, subtrahend->tsecs));
551 ptimeget_diff(const struct ptime_data *minuend, const struct ptime_data *subtrahend) argument

Completed in 191 milliseconds