HomeSort by relevance Sort by last modified time
    Searched refs:exp (Results 126 - 150 of 637) sorted by null

1 2 3 4 56 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypotl.c 37 #define DESW(exp) (exp) /* delta expsign word */
38 #define ESW(exp) (MAX_EXP - 1 + (exp)) /* expsign word */
s_truncl.c 45 int e = u.bits.exp - LDBL_MAX_EXP + 1;
  /cts/apps/CameraITS/tests/inprog/
test_param_edge_mode.py 39 sens, exp, gains, xform, focus = cam.do_3a(get_results=True)
  /external/ceres-solver/examples/
nist.cc 270 // y = b1*(1-exp[-b2*x]) + e
272 b[0] * (T(1.0) - exp(-b[1] * x))
275 // y = exp[-b1*x]/(b2+b3*x) + e
277 exp(-b[0] * x) / (b[1] + b[2] * x)
285 // y = b1*exp( -b2*x ) + b3*exp( -(x-b4)**2 / b5**2 )
286 // + b6*exp( -(x-b7)**2 / b8**2 ) + e
288 b[0] * exp(-b[1] * x) +
289 b[2] * exp(-pow((x - b[3])/b[4], 2)) +
290 b[5] * exp(-pow((x - b[6])/b[7],2)
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
normconf.h 73 * @param exp expected value
75 * @param return true if got == exp
80 const UnicodeString& exp,
tsputil.cpp 80 PUtilTest::remainderTest(double x, double y, double exp)
87 errln(UnicodeString(" IEEEremainder(") + x + ", " + y + ") is " + result + ", expected " + exp);
89 else if(result != exp)
90 errln(UnicodeString("FAIL: IEEEremainder(") + x + ", " + y + ") is " + result + ", expected " + exp);
182 PUtilTest::maxMinTest(double a, double b, double exp, UBool max)
196 errln(UnicodeString(" max(") + a + ", " + b + ") is " + result + ", expected " + exp); local
198 errln(UnicodeString(" min(") + a + ", " + b + ") is " + result + ", expected " + exp); local
200 else if(result != exp && ! (uprv_isNaN(result) || uprv_isNaN(exp)))
202 errln(UnicodeString("FAIL: max(") + a + ", " + b + ") is " + result + ", expected " + exp); local
204 errln(UnicodeString("FAIL: min(") + a + ", " + b + ") is " + result + ", expected " + exp); local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
actions.c 114 RegExp_calcSize(re->d.RuleOp.exp, rep);
116 re->size = re->d.RuleOp.exp->size + re->d.RuleOp.ctx->size + 1;
130 RegExp_calcSize(re->d.exp, rep);
131 re->size = re->d.exp->size + 1;
134 RegExp_calcSize(re->d.CloseVOp.exp, rep);
137 re->size = (re->d.CloseVOp.exp->size * re->d.CloseVOp.min) +
138 ((1 + re->d.CloseVOp.exp->size) *
141 re->size = (re->d.CloseVOp.exp->size * re->d.CloseVOp.min) + 1;
196 RegExp_compile(re->d.RuleOp.exp, rep, &i[0]);
197 i += re->d.RuleOp.exp->size
    [all...]
  /external/chromium_org/v8/test/mjsunit/
number-literal.js 19 test('exp-int', '3.2e1', '32');
20 test('exp-int', '3200e-2', '32');
  /external/icu/icu4c/source/test/intltest/
normconf.h 73 * @param exp expected value
75 * @param return true if got == exp
80 const UnicodeString& exp,
tsputil.cpp 80 PUtilTest::remainderTest(double x, double y, double exp)
87 errln(UnicodeString(" IEEEremainder(") + x + ", " + y + ") is " + result + ", expected " + exp);
89 else if(result != exp)
90 errln(UnicodeString("FAIL: IEEEremainder(") + x + ", " + y + ") is " + result + ", expected " + exp);
182 PUtilTest::maxMinTest(double a, double b, double exp, UBool max)
196 errln(UnicodeString(" max(") + a + ", " + b + ") is " + result + ", expected " + exp); local
198 errln(UnicodeString(" min(") + a + ", " + b + ") is " + result + ", expected " + exp); local
200 else if(result != exp && ! (uprv_isNaN(result) || uprv_isNaN(exp)))
202 errln(UnicodeString("FAIL: max(") + a + ", " + b + ") is " + result + ", expected " + exp); local
204 errln(UnicodeString("FAIL: min(") + a + ", " + b + ") is " + result + ", expected " + exp); local
    [all...]
  /external/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
exp_valarray.pass.cpp 16 // exp(const valarray<T>& x);
46 std::valarray<T> v3 = exp(v1);
  /external/chromium_org/third_party/freetype/include/freetype/internal/
ftmemory.h 91 #define FT_DEBUG_INNER( exp ) ( _ft_debug_file = __FILE__, \
93 (exp) )
95 #define FT_ASSIGNP_INNER( p, exp ) ( _ft_debug_file = __FILE__, \
97 FT_ASSIGNP( p, exp ) )
101 #define FT_DEBUG_INNER( exp ) (exp)
102 #define FT_ASSIGNP_INNER( p, exp ) FT_ASSIGNP( p, exp )
  /external/chromium_org/ui/events/gestures/
