// float_exponent(). // General includes. #include "base/cl_sysdep.h" // Specification. #include "cln/dfloat.h" // Implementation. #include "float/dfloat/cl_DF.h" namespace cln { CL_INLINE sintE CL_INLINE_DECL(float_exponent) (const cl_DF& x) { var uintL uexp = DF_uexp(TheDfloat(x)->dfloat_value_semhi); if (uexp==0) { return 0; } return (sintL)(uexp - DF_exp_mid); } } // namespace cln