Home | History | Annotate | Download | only in gcc

Lines Matching defs:high

60   static double_int from_pair (HOST_WIDE_INT high, unsigned HOST_WIDE_INT low);
196 HOST_WIDE_INT high;
212 r.high = cst < 0 ? -1 : 0;
235 r.high = 0;
240 double_int::from_pair (HOST_WIDE_INT high, unsigned HOST_WIDE_INT low)
244 r.high = high;
306 return high == 0;
318 result.high = ~high;
329 result.high = high | b.high;
340 result.high = high & b.high;
351 result.high = high & ~b.high;
362 result.high = high ^ b.high;
379 return low == 0 && high == 0;
387 return low == 1 && high == 0;
395 return low == ALL_ONES && high == -1;
403 return high < 0;
411 return low == cst2.low && high == cst2.high;
419 return low != cst2.low || high != cst2.high;
427 return popcount_hwi (high) + popcount_hwi (low);
464 if ((x.high == 0 && scratch[0] >= 0) || (x.high == -1 && scratch[0] < 0))
466 scratch[1] = x.high;