Searched refs:intlog2 (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/dvb/dvb-core/
H A Ddvb_math.h31 * intlog2(value) = intlog2(value * 2^x) - x * 2^24
33 * example: intlog2(8) will give 3 << 24 = 3 * 2^24
34 * example: intlog2(9) will give 3 << 24 + ... = 3.16... * 2^24
35 * example: intlog2(1.5) = intlog2(3) - 2^24 = 0.584... * 2^24
40 extern unsigned int intlog2(u32 value);
51 * look at intlog2 for similar examples
H A Ddvb_math.c63 unsigned int intlog2(u32 value) function
121 EXPORT_SYMBOL(intlog2); variable
136 log = intlog2(value);

Completed in 109 milliseconds