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

/freebsd-10-stable/contrib/libarchive/libarchive/
H A Darchive_check_magic.c106 unsigned int lowbit; local
111 while ((lowbit = states & (1 + ~states)) != 0) {
112 states &= ~lowbit; /* Clear the low bit. */
113 strcat(buff, state_name(lowbit));
/freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dbitmap.h158 extern int lowbit(ulong_t);
H A Dcpuvar.h512 cpu = (uint_t)(lowbit(set) - 1); \
516 smallest = (uint_t)(lowbit(set) - 1); \
/freebsd-10-stable/contrib/gcc/config/
H A Dfp-bit.c273 int lowbit = (fraction & (((fractype)1 << shift) - 1)) ? 1 : 0;
274 fraction = (fraction >> shift) | lowbit;
/freebsd-10-stable/contrib/gcc/config/arm/
H A Darm.c1609 int lowbit;
1628 lowbit = (ffs ((int) i) - 1) & ~1;
1630 if ((i & ~(((unsigned HOST_WIDE_INT) 0xff) << lowbit)) == 0)
1632 else if (lowbit <= 4
1604 int lowbit; local

Completed in 215 milliseconds