The question is
Are there any other (and/or faster) implementations of a basic 2log?
Applications
The log2(int) and
inline int fast_log2(register double x) { return (reinterpret_cast(x) >> 52) - 1023; };