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

  /src/sys/external/bsd/acpica/dist/utilities/
utstrsuppt.c 430 UINT64 Product;
435 Status = AcpiUtStrtoulMultiply64 (*AccumulatedValue, Base, &Product);
443 Status = AcpiUtStrtoulAdd64 (Product, AcpiUtAsciiCharToHex (AsciiDigit),
456 * OutProduct - Where the product is returned
458 * RETURN: Status and 64-bit product
472 UINT64 Product;
498 Product = Multiplicand * Base;
502 if ((AcpiGbl_IntegerBitWidth == 32) && (Product > ACPI_UINT32_MAX))
507 *OutProduct = Product;
utmath.c 81 * OutProduct - Pointer to where the product is returned
94 UINT64_OVERLAY Product;
104 * The Product is 64 bits, the carry is always 32 bits,
108 Product.Part.Hi, Carry32);
111 Product.Part.Lo, Carry32);
113 Product.Part.Hi += Carry32;
119 *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 16 milliseconds