Searched refs:typeWidth (Results 1 – 5 of 5) sorted by relevance
216 #define typeWidth (sizeof(rep_t)*CHAR_BIT) macro217 #define exponentBits (typeWidth - significandBits - 1)248 *hi = *hi << count | *lo >> (typeWidth - count); in wideLeftShift()253 if (count < typeWidth) { in wideRightShiftWithSticky()254 const bool sticky = *lo << (typeWidth - count); in wideRightShiftWithSticky()255 *lo = *hi << (typeWidth - count) | *lo >> count | sticky; in wideRightShiftWithSticky()258 else if (count < 2*typeWidth) { in wideRightShiftWithSticky()259 const bool sticky = *hi << (2*typeWidth - count) | *lo; in wideRightShiftWithSticky()260 *lo = *hi >> (count - typeWidth) | sticky; in wideRightShiftWithSticky()
85 if (align < typeWidth) {86 const bool sticky = bSignificand << (typeWidth - align);124 const bool sticky = aSignificand << (typeWidth - shift);
42 rep_t round = (rep_t)a << (typeWidth - shift); in ARM_EABI_FNALIAS()
50 rep_t round = (rep_t)a << (typeWidth - shift); in ARM_EABI_FNALIAS()
95 if (shift >= typeWidth) return fromRep(productSign);