Home | History | Annotate | Download | only in src

Lines Matching refs:exp

49      int16 exp                   (i)   : exponent: x = round(x << exp)
118 int16 exp /* (i) : exponent: x = round(x << exp) */
129 if (exp > 0)
133 L_tmp = shl_int32(((int32)x[i] << 16), exp); /* saturation can occur here */
137 else if (exp < 0)
139 exp = -exp;
140 exp &= 0xf;
141 tmp = (int16)(0x00008000 >> (16 - exp));
146 *(pt_x) = add_int16(*(pt_x), tmp) >> exp;
148 *(pt_x) = add_int16(*(pt_x), tmp) >> exp;