Home
last modified time | relevance | path

Searched refs:High (Results 1 – 1 of 1) sorted by relevance

/DragonStub/lib/runtime/
H A Drtstr.c205 UINTN High, Low; in RtBCDtoDecimal() local
207 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() local
225 High = DecValue / 10; in RtDecimaltoBCD()
226 Low = DecValue - (High * 10); in RtDecimaltoBCD()
228 return ((UINT8)(Low + (High << 4))); in RtDecimaltoBCD()