Lines Matching defs:Lo
163 UINT32 Lo;
218 ACPI_MUL_64_BY_32 (0, MultiplicandOvl.Part.Lo, Multiplier,
219 Product.Part.Lo, Carry32);
262 OperandOvl.Part.Hi = OperandOvl.Part.Lo;
263 OperandOvl.Part.Lo = 0;
267 OperandOvl.Part.Lo, Count);
307 OperandOvl.Part.Lo = OperandOvl.Part.Hi;
312 OperandOvl.Part.Lo, Count);
476 ACPI_DIV_64_BY_32 (Remainder32, DividendOvl.Part.Lo, Divisor,
477 Quotient.Part.Lo, Remainder32);
552 ACPI_DIV_64_BY_32 (0, Dividend.Part.Hi, Divisor.Part.Lo,
555 ACPI_DIV_64_BY_32 (Partial1, Dividend.Part.Lo, Divisor.Part.Lo,
556 Quotient.Part.Lo, Remainder.Part.Lo);
574 NormalizedDivisor.Part.Hi, NormalizedDivisor.Part.Lo);
576 NormalizedDividend.Part.Hi, NormalizedDividend.Part.Lo);
583 NormalizedDividend.Part.Hi, NormalizedDividend.Part.Lo,
584 NormalizedDivisor.Part.Lo, Quotient.Part.Lo, Partial1);
590 Partial1 = Quotient.Part.Lo * Divisor.Part.Hi;
591 Partial2.Full = (UINT64) Quotient.Part.Lo * Divisor.Part.Lo;
594 Remainder.Part.Hi = Partial3.Part.Lo;
595 Remainder.Part.Lo = Partial2.Part.Lo;
599 if (Partial3.Part.Lo >= Dividend.Part.Hi)
601 if (Partial3.Part.Lo == Dividend.Part.Hi)
603 if (Partial2.Part.Lo > Dividend.Part.Lo)
605 Quotient.Part.Lo--;
611 Quotient.Part.Lo--;
618 Remainder.Part.Lo = (UINT32) -((INT32) Remainder.Part.Lo);
620 if (Remainder.Part.Lo)