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

/vbox/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/
H A Ddt_consume.c143 dt_subtract_128(uint64_t *minuend, uint64_t *subtrahend, uint64_t *difference) argument
147 result[0] = minuend[0] - subtrahend[0];
148 result[1] = minuend[1] - subtrahend[1] -
149 (minuend[0] < subtrahend[0] ? 1 : 0);
208 * We initialize subtrahend by shifting divisor left as far as possible. We
209 * loop, comparing subtrahend to dividend: if subtrahend is smaller, we
211 * subtrahend right by one bit for the next comparison.
218 uint64_t subtrahend[2]; local
231 subtrahend[
[all...]

Completed in 47 milliseconds