Computes the number of left shifts required to normalize a 32-bit value, returning a 16-bit result. Returns a shift count of 0 for an input of 0x00000000.
Word16 norm_l(Word32 lsrc)
long ll = 0x20000000;/* .25 */ short result; result = norm_l(ll); // Expected value of result: 1