lkml.org 
[lkml]   [2006]   [Mar]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: How can I link the kernel with libgcc ?
On Fri, Mar 10, 2006 at 10:03:58AM -0800, Carlos Munoz wrote:
> > ydef[22] = (u_int32_t)(log10((double)(over & 0x0000003f)) /
> > log10(2));

You've got to be kidding. Let's take a good look at that expression:
log10(x)/log10(2) is what? Right, base-2 logarithm of x. Then you cast
it to unsigned, i.e. round it down. In other words, you want to know the
highest bit in (over & 0x3f). Which is to say, (fls(over & 0x3f) - 1).
Sigh...
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2006-03-10 20:21    [W:0.061 / U:0.660 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site