Searched refs:uhwi (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.0-release/contrib/gcc/
H A Dsreal.h31 #define uhwi unsigned HOST_WIDE_INT macro
32 #define MAX_HOST_WIDE_INT (((uhwi) 1 << (HOST_BITS_PER_WIDE_INT - 1)) - 1)
34 #define SREAL_MIN_SIG ((uhwi) 1 << (SREAL_PART_BITS - 1))
35 #define SREAL_MAX_SIG (((uhwi) 1 << SREAL_PART_BITS) - 1)
H A Dsreal.c110 x->sig_hi += (uhwi) 1 << (s - 1);
116 x->sig_lo += (uhwi) 1 << (s - 1);
117 if (x->sig_lo & ((uhwi) 1 << SREAL_PART_BITS))
120 x->sig_lo -= (uhwi) 1 << SREAL_PART_BITS;
123 x->sig_lo |= (x->sig_hi & (((uhwi) 1 << s) - 1)) << (SREAL_PART_BITS - s);
127 x->sig += (uhwi) 1 << (s - 1);
172 x->sig_lo = (x->sig_lo << shift) & (((uhwi) 1 << SREAL_PART_BITS) - 1);
189 x->sig_lo += (uhwi) 1 << (shift - 1);
192 x->sig_lo += ((x->sig_hi & (((uhwi) 1 << shift) - 1))
196 if (x->sig_lo & ((uhwi)
[all...]
H A Dstor-layout.c195 unsigned HOST_WIDE_INT uhwi;
200 uhwi = tree_low_cst (size, 1);
201 ui = uhwi;
202 if (uhwi != ui)
193 unsigned HOST_WIDE_INT uhwi; local

Completed in 142 milliseconds