fling_curve.cc 19 return kDefaultAlpha * exp(-kDefaultGamma * t) - kDefaultBeta * t -
24 return -kDefaultAlpha * kDefaultGamma * exp(-kDefaultGamma * t) -
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyLogical.h 84 LExpr *Exp;
87 Not(LExpr *Exp) : LExpr(LExpr::Not), Exp(Exp) {}
89 const LExpr *exp() const { return Exp; } function in class:clang::threadSafety::lexpr::Not
90 LExpr *exp() { return Exp; } function in class:clang::threadSafety::lexpr::Not
  /external/clang/lib/Analysis/
ThreadSafetyLogical.cpp 62 return implies(LHS, LNeg, cast<Not>(RHS)->exp(), !RNeg);
87 return implies(cast<Not>(LHS)->exp(), !LNeg, RHS, RNeg);
  /external/eigen/unsupported/test/
mpreal_support.cpp 31 VERIFY_IS_APPROX(A.array().exp(), exp(A.array()));
matrix_exponential.cpp 23 return std::exp(x);
42 C = (angle*A).exp();
67 C = A.exp();
91 C = A.exp();
116 m2 = m1.exp() * (-m1).exp();
  /external/freetype/include/internal/
ftmemory.h 91 #define FT_DEBUG_INNER( exp ) ( _ft_debug_file = __FILE__, \
93 (exp) )
95 #define FT_ASSIGNP_INNER( p, exp ) ( _ft_debug_file = __FILE__, \
97 FT_ASSIGNP( p, exp ) )
101 #define FT_DEBUG_INNER( exp ) (exp)
102 #define FT_ASSIGNP_INNER( p, exp ) FT_ASSIGNP( p, exp )
  /external/chromium_org/third_party/WebKit/Source/wtf/
Assertions.h 304 #define COMPILE_ASSERT(exp, name) _Static_assert((exp), #name)
306 #define COMPILE_ASSERT(exp, name) static_assert((exp), #name)
308 #define COMPILE_ASSERT(exp, name) typedef int dummy##name [(exp) ? 1 : -1]
  /external/chromium_org/third_party/webrtc/voice_engine/test/win_test/
WinTestDlg.h 50 #define TEST(x, exp) \
53 _strMsg.Format(exp); \
63 _strMsg.Format(exp); \
68 #define TEST2(x, exp) \
71 _strMsg.Format(exp); \
76 _strMsg.Format(exp); \
  /external/chromium_org/v8/third_party/fdlibm/
fdlibm.js 523 // Returns exp(x)-1, the exponential of x minus 1.
537 // r*(exp(r)+1)/(exp(r)-1) = 2+ r^2/6 - r^4/360 + ...
539 // r*(exp(r)+1)/(exp(r)-1) = 2+ r^2/6 * R1(r*r)
541 // R1(r**2) = 6/r *((exp(r)+1)/(exp(r)-1) - 2/r)
542 // = 6/r * ( 1 + 2.0*(1/(exp(r)-1) - 1/r))
560 // expm1(r) = exp(r)-1 is then computed by the following
593 // (v) if (k<-2||k>56) return 2^k(1-(E-r)) - 1 (or exp(x)-1
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
UnionPathIterator.java 511 public void setExpression(Expression exp)
514 if(!(exp instanceof LocPathIterator))
521 few.setInnerExpression(exp);
524 exp.exprSetParent(few);
525 exp = wi;
528 exp.exprSetParent(UnionPathIterator.this);
529 m_exprs[m_index] = (LocPathIterator)exp;
  /external/chromium_org/third_party/libxml/src/
xmlregexp.c     [all...]
  /external/libxml2/
xmlregexp.c     [all...]
  /art/runtime/base/
macros.h 25 #define TEMP_FAILURE_RETRY(exp) ({ \
26 decltype(exp) _rc; \
28 _rc = (exp); \

Completed in 1336 milliseconds

1 2 3 4 56 7 8 91011>>