Lines Matching full:full
170 UINT64 Full; member
209 MultiplicandOvl.Full = Multiplicand; in AcpiUtShortMultiply()
227 *OutProduct = Product.Full; in AcpiUtShortMultiply()
258 OperandOvl.Full = Operand; in AcpiUtShortShiftLeft()
273 *OutResult = OperandOvl.Full; in AcpiUtShortShiftLeft()
303 OperandOvl.Full = Operand; in AcpiUtShortShiftRight()
318 *OutResult = OperandOvl.Full; in AcpiUtShortShiftRight()
467 DividendOvl.Full = Dividend; in AcpiUtShortDivide()
483 *OutQuotient = Quotient.Full; in AcpiUtShortDivide()
538 Divisor.Full = InDivisor; in AcpiUtDivide()
539 Dividend.Full = InDividend; in AcpiUtDivide()
562 * 2) The general case where the divisor is a full 64 bits in AcpiUtDivide()
591 Partial2.Full = (UINT64) Quotient.Part.Lo * Divisor.Part.Lo; in AcpiUtDivide()
592 Partial3.Full = (UINT64) Partial2.Part.Hi + Partial1; in AcpiUtDivide()
606 Remainder.Full -= Divisor.Full; in AcpiUtDivide()
612 Remainder.Full -= Divisor.Full; in AcpiUtDivide()
616 Remainder.Full = Remainder.Full - Dividend.Full; in AcpiUtDivide()
631 *OutQuotient = Quotient.Full; in AcpiUtDivide()
635 *OutRemainder = Remainder.Full; in AcpiUtDivide()