Lines Matching refs:a_e
101 * \param a_e exponent of the first input value.
104 * \return non-zero if (a_m*2^a_e) < (b_m*2^b_e), 0 otherwise
106 FDK_INLINE INT fIsLessThan(FIXP_DBL a_m, INT a_e, FIXP_DBL b_m, INT b_e)
108 if (a_e > b_e) {
109 return (b_m >> fMin(a_e-b_e, DFRACT_BITS-1) > a_m);
111 return (a_m >> fMin(b_e-a_e, DFRACT_BITS-1) < b_m);
115 FDK_INLINE INT fIsLessThan(FIXP_SGL a_m, INT a_e, FIXP_SGL b_m, INT b_e)
117 if (a_e > b_e) {
118 return (b_m >> fMin(a_e-b_e, FRACT_BITS-1) > a_m);
120 return (a_m >> fMin(b_e-a_e, FRACT_BITS-1) < b_m);