Home | History | Annotate | Download | only in src

Lines Matching refs:exponent

132   \brief   Add two values given by mantissa and exponent.
139 SCHAR a_e, /*!< Exponent of 1st operand a */
141 SCHAR b_e, /*!< Exponent of 2nd operand b */
143 SCHAR *ptrSum_e) /*!< Exponent of result */
153 For the smaller summand, the exponent is adapted and
178 SCHAR a_e, /*!< Exponent of 1st operand a */
180 SCHAR b_e, /*!< Exponent of 2nd operand b */
182 SCHAR *ptrSum_e) /*!< Exponent of result */
192 For the smaller summand, the exponent is adapted and
217 \brief Divide two values given by mantissa and exponent.
228 SCHAR a_e, /*!< Exponent of dividend a */
230 SCHAR b_e, /*!< Exponent of divisor b */
232 SCHAR *ptrResult_e) /*!< Exponent of quotient a/b */
284 SCHAR a_e, /*!< Exponent of dividend a */
286 SCHAR b_e, /*!< Exponent of divisor b */
288 SCHAR *ptrResult_e) /*!< Exponent of quotient a/b */
339 \brief Calculate the squareroot of a number given by mantissa and exponent
342 The base for the exponent is 2. Example: \f$ a = a\_m * 2^{a\_e} \f$<br>
350 SCHAR *exponent, const SCHAR *destScale) {
352 int input_e = (int)*exponent;
361 if (exponent == destScale) {
363 *exponent = result_e;
368 *exponent = *destScale;