c++ Programming Glossary: fnorm
Portability of binary serialization of double/float type in C++ http://stackoverflow.com/questions/4733147/portability-of-binary-serialization-of-double-float-type-in-c long double f unsigned bits unsigned expbits long double fnorm int shift long long sign exp significand unsigned significandbits.. the way check sign and begin normalization if f 0 sign 1 fnorm f else sign 0 fnorm f get the normalized form of f and track.. and begin normalization if f 0 sign 1 fnorm f else sign 0 fnorm f get the normalized form of f and track the exponent shift..
|