HomeSort by relevance Sort by last modified time
    Searched refs:exp (Results 501 - 525 of 639) sorted by null

<<212223242526

  /external/apache-harmony/math/src/test/java/org/apache/harmony/tests/java/math/
BigDecimalArithmeticTest.java 423 int exp = 10; local
430 BigDecimal result = aNumber.pow(exp);
441 int exp = 0; local
445 BigDecimal result = aNumber.pow(exp);
467 int exp = 10; local
472 BigDecimal result = aNumber.pow(exp, mc);
    [all...]
  /external/ipsec-tools/src/racoon/
crypto_openssl.c 1 /* $NetBSD: crypto_openssl.c,v 1.20 2010/10/20 13:40:02 tteras Exp $ */
3 /* Id: crypto_openssl.c,v 1.47 2006/05/06 20:42:09 manubsd Exp */
2669 BIGNUM *exp, *mod; local
2704 BIGNUM *exp, *mod; local
    [all...]
  /external/llvm/lib/CodeGen/
IntrinsicLowering.cpp 155 case Intrinsic::exp:
156 EnsureFPIntrinsicsExist(M, I, "expf", "exp", "expl");
357 // Just replace __builtin_expect(exp, c) with EXP.
516 case Intrinsic::exp: {
517 ReplaceFPIntrinsicWithCall(CI, "expf", "exp", "expl");
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 227 Expression exp = create_expression(C); local
228 uint32_t& e = expressionNumbering[exp];
233 Expression exp = create_expression(C); local
234 uint32_t& e = expressionNumbering[exp];
347 Expression exp; local
389 exp = create_expression(I);
392 exp = create_extractvalue_expression(cast<ExtractValueInst>(I));
399 uint32_t& e = expressionNumbering[exp];
    [all...]
  /external/opencv/ml/src/
mlrtrees.cpp 404 ncorrect_responses += exp( -resp*resp );
476 ncorrect_responses_permuted += exp( -true_resp*true_resp );
  /external/qemu/fpu/
softfloat.h 157 #define make_floatx80(exp, mant) ((floatx80) { mant, exp })
  /external/v8/test/mjsunit/
function-names.js 81 "random", "abs", "acos", "asin", "atan", "ceil", "cos", "exp", "floor",
  /frameworks/base/core/java/android/widget/
OverScroller.java 790 return mFlingFriction * PHYSICAL_COEF * Math.exp(DECELERATION_RATE / decelMinusOne * l);
797 return (int) (1000.0 * Math.exp(l / decelMinusOne));
    [all...]
  /external/speex/libspeex/
stereo.c 288 stereo->balance = exp(sign*.25*dexp);
  /external/srec/srec/ca/
pat_basi.c 38 "$Id: pat_basi.c,v 1.9.6.11 2008/03/07 18:49:28 dahan Exp $";
154 (prdata)(WEIGHT_SCALE * exp((double)(0x01 << WT_ADJUST) *
  /frameworks/base/media/libmedia/
AudioTrack.cpp 45 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
46 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
    [all...]
  /frameworks/base/services/audioflinger/
AudioFlinger.h 58 #define LIKELY( exp ) (__builtin_expect( (exp) != 0, true ))
59 #define UNLIKELY( exp ) (__builtin_expect( (exp) != 0, false ))
    [all...]
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 295 * <li>{@code exp(+infinity) = +infinity}</li>
296 * <li>{@code exp(-infinity) = +0.0}</li>
297 * <li>{@code exp(NaN) = NaN}</li>
304 public static native double exp(double d); method in class:StrictMath
309 * much more accurate to use {@code expm1(d)+1} than {@code exp(d)} (due to
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInt.java 328 static BigInt exp(BigInt a, int p) { method in class:BigInt
  /external/icu4c/test/cintltst/
cdtrgtst.c 130 UDate start,exp,got; local
179 exp = d[i];
182 expdate=myFormatit(def, exp);
  /external/icu4c/test/intltest/
msfmrgts.cpp 161 UnicodeString exp("{0,choice,0#no files|1#one file|1< {0,number,integer} files}");
162 if (pat != exp) {
164 errln("Exp: " + exp);
    [all...]
testidna.cpp 1369 UChar exp[MAX_DEST_SIZE]={0}; local
    [all...]
  /external/kernel-headers/original/linux/
sched.h 110 #define EXP_1 1884 /* 1/exp(5sec/1min) as fixed-point */
111 #define EXP_5 2014 /* 1/exp(5sec/5min) */
112 #define EXP_15 2037 /* 1/exp(5sec/15min) */
114 #define CALC_LOAD(load,exp,n) \
115 load *= exp; \
116 load += n*(FIXED_1-exp); \
    [all...]
  /external/stlport/stlport/stl/
_complex.h 868 _STLP_DECLSPEC complex<float> _STLP_CALL exp(const complex<float>&);
887 _STLP_DECLSPEC complex<double> _STLP_CALL exp(const complex<double>&);
906 _STLP_DECLSPEC complex<long double> _STLP_CALL exp(const complex<long double>&);
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMathTest.java 186 // Test for method double java.lang.Math.exp(double)
188 .exp(4D)
191 .abs(Math.exp(5.5D)) - 5.5D) < 10.0D);
276 double answer = Math.log(Math.exp(d));
OldAndroidStrictMathTest.java 179 // Test for method double java.lang.StrictMath.exp(double)
181 .abs(StrictMath.exp(4D) - StrictMath.E * StrictMath.E
184 .log(StrictMath.abs(StrictMath.exp(5.5D)) - 5.5D) < 10.0D);
275 double answer = StrictMath.log(StrictMath.exp(d));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_complex.h 868 _STLP_DECLSPEC complex<float> _STLP_CALL exp(const complex<float>&);
887 _STLP_DECLSPEC complex<double> _STLP_CALL exp(const complex<double>&);
906 _STLP_DECLSPEC complex<long double> _STLP_CALL exp(const complex<long double>&);
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_complex.h 868 _STLP_DECLSPEC complex<float> _STLP_CALL exp(const complex<float>&);
887 _STLP_DECLSPEC complex<double> _STLP_CALL exp(const complex<double>&);
906 _STLP_DECLSPEC complex<long double> _STLP_CALL exp(const complex<long double>&);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_complex.h 868 _STLP_DECLSPEC complex<float> _STLP_CALL exp(const complex<float>&);
887 _STLP_DECLSPEC complex<double> _STLP_CALL exp(const complex<double>&);
906 _STLP_DECLSPEC complex<long double> _STLP_CALL exp(const complex<long double>&);
  /external/icu4c/i18n/
ucol_bld.cpp 858 //uint32_t exp = currentSequenceLen | expOffset;
859 UColToken exp; local
860 exp.source = currentSequenceLen | expOffset;
861 exp.rulesToParseHdl = &(src->source);
866 exp.source = (currentSequenceLen << 24) | expOffset;
867 if((expt = (UColToken *)uhash_get(src->tailored, &exp)) != NULL && expt->strength != UCOL_TOK_RESET) { /* expansion is tailored */
    [all...]

Completed in 4482 milliseconds

<<212223242526