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

  /src/sys/external/bsd/acpica/dist/utilities/
utstrsuppt.c 538 UINT64 Product;
543 Status = AcpiUtStrtoulMultiply64 (*AccumulatedValue, Base, &Product);
551 Status = AcpiUtStrtoulAdd64 (Product, AcpiUtAsciiCharToHex (AsciiDigit),
564 * OutProduct - Where the product is returned
566 * RETURN: Status and 64-bit product
580 UINT64 Product;
606 Product = Multiplicand * Base;
610 if ((AcpiGbl_IntegerBitWidth == 32) && (Product > ACPI_UINT32_MAX))
615 *OutProduct = Product;
utmath.c 189 * OutProduct - Pointer to where the product is returned
202 UINT64_OVERLAY Product;
212 * The Product is 64 bits, the carry is always 32 bits,
216 Product.Part.Hi, Carry32);
219 Product.Part.Lo, Carry32);
221 Product.Part.Hi += Carry32;
227 *OutProduct = Product.Full;
  /src/sys/external/bsd/drm2/dist/drm/amd/powerplay/hwmgr/
ppevvmath.h 63 static fInt fMultiply (fInt, fInt); /* Returns the product of two fInt numbers */
336 fInt Product;
347 Product.full = X.full * Y.full;
348 return Product
353 Product.full = (int)tempProduct; /*The int64_t will lose the leading 16 bits that were part of the integer portion */
355 return Product;

Completed in 15 milliseconds