Searched defs:typeWidth (Results 1 - 1 of 1) sorted by relevance

/external/compiler-rt/lib/builtins/
H A Dfp_lib.h216 #define typeWidth (sizeof(rep_t)*CHAR_BIT) macro
217 #define exponentBits (typeWidth - significandBits - 1)
248 *hi = *hi << count | *lo >> (typeWidth - count);
253 if (count < typeWidth) {
254 const bool sticky = *lo << (typeWidth - count);
255 *lo = *hi << (typeWidth - count) | *lo >> count | sticky;
258 else if (count < 2*typeWidth) {
259 const bool sticky = *hi << (2*typeWidth - count) | *lo;
260 *lo = *hi >> (count - typeWidth) | sticky;

Completed in 511 milliseconds