Searched defs:highbit (Results 1 - 6 of 6) sorted by relevance

/illumos-gate/usr/src/uts/sparc/os/
H A Dbitmap_arch.c75 highbit(ulong_t i) function
/illumos-gate/usr/src/uts/intel/asm/
H A Dbitmap.h49 highbit(ulong_t i) function
/illumos-gate/usr/src/lib/libumem/common/
H A Dmisc.c106 highbit(ulong_t i) function
/illumos-gate/usr/src/lib/libc/port/threads/
H A Dalloc.c150 * This highbit code is the same as the code in fls_impl().
156 int highbit = 1; local
163 highbit += 32, size >>= 32;
166 highbit += 16, size >>= 16;
168 highbit += 8, size >>= 8;
170 highbit += 4, size >>= 4;
172 highbit += 2, size >>= 2;
174 highbit += 1;
176 ASSERT(highbit > MINSHIFT);
177 return (highbit
[all...]
/illumos-gate/usr/src/uts/common/avs/ns/sdbc/
H A Dsd_conf.c712 int highbit = -1; local
716 if (highbit >= 0) next_high = 1;
717 highbit = lowbit;
718 newblk &= ~(1 << highbit);
721 if (highbit <= 0) {
727 if (next_high) highbit++;
729 return (highbit);
/illumos-gate/usr/src/uts/intel/ia32/ml/
H A Di86_subr.s2835 highbit(ulong_t i)
2847 ENTRY(highbit) function
2855 SET_SIZE(highbit)
2859 ENTRY(highbit) function
2867 SET_SIZE(highbit)
2871 jz highbit

Completed in 65 milliseconds