Home
last modified time | relevance | path

Searched refs:sig_lo (Results 1 – 3 of 3) sorted by relevance

/freebsd-12-stable/contrib/gcc/
Dsreal.c71 x->sig_hi, x->sig_lo, x->exp); in dump_sreal()
83 r->sig_lo = a->sig_lo; in copy()
111 x->sig_lo = x->sig_hi >> s; in shift_right()
116 x->sig_lo += (uhwi) 1 << (s - 1); in shift_right()
117 if (x->sig_lo & ((uhwi) 1 << SREAL_PART_BITS)) in shift_right()
120 x->sig_lo -= (uhwi) 1 << SREAL_PART_BITS; in shift_right()
122 x->sig_lo >>= s; in shift_right()
123 x->sig_lo |= (x->sig_hi & (((uhwi) 1 << s) - 1)) << (SREAL_PART_BITS - s); in shift_right()
141 if (x->sig_lo == 0 && x->sig_hi == 0) in normalize()
150 x->sig_hi = x->sig_lo; in normalize()
[all …]
Dreal.c2824 unsigned long image_lo, image_hi, sig_lo, sig_hi, exp; in encode_ieee_double() local
2833 sig_lo = (sig_hi >> (64 - 53)) & 0xffffffff; in encode_ieee_double()
2839 sig_lo = r->sig[SIGSZ-2]; in encode_ieee_double()
2840 sig_lo = (sig_hi << 21) | (sig_lo >> 11); in encode_ieee_double()
2863 sig_hi = sig_lo = 0; in encode_ieee_double()
2875 sig_lo = 0xffffffff; in encode_ieee_double()
2877 else if (sig_hi == 0 && sig_lo == 0) in encode_ieee_double()
2882 image_lo = sig_lo; in encode_ieee_double()
2901 image_lo = sig_lo; in encode_ieee_double()
3050 unsigned long image_hi, sig_hi, sig_lo; in encode_ieee_extended() local
[all …]
Dsreal.h48 unsigned HOST_WIDE_INT sig_lo; /* Significant (lower part). */ member