Searched refs:lowbit (Results 1 – 5 of 5) sorted by relevance
93 unsigned int lowbit; in write_all_states() local96 while ((lowbit = states & (1 + ~states)) != 0) { in write_all_states()97 states &= ~lowbit; /* Clear the low bit. */ in write_all_states()98 errmsg(state_name(lowbit)); in write_all_states()
158 extern int lowbit(ulong_t);
519 cpu = (uint_t)(lowbit(set) - 1); \523 smallest = (uint_t)(lowbit(set) - 1); \
273 int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0;274 fraction = (fraction >> shift) | lowbit;
1602 int lowbit; in const_ok_for_arm() local1621 lowbit = (ffs ((int) i) - 1) & ~1; in const_ok_for_arm()1623 if ((i & ~(((unsigned HOST_WIDE_INT) 0xff) << lowbit)) == 0) in const_ok_for_arm()1625 else if (lowbit <= 4 in const_ok_for_arm()