Searched refs:exp (Results 1 - 25 of 512) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/icu/source/common/
H A Duassert.h25 #define U_ASSERT(exp)
28 #define U_ASSERT(exp) assert(exp)
/external/icu4c/common/
H A Duassert.h26 # define U_ASSERT(exp) assert(exp)
28 # define U_ASSERT(exp)
/external/bison/doc/figs/
H A Dexample.y2 exp: a ";" | b "."; label
/external/srec/portable/include/
H A Dpassert.h45 #define passert(exp) assert(exp)
49 #define passert(exp)
56 #define passert(exp) do { \
57 if (!(exp)) \
59 pfprintf(PSTDERR, __FILE__ "(%d): " #exp " failed.\n",__LINE__); \
/external/eigen/doc/snippets/
H A DCwise_exp.cpp2 cout << v.exp() << endl;
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DUnwantedTokenException.java44 String exp = ", expected "+expecting;
46 exp = "";
49 return "UnwantedTokenException(found="+null+exp+")";
51 return "UnwantedTokenException(found="+token.getText()+exp+")";
/external/fdlibm/
H A Ds_ldexp.c18 double ieee_ldexp(double value, int exp) argument
20 double ieee_ldexp(value, exp)
21 double value; int exp;
25 value = ieee_scalbn(value,exp);
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_flog.c66 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;
/external/chromium_org/third_party/skia/src/core/
H A DSkFloatBits.cpp13 do right before they return ... >> exp;
15 Round - adds 1 << (exp - 1)
16 Ceil - adds (1 << exp) - 1
46 int exp = unpack_exp(packed) - EXP_BIAS; local
49 if (exp >= 0) {
50 if (exp > 7) { // overflow
53 value <<= exp; local
56 exp = -exp;
57 if (exp > 2
60 value >>= exp; local
72 int exp = unpack_exp(packed) - EXP_BIAS; local
79 value <<= exp; local
102 int exp = unpack_exp(packed) - EXP_BIAS; local
109 value <<= exp; local
132 int exp = unpack_exp(packed) - EXP_BIAS; local
139 value <<= exp; local
[all...]
/external/skia/src/core/
H A DSkFloatBits.cpp13 do right before they return ... >> exp;
15 Round - adds 1 << (exp - 1)
16 Ceil - adds (1 << exp) - 1
46 int exp = unpack_exp(packed) - EXP_BIAS; local
49 if (exp >= 0) {
50 if (exp > 7) { // overflow
53 value <<= exp; local
56 exp = -exp;
57 if (exp > 2
60 value >>= exp; local
72 int exp = unpack_exp(packed) - EXP_BIAS; local
79 value <<= exp; local
102 int exp = unpack_exp(packed) - EXP_BIAS; local
109 value <<= exp; local
132 int exp = unpack_exp(packed) - EXP_BIAS; local
139 value <<= exp; local
[all...]
/external/bison/lib/
H A Dldexpl.c29 ldexpl (long double x, int exp) argument
31 return ldexp (x, exp);
40 ldexpl (long double x, int exp) argument
51 if (exp < 0)
53 exp = -exp;
59 if (exp > 0)
63 and bit <= exp. */
64 if (exp & bit)
67 if (bit > exp)
[all...]
/external/e2fsprogs/intl/
H A Dplural.y35 #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...]
H A Dplural.c54 #include "plural-exp.h"
70 struct expression *exp; member in union:__anon17753
228 "start", "exp", 0
1008 if (yyvsp[0].exp == NULL)
1010 ((struct parse_args *) arg)->res = yyvsp[0].exp;
1016 yyval.exp = new_exp_3 (qmop, yyvsp[-4].exp, yyvsp[-2].exp, yyvsp[0].exp);
1022 yyval.exp
1318 FREE_EXPRESSION(struct expression *exp) argument
1346 const char *exp = *pexp; local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/os-win32/
H A Dstdbool.h36 #define CASSERT(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
/external/apache-xml/src/main/java/org/apache/xpath/
H A DExpressionOwner.java39 * @param exp the raw Expression object, which should not normally be null.
41 public void setExpression(Expression exp); argument
/external/chromium_org/tools/traceline/traceline/
H A Dlogging.h11 #define CHECK(exp, ...) \
12 if (!(exp)) { \
13 printf("FAILED CHECK: %s\n %s:%d\n", #exp, __FILE__, __LINE__); \
/external/kernel-headers/original/linux/nfsd/
H A Dexport.h74 #define EX_SECURE(exp) (!((exp)->ex_flags & NFSEXP_INSECURE_PORT))
75 #define EX_ISSYNC(exp) (!((exp)->ex_flags & NFSEXP_ASYNC))
76 #define EX_RDONLY(exp) ((exp)->ex_flags & NFSEXP_READONLY)
77 #define EX_NOHIDE(exp) ((exp)->ex_flags & NFSEXP_NOHIDE)
78 #define EX_WGATHER(exp) ((exp)
104 exp_put(struct svc_export *exp) argument
109 exp_get(struct svc_export *exp) argument
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Dmath-exp-precision.js28 // Tests that the --fast-math implementation of Math.exp() has
31 function exp(x) { function
32 return Math.exp(x);
35 var first_call_result = exp(Math.PI);
36 var second_call_result = exp(Math.PI);
52 var ex = exp(x);
62 var last_call_result = exp(Math.PI);
H A Dtranscendentals.js48 assertTrue(Math.exp(x) != Math.exp(y));
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DUnwantedTokenException.js16 var exp = ", expected "+this.expecting;
18 exp = "";
21 return "UnwantedTokenException(found="+exp+")";
23 return "UnwantedTokenException(found="+this.token.getText()+exp+")";
/external/chromium_org/v8/test/mjsunit/lithium/
H A DMathExp.js31 return Math.exp(x);
/external/libsepol/tests/
H A Ddebug.h27 extern void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp);
/external/libgsm/src/
H A Drpe.c228 word exp, mant; local
233 exp = 0;
234 if (xmaxc > 15) exp = SASR(xmaxc, 3) - 1;
235 mant = xmaxc - (exp << 3);
238 exp = -4;
244 exp--;
249 assert( exp >= -4 && exp <= 6 );
252 *exp_out = exp;
268 word exp, man local
349 APCM_inverse_quantization(xMc,mant,exp,xMp), register word * xMc, word mant, word exp, register word * xMp argument
460 word mant, exp; local
481 word exp, mant; local
[all...]
/external/bison/etc/
H A Dbench.pl.in50 %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 '
[all...]
/external/llvm/utils/release/
H A DfindRegressions-nightly.py10 (tp, exp) = ('compileTime_', 'executeTime_')
58 test[fname][exp + n] = float(t[2].strip('\r\n'))
60 print test[fname][exp + n]
106 if d_old[t].has_key(exp + x):
107 if not d_new[t].has_key(exp + x):
108 print t + " *** REGRESSION (" + exp + x + ")\n"
111 if d_new[t].has_key(exp + x):
112 print t + " * NEW PASS (" + exp + x + ")\n"

Completed in 1760 milliseconds

1234567891011>>