Searched refs:FRACBITS (Results 1 - 2 of 2) sorted by relevance

/freebsd-11.0-release/contrib/gcc/config/
H A Dfp-bit.h156 # define FRACBITS 112 macro
166 # define FRACBITS 105 macro
187 # define FRACBITS 23 macro
210 # define FRACBITS 52 macro
342 #define IMPLICIT_1 ((fractype)1<<(FRACBITS+NGARDS))
343 #define IMPLICIT_2 ((fractype)1<<(FRACBITS+1+NGARDS))
391 fractype fraction:FRACBITS __attribute__ ((packed));
403 fractype fraction:FRACBITS __attribute__ ((packed));
409 fractype fraction:FRACBITS __attribute__ ((packed));
H A Dfp-bit.c219 fraction = ((fractype) 1 << FRACBITS) - 1;
331 fraction = ((fractype) 1 << FRACBITS) - 1;
353 high = (fraction >> (FRACBITS - HALFFRACBITS)) & (unity - 1);
418 dst.value_raw = fraction & ((((fractype)1) << FRACBITS) - (fractype)1);
419 dst.value_raw |= ((fractype) (exp & ((1 << EXPBITS) - 1))) << FRACBITS;
420 dst.value_raw |= ((fractype) (sign & 1)) << (FRACBITS | EXPBITS);
486 fraction <<= FRACBITS - HALFFRACBITS;
502 shift = (FRACBITS - HALFFRACBITS) - (exp - lowexp);
516 fraction = (((fractype) 1 << FRACBITS) - xlow) << 1;
522 fraction = src->value_raw & ((((fractype)1) << FRACBITS)
[all...]

Completed in 75 milliseconds