Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/StdLib/LibC/Main/Arm/
Dfp_lib.h228 #define typeWidth (sizeof(rep_t)*CHAR_BIT) macro
229 #define exponentBits (typeWidth - significandBits - 1)
260 *hi = *hi << count | *lo >> (typeWidth - count); in wideLeftShift()
265 if (count < typeWidth) { in wideRightShiftWithSticky()
266 const bool sticky = *lo << (typeWidth - count); in wideRightShiftWithSticky()
267 *lo = *hi << (typeWidth - count) | *lo >> count | sticky; in wideRightShiftWithSticky()
270 else if (count < 2*typeWidth) { in wideRightShiftWithSticky()
271 const bool sticky = *hi << (2*typeWidth - count) | *lo; in wideRightShiftWithSticky()
272 *lo = *hi >> (count - typeWidth) | sticky; in wideRightShiftWithSticky()