Searched refs:exp (Results 126 - 150 of 596) sorted by relevance

1234567891011>>

/external/ceres-solver/internal/ceres/
H A Dc_api_test.cc121 residuals[0] = y - exp(m * x + c);
126 jacobians[0][0] = - x * exp(m * x + c); // dr/dm
129 jacobians[1][0] = - exp(m * x + c); // dr/dc
/external/chromium_org/third_party/skia/include/core/
H A DSkFloatingPoint.h28 static inline float sk_float_pow(float base, float exp) { argument
29 return powf(base, exp);
65 #define sk_float_exp(x) (float)::exp(x)
/external/chromium_org/v8/test/cctest/compiler/
H A Dinstruction-selector-tester.h115 static inline void CheckSameVreg(InstructionOperand* exp, argument
117 CHECK_EQ(InstructionOperand::UNALLOCATED, exp->kind());
119 CHECK_EQ(UnallocatedOperand::cast(exp)->virtual_register(),
/external/deqp/framework/common/
H A DtcuTexVerifierUtil.cpp36 const int exp = tcu::Float32(value).exponent(); local
38 return Float32::construct(+1, exp, (1u<<23) | mask).asFloat() - Float32::construct(+1, exp, 1u<<23).asFloat();
/external/skia/include/core/
H A DSkFloatingPoint.h28 static inline float sk_float_pow(float base, float exp) { argument
29 return powf(base, exp);
63 #define sk_float_exp(x) (float)::exp(x)
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Drandgen.h75 sum += exp(-arc.weight.Value());
77 sum += exp(-fst.Final(s).Value());
85 p += exp(-arc.weight.Value());
/external/stlport/test/unit/
H A Dvalarray_test.cpp53 tmp = exp(darray);
79 tmp = exp(farray);
106 tmp = exp(ldarray);
H A Dcmath_test.cpp91 CPPUNIT_CHECK( are_equals(std::exp(0.0), 1.0) );
92 CPPUNIT_CHECK( are_equals(std::log(std::exp(1.0)), 1.0) );
116 CPPUNIT_CHECK( are_equals(std::exp(0.0f), 1.0f) );
117 CPPUNIT_CHECK( are_equals(std::log(std::exp(1.0f)), 1.0f) );
142 CPPUNIT_CHECK( are_equals(std::exp(0.0l), 1.0l) );
143 CPPUNIT_CHECK( are_equals(std::log(std::exp(1.0l)), 1.0l) );
/external/ceres-solver/examples/
H A Dmore_garbow_hillstrom.cc118 residual[1] = exp(-x1) + exp(-x2) - T(1.0001);
163 exp(T(static_cast<double>(i)) * x1) -
164 exp(T(static_cast<double>(i) * x2));
232 residual[i] = x1 * exp(-x2 * (t_i - x3) * (t_i - x3) / T(2.0)) - y_i;
253 residual[i] = x1 * exp(x2 / (t + x3)) - y[i];
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DAssertions.h304 #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/skia/experimental/benchtools/
H A Drebase.py131 exp, lb, ub = (float(parts[2]), float(parts[3]), float(parts[4]))
133 avg = (exp + alt) / 2
135 new_lb = min(exp, alt) - (exp - lb)
136 new_ub = max(exp, alt) + (ub - exp)
287 exp_dir = os.path.join(d, 'exp' + ts_str)
/external/chromium_org/content/child/
H A Dtouch_fling_gesture_curve.cc36 return kDefaultAlpha * exp(-kDefaultGamma * t) - kDefaultBeta * t -
41 return -kDefaultAlpha * kDefaultGamma * exp(-kDefaultGamma * t) -
/external/chromium_org/third_party/skia/tools/skpdiff/
H A Dgenerate_pmetric_tables.py23 return a * cycles_per_degree * exp(-b * cycles_per_degree) * sqrt(1.0 + 0.06 * exp(b * cycles_per_degree))
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyLogical.h89 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/test/CodeGen/
H A Dlibcall-declarations.c76 double exp(double);
154 double scalbln(double, long int exp);
155 float scalblnf(float, long int exp);
156 long double scalblnl(long double, long int exp);
157 double scalbn(double, int exp);
158 float scalbnf(float, int exp);
159 long double scalbnl(long double, int exp);
277 F(erfcl), F(exp), F(expf), F(expl), F(exp2),
375 // CHECK-NOERRNO: declare double @exp(double) [[NUW]]
/external/libvorbis/lib/
H A Dsharedbook.c49 long exp; local
55 exp= floor(log(val)/log(2.f)+.001); //+epsilon
56 mant=rint(ldexp(val,(VQ_FMAN-1)-exp));
57 exp=(exp+VQ_FEXP_BIAS)<<VQ_FMAN;
59 return(sign|exp|mant);
65 long exp =(val&0x7fe00000L)>>VQ_FMAN; local
67 return(ldexp(mant,exp-(VQ_FMAN-1)-VQ_FEXP_BIAS));
/external/pdfium/core/include/thirdparties/freetype/freetype/internal/
H A Dftmemory.h91 #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/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/internal/
H A Dftmemory.h91 #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/skia/tools/skpdiff/
H A Dgenerate_pmetric_tables.py23 return a * cycles_per_degree * exp(-b * cycles_per_degree) * sqrt(1.0 + 0.06 * exp(b * cycles_per_degree))
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dexceptions.py220 exp = ", expected %s" % self.expecting
222 exp = ""
225 return "UnwantedTokenException(found=%s%s)" % (None, exp)
227 return "UnwantedTokenException(found=%s%s)" % (self.token.text, exp)
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_util.cc135 uint8 exp = *(url.spec().c_str() + value.begin) - '0'; local
136 if (exp < 1 || exp > 9)
138 return exp;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dnormconf.h73 * @param exp expected value
75 * @param return true if got == exp
80 const UnicodeString& exp,
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Df.cpp64 return exp(x*log(2.0));
/external/chromium_org/third_party/opus/src/src/
H A Dmlp_train.h37 return 2./(1.+exp(-2.*x)) - 1.;
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicParameterizationCode.cpp238 char exp = str[idx]; local
239 if (exp < '2' || exp > '3') {
242 pow = exp - '0';

Completed in 947 milliseconds

1234567891011>>