HomeSort by relevance Sort by last modified time
    Searched refs:typeWidth (Results 1 - 6 of 6) sorted by null

  /external/compiler-rt/lib/
fp_lib.h 91 #define typeWidth (sizeof(rep_t)*CHAR_BIT)
92 #define exponentBits (typeWidth - significandBits - 1)
123 *hi = *hi << count | *lo >> (typeWidth - count);
128 if (count < typeWidth) {
129 const bool sticky = *lo << (typeWidth - count);
130 *lo = *hi << (typeWidth - count) | *lo >> count | sticky;
133 else if (count < 2*typeWidth) {
134 const bool sticky = *hi << (2*typeWidth - count) | *lo;
135 *lo = *hi >> (count - typeWidth) | sticky;
floatunsisf.c 41 rep_t round = (rep_t)a << (typeWidth - shift);
adddf3.c 90 if (align < typeWidth) {
91 const bool sticky = bSignificand << (typeWidth - align);
132 const bool sticky = aSignificand << (typeWidth - shift);
addsf3.c 89 if (align < typeWidth) {
90 const bool sticky = bSignificand << (typeWidth - align);
131 const bool sticky = aSignificand << (typeWidth - shift);
floatsisf.c 49 rep_t round = (rep_t)a << (typeWidth - shift);
muldf3.c 100 if (shift >= typeWidth) return fromRep(productSign);

Completed in 38 milliseconds