Home
last modified time | relevance | path

Searched refs:fractype (Results 1 – 5 of 5) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/libgcc/
Dfp-bit.c121 const fp_number_type __thenan_sf = { CLASS_SNAN, 0, 0, {(fractype) 0} };
123 const fp_number_type __thenan_df = { CLASS_SNAN, 0, 0, {(fractype) 0} };
125 const fp_number_type __thenan_tf = { CLASS_SNAN, 0, 0, {(fractype) 0} };
201 fractype fraction = src->fraction.ll; /* wasn't unsigned before? */
264 int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0;
390 dst.value_raw = ((fractype) high << HALFSHIFT) | low;
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);
428 fractype fraction;
[all …]
Dfp-bit.h173 typedef UTItype fractype; typedef
195 typedef USItype fractype; typedef
218 typedef UDItype fractype; typedef
291 #define LSHIFT(a, s) { a = (a >> s) | !!(a & (((fractype) 1 << s) - 1)); }
307 #define IMPLICIT_1 ((fractype)1<<(FRACBITS+NGARDS))
308 #define IMPLICIT_2 ((fractype)1<<(FRACBITS+1+NGARDS))
335 fractype ll;
343 fractype value_raw;
358 fractype fraction:FRACBITS __attribute__ ((packed));
364 fractype fraction:FRACBITS __attribute__ ((packed));
/netbsd/src/external/gpl3/gdb/dist/sim/ppc/
Ddp-bit.c108 typedef USItype fractype; typedef
128 typedef UDItype fractype; typedef
242 fractype ll;
258 fractype fraction:FRACBITS ATTRIBUTE_PACKED;
260 fractype fraction:FRACBITS ATTRIBUTE_PACKED;
324 fractype fraction = src->fraction.ll; /* wasn't unsigned before? */ in pack_d()
412 fractype fraction = src->bits.fraction; in unpack_d()
484 fractype a_fraction; in _fpadd_parts()
485 fractype b_fraction; in _fpadd_parts()
647 fractype low = 0; in _fpmul_parts()
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/
DChangeLog-20012119 * config/fp-bit.c (pack_d): Cast to ``fractype'' for long long
DChangeLog-200334659 (usi_to_float): Cast constants to be shifted to fractype