Home | History | Annotate | Download | only in SmbiosMiscDxe

Lines Matching defs:Exponent

25   This function returns the value & exponent to Base2 for a given

28 @param Value The hex value which is to be converted into value-exponent form
29 @param Exponent The exponent out of the conversion
31 @retval EFI_SUCCESS All parameters were valid and *Value & *Exponent have been set.
38 OUT UINTN *Exponent
41 if ((Value == NULL) || (Exponent == NULL)) {
47 (*Exponent)++;
69 UINT16 Exponent;
72 Exponent = Base2Data->Exponent;
73 Exponent -= 16;
74 Value <<= Exponent;
132 ForType0InputData->BiosPhysicalDeviceSize.Exponent = (UINT16)BiosPhysicalSizeExponent;