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

/osnet-11/usr/src/lib/libc/port/threads/
H A Dalloc.c149 * This highbit code is the same as the code in fls_impl().
155 int highbit = 1; local
162 highbit += 32, size >>= 32;
165 highbit += 16, size >>= 16;
167 highbit += 8, size >>= 8;
169 highbit += 4, size >>= 4;
171 highbit += 2, size >>= 2;
173 highbit += 1;
175 ASSERT(highbit > MINSHIFT);
176 return (highbit
[all...]
/osnet-11/usr/src/lib/libumem/common/
H A Dmisc.c106 highbit(ulong_t i) function
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/
H A Dpp.c967 register unsigned int highbit = 8 * sizeof(UV); local
971 while ((diff = (highbit - lowbit) >> 1)) {
975 highbit -= diff;
977 /* we now have baseuv < 2 ** highbit */
978 if (power * highbit <= 8 * sizeof(UV)) {
/osnet-11/usr/src/lib/libzpool/common/
H A Dkernel.c726 highbit(ulong_t i) function
965 _pageshift = highbit(pagesize) - 1;

Completed in 37 milliseconds