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 87 UINT32 Remainder;
130 (void) AcpiUtShortDivide ((UINT64) Address, Length, NULL, &Remainder);
131 if (Remainder != 0)
exutils.c 427 UINT32 Remainder;
438 (void) AcpiUtShortDivide (Value, 10, &Value, &Remainder);
439 OutString[Count-1] = (char) ('0' + Remainder);\
exconvrt.c 330 UINT32 Remainder;
363 Remainder = 0;
372 (void) AcpiUtShortDivide (Digit, 10, &Digit, &Remainder);
377 if (Remainder != 0)
384 String[k] = (UINT8) (ACPI_ASCII_ZERO + Remainder);
  /src/sys/external/bsd/acpica/dist/utilities/
utmath.c 326 * OutRemainder - Pointer to where the remainder is returned
332 * 32-bit remainder.
362 * The quotient is 64 bits, the remainder is always 32 bits,
393 * OutRemainder - Pointer to where the remainder is returned
411 UINT64_OVERLAY Remainder;
438 Remainder.Part.Hi = 0;
441 * The quotient is 64 bits, the remainder is always 32 bits,
448 Quotient.Part.Lo, Remainder.Part.Lo);
480 * adjustment. The 64-bit remainder must be generated.
486 Remainder.Part.Hi = Partial3.Part.Lo
    [all...]

Completed in 20 milliseconds