Lines Matching defs:Quotient
433 * OutQuotient - Pointer to where the quotient is returned
439 * divide and modulo. The result is a 64-bit quotient and a
452 UINT64_OVERLAY Quotient;
470 * The quotient is 64 bits, the remainder is always 32 bits,
474 Quotient.Part.Hi, Remainder32);
477 Quotient.Part.Lo, Remainder32);
483 *OutQuotient = Quotient.Full;
500 * OutQuotient - Pointer to where the quotient is returned
518 UINT64_OVERLAY Quotient;
549 * The quotient is 64 bits, the remainder is always 32 bits,
553 Quotient.Part.Hi, Partial1);
556 Quotient.Part.Lo, Remainder.Part.Lo);
565 Quotient.Part.Hi = 0;
584 NormalizedDivisor.Part.Lo, Quotient.Part.Lo, Partial1);
587 * The quotient is always 32 bits, and simply requires
590 Partial1 = Quotient.Part.Lo * Divisor.Part.Hi;
591 Partial2.Full = (UINT64) Quotient.Part.Lo * Divisor.Part.Lo;
605 Quotient.Part.Lo--;
611 Quotient.Part.Lo--;
631 *OutQuotient = Quotient.Full;