HomeSort by: relevance | last modified time | path
    Searched defs:subtrahend (Results 1 - 2 of 2) sorted by relevancy

  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_consume.c 161 dt_subtract_128(uint64_t *minuend, uint64_t *subtrahend, uint64_t *difference)
165 result[0] = minuend[0] - subtrahend[0];
166 result[1] = minuend[1] - subtrahend[1] -
167 (minuend[0] < subtrahend[0] ? 1 : 0);
226 * We initialize subtrahend by shifting divisor left as far as possible. We
227 * loop, comparing subtrahend to dividend: if subtrahend is smaller, we
229 * subtrahend right by one bit for the next comparison.
236 uint64_t subtrahend[2]; local
249 subtrahend[0] = divisor
    [all...]
dt_consume.c 161 dt_subtract_128(uint64_t *minuend, uint64_t *subtrahend, uint64_t *difference)
165 result[0] = minuend[0] - subtrahend[0];
166 result[1] = minuend[1] - subtrahend[1] -
167 (minuend[0] < subtrahend[0] ? 1 : 0);
226 * We initialize subtrahend by shifting divisor left as far as possible. We
227 * loop, comparing subtrahend to dividend: if subtrahend is smaller, we
229 * subtrahend right by one bit for the next comparison.
236 uint64_t subtrahend[2]; local
249 subtrahend[0] = divisor
    [all...]

Completed in 55 milliseconds