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

/freebsd-current/contrib/jemalloc/src/
H A Dnstime.c66 nstime_subtract(nstime_t *time, const nstime_t *subtrahend) { argument
67 assert(nstime_compare(time, subtrahend) >= 0);
69 time->ns -= subtrahend->ns;
73 nstime_isubtract(nstime_t *time, uint64_t subtrahend) { argument
74 assert(time->ns >= subtrahend);
76 time->ns -= subtrahend;
/freebsd-current/stand/ficl/
H A Dmath64.c524 DPUNS subtrahend; local
530 subtrahend.lo = y;
531 subtrahend.hi = 0;
536 while ((m64Compare(subtrahend, q) < 0) &&
537 (subtrahend.hi & CELL_HI_BIT) == 0)
540 subtrahend = m64ASL(subtrahend);
545 if (m64Compare(subtrahend, q) <= 0)
547 q = m64Sub( q, subtrahend);
551 subtrahend
[all...]
/freebsd-current/contrib/jemalloc/include/jemalloc/internal/
H A Dnstime.h22 void nstime_subtract(nstime_t *time, const nstime_t *subtrahend);
23 void nstime_isubtract(nstime_t *time, uint64_t subtrahend);
/freebsd-current/contrib/llvm-project/lld/MachO/
H A DEhFrame.cpp113 auto subtrahend = a; local
116 std::swap(subtrahend, minuend);
117 assert(subtrahend.is<Symbol *>());
119 off, /*addend=*/0, subtrahend);
H A DInputFiles.cpp547 // The {X86_64,ARM64}_RELOC_SUBTRACTOR record holds the subtrahend,
1335 macho::Reloc &subtrahend = *relocIt; local
1337 assert(target->hasAttr(subtrahend.type, RelocAttrBits::SUBTRAHEND));
1341 auto *pcSym = cast<Defined>(subtrahend.referent.get<macho::Symbol *>());
1352 if (pcSym->value - (Invert ? -1 : 1) * minuend.addend != subtrahend.offset)
1361 macho::Reloc &pcReloc = Invert ? minuend : subtrahend;
1396 // Subtractor relocs require the subtrahend to be a symbol reloc. Ensure
1470 funcAddrRelocIt = it++; // Found subtrahend; skip over minuend reloc
1472 lsdaAddrRelocIt = it++; // Found subtrahend; skip over minuend reloc
/freebsd-current/sys/compat/linuxkpi/common/include/linux/
H A Doverflow.h74 * @b: subtrahend; value to subtract from @a
221 * @subtrahend: value to subtract from @minuend
223 * Returns: calculate @minuend - @subtrahend, both promoted to size_t,
229 static inline size_t __must_check size_sub(size_t minuend, size_t subtrahend) argument
233 if (minuend == SIZE_MAX || subtrahend == SIZE_MAX ||
234 check_sub_overflow(minuend, subtrahend, &bytes))
/freebsd-current/lib/libc/isc/
H A Dev_timers.c93 evSubTime(struct timespec minuend, struct timespec subtrahend) { argument
96 x.tv_sec = minuend.tv_sec - subtrahend.tv_sec;
97 if (minuend.tv_nsec >= subtrahend.tv_nsec)
98 x.tv_nsec = minuend.tv_nsec - subtrahend.tv_nsec;
100 x.tv_nsec = BILLION - subtrahend.tv_nsec + minuend.tv_nsec;
/freebsd-current/usr.sbin/newsyslog/
H A Dptimes.c561 ptime_data *subtrahend)
565 if (minuend == NULL || subtrahend == NULL)
568 return (difftime(minuend->tsecs, subtrahend->tsecs));
560 ptimeget_diff(const struct ptime_data *minuend, const struct ptime_data *subtrahend) argument
/freebsd-current/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_consume.c199 dt_subtract_128(uint64_t *minuend, uint64_t *subtrahend, uint64_t *difference) argument
203 result[0] = minuend[0] - subtrahend[0];
204 result[1] = minuend[1] - subtrahend[1] -
205 (minuend[0] < subtrahend[0] ? 1 : 0);
264 * We initialize subtrahend by shifting divisor left as far as possible. We
265 * loop, comparing subtrahend to dividend: if subtrahend is smaller, we
267 * subtrahend right by one bit for the next comparison.
274 uint64_t subtrahend[2]; local
287 subtrahend[
[all...]

Completed in 121 milliseconds