Home
last modified time | relevance | path

Searched refs:lowbit (Results 1 – 5 of 5) sorted by relevance

/freebsd-9-stable/contrib/libarchive/libarchive/
Darchive_check_magic.c93 unsigned int lowbit; in write_all_states() local
96 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()
/freebsd-9-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
Dbitmap.h158 extern int lowbit(ulong_t);
Dcpuvar.h519 cpu = (uint_t)(lowbit(set) - 1); \
523 smallest = (uint_t)(lowbit(set) - 1); \
/freebsd-9-stable/contrib/gcc/config/
Dfp-bit.c273 int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0;
274 fraction = (fraction >> shift) | lowbit;
/freebsd-9-stable/contrib/gcc/config/arm/
Darm.c1602 int lowbit; in const_ok_for_arm() local
1621 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()