HomeSort by: relevance | last modified time | path
    Searched refs:Product (Results 1 - 7 of 7) 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/gpl2/dts/dist/arch/arm/boot/dts/
imx35-pdk.dts 10 model = "Freescale i.MX35 Product Development Kit";
armada-370-seagate-nas-4bay.dts 13 * Product name : Seagate NAS 4-Bay
16 * Material desc (product spec) : STCUxxxxxxx
imx27-pdk.dts 9 model = "Freescale i.MX27 Product Development Kit";
imx25-pdk.dts 11 model = "Freescale i.MX25 Product Development Kit";
  /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