Searched refs:Remainder (Results 1 – 10 of 10) sorted by relevance
/acpica-3.7.0/source/components/utilities/ |
D | utmath.c | 519 UINT64_OVERLAY Remainder; in AcpiUtDivide() local 546 Remainder.Part.Hi = 0; in AcpiUtDivide() 556 Quotient.Part.Lo, Remainder.Part.Lo); in AcpiUtDivide() 594 Remainder.Part.Hi = Partial3.Part.Lo; in AcpiUtDivide() 595 Remainder.Part.Lo = Partial2.Part.Lo; 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() 617 Remainder.Part.Hi = (UINT32) -((INT32) Remainder.Part.Hi); in AcpiUtDivide() 618 Remainder.Part.Lo = (UINT32) -((INT32) Remainder.Part.Lo); in AcpiUtDivide() [all …]
|
/acpica-3.7.0/source/components/executer/ |
D | exconvrt.c | 435 UINT32 Remainder; in AcpiExConvertToAscii() local 468 Remainder = 0; in AcpiExConvertToAscii() 477 (void) AcpiUtShortDivide (Digit, 10, &Digit, &Remainder); in AcpiExConvertToAscii() 482 if (Remainder != 0) in AcpiExConvertToAscii() 489 String[k] = (UINT8) (ACPI_ASCII_ZERO + Remainder); in AcpiExConvertToAscii()
|
D | exutils.c | 535 UINT32 Remainder; in AcpiExIntegerToString() local 546 (void) AcpiUtShortDivide (Value, 10, &Value, &Remainder); in AcpiExIntegerToString() 547 OutString[Count-1] = (char) ('0' + Remainder);\ in AcpiExIntegerToString()
|
D | exregion.c | 196 UINT32 Remainder; in AcpiExSystemMemorySpaceHandler() local 239 (void) AcpiUtShortDivide ((UINT64) Address, Length, NULL, &Remainder); in AcpiExSystemMemorySpaceHandler() 240 if (Remainder != 0) in AcpiExSystemMemorySpaceHandler()
|
/acpica-3.7.0/source/include/platform/ |
D | acefiex.h | 1134 UINTN *Remainder);
|
/acpica-3.7.0/tests/aslts/doc/docs/ |
D | TestOfOperands | 611 // * 9 - Divide (int, int, Remainder, Result) => Integer
|
/acpica-3.7.0/tests/aslts/src/runtime/common/conversion/ |
D | rtest.asl | 1557 /* Divide (int, int, Remainder, Result) => Integer */
|
D | otest.asl | 3655 /* Divide (int, int, Remainder, Result) => Integer */
|
/acpica-3.7.0/tests/aslts/src/runtime/collections/complex/result/tests/roptional/ |
D | roptional.asl | 63 = Divide (int, int, Remainder, Result) => Integer
|
/acpica-3.7.0/tests/misc/ |
D | grammar.asl | 6302 Local4, // Remainder
|