Home | History | Annotate | Download | only in src

Lines Matching defs:exp

158     Word16 exp, i, a, tmp;
169 exp = norm_l (L_x);
170 L_x = L_shl (L_x, exp); // L_x is normalize
172 exp = sub (30, exp);
174 if ((exp & 1) == 0) // If exponent even -> shift right
178 exp = shr (exp, 1);
179 exp = add (exp, 1);
193 L_y = L_shr (L_y, exp); // denormalization
226 Word16 exp;
238 exp = norm_l(L_x);
239 L_x <<= exp; /* L_x is normalize */
241 exp = 30 - exp;
243 if ((exp & 1) == 0) /* If exponent even -> shift right */
247 exp >>= 1;
248 exp += 1;
266 L_y >>= exp; /* denormalization, exp always 0< exp < 31 */