Lines Matching defs:Remainder
434 * OutRemainder - Pointer to where the remainder is returned
440 * 32-bit remainder.
470 * The quotient is 64 bits, the remainder is always 32 bits,
501 * OutRemainder - Pointer to where the remainder is returned
519 UINT64_OVERLAY Remainder;
546 Remainder.Part.Hi = 0;
549 * The quotient is 64 bits, the remainder is always 32 bits,
556 Quotient.Part.Lo, Remainder.Part.Lo);
588 * adjustment. The 64-bit remainder must be generated.
594 Remainder.Part.Hi = Partial3.Part.Lo;
595 Remainder.Part.Lo = Partial2.Part.Lo;
606 Remainder.Full -= Divisor.Full;
612 Remainder.Full -= Divisor.Full;
616 Remainder.Full = Remainder.Full - Dividend.Full;
617 Remainder.Part.Hi = (UINT32) -((INT32) Remainder.Part.Hi);
618 Remainder.Part.Lo = (UINT32) -((INT32) Remainder.Part.Lo);
620 if (Remainder.Part.Lo)
622 Remainder.Part.Hi--;
635 *OutRemainder = Remainder.Full;