Searched refs:High (Results 1 – 1 of 1) sorted by relevance
205 UINTN High, Low; in RtBCDtoDecimal() local207 High = BcdValue >> 4; in RtBCDtoDecimal()208 Low = BcdValue - (High << 4); in RtBCDtoDecimal()210 return ((UINT8)(Low + (High * 10))); in RtBCDtoDecimal()223 UINTN High, Low; in RtDecimaltoBCD() local225 High = DecValue / 10; in RtDecimaltoBCD()226 Low = DecValue - (High * 10); in RtDecimaltoBCD()228 return ((UINT8)(Low + (High << 4))); in RtDecimaltoBCD()