Searched refs:fractype (Results 1 – 4 of 4) sorted by relevance
| /NextBSD/contrib/gcc/config/ |
| HD | fp-bit.c | 128 const fp_number_type __thenan_sf = { CLASS_SNAN, 0, 0, {(fractype) 0} }; 130 const fp_number_type __thenan_df = { CLASS_SNAN, 0, 0, {(fractype) 0} }; 132 const fp_number_type __thenan_tf = { CLASS_SNAN, 0, 0, {(fractype) 0} }; 209 fractype fraction = src->fraction.ll; /* wasn't unsigned before? */ 219 fraction = ((fractype) 1 << FRACBITS) - 1; 273 int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0; 331 fraction = ((fractype) 1 << FRACBITS) - 1; 415 dst.value_raw = ((fractype) high << HALFSHIFT) | low; 418 dst.value_raw = fraction & ((((fractype)1) << FRACBITS) - (fractype)1); 419 dst.value_raw |= ((fractype) (exp & ((1 << EXPBITS) - 1))) << FRACBITS; [all …]
|
| HD | fp-bit.h | 174 typedef UTItype fractype; typedef 196 typedef USItype fractype; typedef 219 typedef UDItype fractype; typedef 326 #define LSHIFT(a, s) { a = (a >> s) | !!(a & (((fractype) 1 << s) - 1)); } 342 #define IMPLICIT_1 ((fractype)1<<(FRACBITS+NGARDS)) 343 #define IMPLICIT_2 ((fractype)1<<(FRACBITS+1+NGARDS)) 370 fractype ll; 378 fractype value_raw; 391 fractype fraction:FRACBITS __attribute__ ((packed)); 403 fractype fraction:FRACBITS __attribute__ ((packed)); [all …]
|
| /NextBSD/contrib/gcc/ |
| HD | ChangeLog-2001 | 2119 * config/fp-bit.c (pack_d): Cast to ``fractype'' for long long
|
| HD | ChangeLog-2003 | 34659 (usi_to_float): Cast constants to be shifted to fractype
|