HomeSort by: relevance | last modified time | path
    Searched refs:FRACBITS (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc/dist/libgcc/
fp-bit.h 155 # define FRACBITS 112
165 # define FRACBITS 105
186 # define FRACBITS 23
209 # define FRACBITS 52
307 #define IMPLICIT_1 ((fractype)1<<(FRACBITS+NGARDS))
308 #define IMPLICIT_2 ((fractype)1<<(FRACBITS+1+NGARDS))
358 fractype fraction:FRACBITS __attribute__ ((packed));
364 fractype fraction:FRACBITS __attribute__ ((packed));
fp-bit.c 328 high = (fraction >> (FRACBITS - HALFFRACBITS)) & (unity - 1);
393 dst.value_raw = fraction & ((((fractype)1) << FRACBITS) - (fractype)1);
394 dst.value_raw |= ((fractype) (exp & ((1 << EXPBITS) - 1))) << FRACBITS;
395 dst.value_raw |= ((fractype) (sign & 1)) << (FRACBITS | EXPBITS);
455 fraction <<= FRACBITS - HALFFRACBITS;
471 shift = (FRACBITS - HALFFRACBITS) - (exp - lowexp);
485 fraction = (((fractype) 1 << FRACBITS) - xlow) << 1;
491 fraction = src->value_raw & ((((fractype)1) << FRACBITS) - 1);
492 exp = ((int)(src->value_raw >> FRACBITS)) & ((1 << EXPBITS) - 1);
493 sign = ((int)(src->value_raw >> (FRACBITS + EXPBITS))) & 1
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/
fp-bit.h 155 # define FRACBITS 112
165 # define FRACBITS 105
186 # define FRACBITS 23
209 # define FRACBITS 52
307 #define IMPLICIT_1 ((fractype)1<<(FRACBITS+NGARDS))
308 #define IMPLICIT_2 ((fractype)1<<(FRACBITS+1+NGARDS))
358 fractype fraction:FRACBITS __attribute__ ((packed));
364 fractype fraction:FRACBITS __attribute__ ((packed));
fp-bit.c 328 high = (fraction >> (FRACBITS - HALFFRACBITS)) & (unity - 1);
393 dst.value_raw = fraction & ((((fractype)1) << FRACBITS) - (fractype)1);
394 dst.value_raw |= ((fractype) (exp & ((1 << EXPBITS) - 1))) << FRACBITS;
395 dst.value_raw |= ((fractype) (sign & 1)) << (FRACBITS | EXPBITS);
455 fraction <<= FRACBITS - HALFFRACBITS;
471 shift = (FRACBITS - HALFFRACBITS) - (exp - lowexp);
485 fraction = (((fractype) 1 << FRACBITS) - xlow) << 1;
491 fraction = src->value_raw & ((((fractype)1) << FRACBITS) - 1);
492 exp = ((int)(src->value_raw >> FRACBITS)) & ((1 << EXPBITS) - 1);
493 sign = ((int)(src->value_raw >> (FRACBITS + EXPBITS))) & 1
    [all...]
  /src/external/gpl3/gdb/dist/sim/ppc/
dp-bit.c 102 # define FRACBITS 23
122 # define FRACBITS 52
214 #define IMPLICIT_1 (1LL<<(FRACBITS+NGARDS))
215 #define IMPLICIT_2 (1LL<<(FRACBITS+1+NGARDS))
258 fractype fraction:FRACBITS ATTRIBUTE_PACKED;
260 fractype fraction:FRACBITS ATTRIBUTE_PACKED;
1142 in.normal_exp = FRACBITS + NGARDS;
1156 while (in.fraction.ll < (1LL << (FRACBITS + NGARDS)))
1184 tmp = a.fraction.ll >> ((FRACBITS + NGARDS) - a.normal_exp);
1216 else if (a.normal_exp > (FRACBITS + NGARDS)
    [all...]
  /src/external/gpl3/gdb.old/dist/sim/ppc/
dp-bit.c 102 # define FRACBITS 23
122 # define FRACBITS 52
214 #define IMPLICIT_1 (1LL<<(FRACBITS+NGARDS))
215 #define IMPLICIT_2 (1LL<<(FRACBITS+1+NGARDS))
258 fractype fraction:FRACBITS ATTRIBUTE_PACKED;
260 fractype fraction:FRACBITS ATTRIBUTE_PACKED;
1142 in.normal_exp = FRACBITS + NGARDS;
1156 while (in.fraction.ll < (1LL << (FRACBITS + NGARDS)))
1184 tmp = a.fraction.ll >> ((FRACBITS + NGARDS) - a.normal_exp);
1216 else if (a.normal_exp > (FRACBITS + NGARDS)
    [all...]

Completed in 29 milliseconds