Lines Matching full:full
22 u64 full; member
56 multiplicand_ovl.full = multiplicand; in acpi_ut_short_multiply()
73 *out_product = product.full; in acpi_ut_short_multiply()
97 operand_ovl.full = operand; in acpi_ut_short_shift_left()
110 *out_result = operand_ovl.full; in acpi_ut_short_shift_left()
134 operand_ovl.full = operand; in acpi_ut_short_shift_right()
147 *out_result = operand_ovl.full; in acpi_ut_short_shift_right()
272 dividend_ovl.full = dividend; in acpi_ut_short_divide()
287 *out_quotient = quotient.full; in acpi_ut_short_divide()
334 divisor.full = in_divisor; in acpi_ut_divide()
335 dividend.full = in_dividend; in acpi_ut_divide()
356 * 2) The general case where the divisor is a full 64 bits in acpi_ut_divide()
385 partial2.full = (u64) quotient.part.lo * divisor.part.lo; in acpi_ut_divide()
386 partial3.full = (u64) partial2.part.hi + partial1; in acpi_ut_divide()
396 remainder.full -= divisor.full; in acpi_ut_divide()
400 remainder.full -= divisor.full; in acpi_ut_divide()
404 remainder.full = remainder.full - dividend.full; in acpi_ut_divide()
417 *out_quotient = quotient.full; in acpi_ut_divide()
420 *out_remainder = remainder.full; in acpi_ut_divide()