HomeSort by: relevance | last modified time | path
    Searched defs:Remainder (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/executer/
exregion.c 195 UINT32 Remainder;
238 (void) AcpiUtShortDivide ((UINT64) Address, Length, NULL, &Remainder);
239 if (Remainder != 0)
exutils.c 535 UINT32 Remainder;
546 (void) AcpiUtShortDivide (Value, 10, &Value, &Remainder);
547 OutString[Count-1] = (char) ('0' + Remainder);\
exconvrt.c 438 UINT32 Remainder;
471 Remainder = 0;
480 (void) AcpiUtShortDivide (Digit, 10, &Digit, &Remainder);
485 if (Remainder != 0)
492 String[k] = (UINT8) (ACPI_ASCII_ZERO + Remainder);
  /src/sys/external/bsd/acpica/dist/utilities/
utmath.c 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
    [all...]

Completed in 15 milliseconds