HomeSort by relevance Sort by last modified time
    Searched defs:exp (Results 1 - 25 of 213) sorted by null

1 2 3 4 5 6 7 8 9

  /external/bison/doc/figs/
example.y 2 exp: a ";" | b "."; label
  /external/e2fsprogs/intl/
plural.y 35 #include "plural-exp.h"
52 struct expression *exp;
146 %type <exp> exp
150 start: exp
158 exp: exp '?' exp ':' exp label
162 | exp '|' ex
    [all...]
  /system/core/sh/
arith.y 2 /* $NetBSD: arith.y,v 1.17 2003/09/17 17:33:36 jmmv Exp $ */
41 __RCSID("$NetBSD: arith.y,v 1.17 2003/09/17 17:33:36 jmmv Exp $");
76 exp: expr { label
134 * The exp(1) builtin.
179 printf("%d\n", exp(argv[1]));
184 fprintf(stderr, "exp: %s\n", s);
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
log2.cpp 170 Word16 exp; local
174 exp = norm_l(L_x);
175 result = L_x << exp;
176 Log2_norm(result, exp, pExponent, pFraction);
inv_sqrt.cpp 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)
226 Word16 exp; local
239 L_x <<= exp; \/* L_x is normalize *\/ local
266 L_y >>= exp; \/* denormalization, exp always 0< exp < 31 *\/ local
    [all...]
pow2.cpp 130 Word16 exp, i, a, tmp;
143 exp = sub (30, exponent);
144 L_x = L_shr_r (L_x, exp);
182 Word16 exp, i, a, tmp; local
198 exp = sub(30, exponent, pOverflow);
199 L_x = L_shr_r(L_x, exp, pOverflow);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
scale.c 30 Word16 exp /* (i) : exponent: x = round(x << exp) */
35 if(exp > 0)
39 L_tmp = L_shl2(x[i], 16 + exp);
45 exp = -exp;
49 L_tmp >>= exp; local
log2.c 40 * PURPOSE: Computes log2(L_x, exp), where L_x is positive and
41 * normalized, and exp is the normalisation exponent
58 Word16 exp, /* (i) : norm_l (L_x) */
71 *exponent = (30 - exp);
104 Word16 exp; local
106 exp = norm_l(L_x);
107 Log2_norm ((L_x << exp), exp, exponent, fraction);
voicefac.c 37 Word16 tmp, exp, ener1, exp1, ener2, exp2; local
47 exp = norm_l(L_tmp);
48 tmp = extract_h(L_tmp << exp);
50 exp1 = exp1 - exp - 10; /* 10 -> gain_pit Q14 to Q9 */
58 exp = norm_s(gain_code);
59 tmp = gain_code << exp;
62 exp2 = exp2 - (exp + exp);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
UnwantedTokenException.java 44 String exp = ", expected "+expecting; local
46 exp = "";
49 return "UnwantedTokenException(found="+null+exp+")";
51 return "UnwantedTokenException(found="+token.getText()+exp+")";
  /external/bison/etc/
bench.pl.in 50 %type <val> exp input
61 exp { if (\$1 != 0) abort (); \$\$ = \$1; }
62 | input exp { if (\$2 != \$1 + 1) abort (); \$\$ = \$2; }
65 exp: label
175 %type <ival> exp
192 | exp '\\n' { USE (\$1); }
195 exp: label
197 | exp '=' exp
203 | exp '+' exp { \$\$ = \$1 + \$3;
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
StemFunction.h 24 static Scalar exp(Scalar x, int) function in class:Eigen::StdStemFunctions
26 return std::exp(x);
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
ex_ctrl.cpp 160 Word16 i, exp; local
191 exp = norm_s(excEnergy);
192 excEnergy = shl(excEnergy, exp, pOverflow);
195 t0 = L_shr(t0, sub(20, exp, pOverflow), pOverflow);
d_gain_c.cpp 199 Word16 gcode0, exp, frac; local
213 * = 2^exp + 2^frac *
217 gc_pred(pred_state, mode, code, &exp, &frac,
229 gcode0 = (Word16)(Pow2(exp, frac, pOverflow)); /* predicted gain */
237 L_tmp = L_shr(L_tmp, sub(9, exp, pOverflow), pOverflow);
dec_gain.cpp 195 Word16 exp; local
242 Log2(temp1, &exp, &frac, pOverflow);
243 exp = sub(exp, 12, pOverflow);
246 temp2 = shl(exp, 10, pOverflow);
250 L_tmp = Mpy_32_16(exp, frac, 24660, pOverflow);
270 * = 2^exp + 2^frac *
272 * gcode0 (Q14) = 2^14*2^frac = gc0 * 2^(14-exp) *
275 gc_pred(pred_state, mode, code, &exp, &frac, NULL, NULL, pOverflow);
289 temp1 = sub(10, exp, pOverflow)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
agc2_amr_wb.cpp 124 int16 i, exp; local
145 exp = normalize_amr_wb(s) - 1;
146 gain_out = amr_wb_round(s << exp);
167 exp -= i;
175 s = shr_int32(s, exp); /* add exponent */
voice_factor.cpp 127 int16 i, tmp, exp, ener1, exp1, ener2, exp2; local
133 exp = normalize_amr_wb(L_tmp);
135 tmp = (int16)((L_tmp << exp) >> 16);
137 exp1 -= (exp + 10); /* 10 -> gain_pit Q14 to Q9 */
141 exp = norm_s(gain_code);
142 tmp = shl_int16(gain_code, exp);
145 exp2 -= (exp << 1);
isf_extrapolation.cpp 123 int16 exp, exp2, hi, lo; local
153 exp = norm_s(tmp);
156 IsfDiff[i] = shl_int16(IsfDiff[i], exp);
158 mean = shl_int16(mean, exp);
227 exp = norm_s(tmp);
228 exp--;
229 tmp <<= exp; local
232 exp = exp2 - exp;
237 IsfDiff[i - (M - 1)] = shl_int16(tmp, exp);
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/export/
TestOgreConvert.java 67 BinaryExporter exp = new BinaryExporter(); local
68 exp.save(ogreModel, baos);
  /bionic/libm/arm/
_fpmath.h 43 unsigned int exp :11; member in struct:IEEEl2bits::__anon691
50 unsigned int exp :11;
  /bionic/libm/i386/
_fpmath.h 34 unsigned int exp :15; member in struct:IEEEl2bits::__anon694
  /bionic/libm/mips/
_fpmath.h 35 unsigned int exp :11; member in struct:IEEEl2bits::__anon698
39 unsigned int exp :11;
  /external/eigen/Eigen/src/plugins/
ArrayCwiseUnaryOps.h 37 exp() const function
47 * \sa exp()
140 * \sa exp(), log()
  /external/icu4c/test/cintltst/
cposxtst.c 74 UChar exp[128]; local
80 u_uastrcpy(exp, DATA[i+2]);
90 if (u_strcmp(ustr, exp) != 0) {
91 log_err("FAIL: u_catgets => \"%s\", exp. \"%s\"\n",
96 log_err("FAIL: u_catgets => len=%d, exp. %d\n",
101 log_err("FAIL: u_catgets => %s, exp. %s\n",
  /external/sonivox/arm-wt-22k/lib_src/
eas_flog.c 66 EAS_U32 exp; local
74 for (exp = 31; exp > 0; exp--)
82 exp <<= LOG_EXPONENT_SHIFT;
92 exp += eas_log2_table[n] + interp;
94 return (EAS_I32) exp;

Completed in 411 milliseconds

1 2 3 4 5 6 7 8 9