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

  /external/compiler-rt/lib/builtins/
fp_lib.h 216 #define typeWidth (sizeof(rep_t)*CHAR_BIT)
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;
floatsisf.c 50 rep_t round = (rep_t)a << (typeWidth - shift);
floatunsisf.c 42 rep_t round = (rep_t)a << (typeWidth - shift);

Completed in 67 milliseconds