Home | History | Annotate | Download | only in x86

Lines Matching refs:result

112   FIXP_DBL result;
113 /* result =
116 result = (FIXP_DBL)(INT)(sqrt((float)(INT)op) * 46340.9492f);
117 FDK_ASSERT(result >= (FIXP_DBL)0);
118 return result;
128 * \param result_e pointer to return the exponent of the result
129 * \return mantissa of the result
133 float result;
138 result = (float)(1.0 / sqrt(0.5f * (float)(INT)op_m));
139 result = (float)ldexp(frexpf(result, result_e), DFRACT_BITS - 1);
142 FDK_ASSERT(result >= 0);
143 return (FIXP_DBL)(INT)result;
151 * \return mantissa of the result with implizit exponent of 31
155 float result;
160 result = (float)(1.0 / (float)(INT)op);
161 result = frexpf(result, &result_e);
162 result = ldexpf(result, 31 + result_e);
164 return (FIXP_DBL)(INT)result;
171 * the result will be stored into.
172 * \return mantissa of the result
175 float result;
181 result = (float)(1.0 / (float)(INT)op_m);
182 result = ldexpf(frexpf(result, &result_e), DFRACT_BITS - 1);
184 return (FIXP_DBL)(INT)result;
193 * \param count amount of significant bits of the result (starting to the MSB)