HomeSort by relevance Sort by last modified time
    Searched refs:exp (Results 526 - 550 of 1081) sorted by null

<<21222324252627282930>>

  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
sampler_test.cc 137 return exp(-1.2337141 / z) / sqrt(z) * (2.00012 + (0.247105 -
141 return exp( - exp(1.0776 - (2.30695 - (0.43424 - (0.082433 -
286 random_sample[i] = 1 - exp(-static_cast<double>(int_random_sample[i])
378 double p = 1 - exp(-(static_cast<double>(alloc_size) / sampling_interval));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
sampler_test.cc 137 return exp(-1.2337141 / z) / sqrt(z) * (2.00012 + (0.247105 -
141 return exp( - exp(1.0776 - (2.30695 - (0.43424 - (0.082433 -
286 random_sample[i] = 1 - exp(-static_cast<double>(int_random_sample[i])
378 double p = 1 - exp(-(static_cast<double>(alloc_size) / sampling_interval));
  /external/mesa3d/src/gallium/state_trackers/vega/
matrix.h 48 int exp = ((bits >> 23) & 255) - 127; local
50 int sh = 23 - exp;
54 if (exp >= 31)
59 if (exp < 0)
60 return (sign < 0 && (exp > -127 || mant != 0)) ? -1 : 0;
  /libcore/luni/src/main/java/java/math/
BigInteger.java 899 * Returns a {@code BigInteger} whose value is {@code pow(this, exp)}.
901 * @throws ArithmeticException if {@code exp < 0}.
903 public BigInteger pow(int exp) {
904 if (exp < 0) {
905 throw new ArithmeticException("exp < 0: " + exp);
907 return new BigInteger(BigInt.exp(getBigInt(), exp));
    [all...]
  /external/chromium_org/v8/test/webkit/
math.js 129 shouldBe("Math.exp(NaN)", "NaN");
130 shouldBe("Math.exp(0)", "1");
131 shouldBe("Math.exp(-0)", "1");
132 shouldBe("Math.exp(Infinity)", "Infinity");
133 shouldBe("Math.exp(-Infinity)", "0");
  /external/chromium_org/third_party/icu/source/test/intltest/
transtst.cpp 690 UnicodeString exp("\\u0061\\u0062c\\u0064\\u0065", "");
691 if (s == exp) {
692 logln(UnicodeString("Ok: \"") + exp + "\"");
694 logln(UnicodeString("FAIL: \"") + s + "\", wanted \"" + exp + "\""); local
1325 UnicodeString exp; local
1334 exp + "\\""); local
2243 UnicodeString exp = "Hangul-Latin"; local
2271 UnicodeString exp = "NFD(NFC);Jamo-Latin"; local
2334 UnicodeString exp; local
    [all...]
tchcfmt.cpp 512 UnicodeString exp[] = { local
535 if (str == exp[j]) {
539 ", expected " + exp[j]);
numfmtst.cpp 2306 errln(UnicodeString("FAIL \\"") + pat + "\\", expected \\"" + exp + "\\""); local
    [all...]
  /external/icu4c/test/intltest/
transtst.cpp 691 UnicodeString exp("\\u0061\\u0062c\\u0064\\u0065", "");
692 if (s == exp) {
693 logln(UnicodeString("Ok: \"") + exp + "\"");
695 logln(UnicodeString("FAIL: \"") + s + "\", wanted \"" + exp + "\""); local
1326 UnicodeString exp; local
1335 exp + "\\""); local
2244 UnicodeString exp = "Hangul-Latin"; local
2272 UnicodeString exp = "NFD(NFC);Jamo-Latin"; local
2335 UnicodeString exp; local
    [all...]
tchcfmt.cpp 526 UnicodeString exp[] = { local
549 if (str == exp[j]) {
553 ", expected " + exp[j]);
tmsgfmt.cpp 314 errln(((UnicodeString)" Exp: ") + testCases[i]);
697 UnicodeString exp[] = { local
703 internalFormat( msgFmt1 , testArgs[i], 2, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t1");
719 UnicodeString exp[] = { local
725 internalFormat( msgFmt2 , testArgs[i], 2, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t2");
741 UnicodeString exp[] = { local
747 internalFormat( msgFmt3 , testArgs[i], 1, exp[i] ,(char*)"From TestMessageFormat::testSelectFormat format t3");
763 UnicodeString exp[] = { local
769 internalFormat( msgFmt4 , testArgs[i], 3, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t4");
787 UnicodeString exp[] = local
824 UnicodeString exp[] = { local
    [all...]
numfmtst.cpp 2574 errln(UnicodeString("FAIL \\"") + pat + "\\", expected \\"" + exp + "\\""); local
    [all...]
  /external/aac/libFDK/src/
fixpoint_math.cpp 295 int exp = (x > FL2FXCONST_DBL(0.0f)) ? (31 - (int)(x>>25)) : (int)(-(x>>25)); local
305 FIXP_DBL retVal = (lookup<<3) >> exp;
452 /* calculate the output exponent = input exp/2 */
710 /* Prepare exp */
719 /* Calc base pow exp */
739 /* Prepare exp */
748 /* Calc base pow exp */
773 INT exp,
779 if (exp != 0) {
794 for (i = 1; i < fAbs(exp); i++)
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
decNumberLocal.h 300 #define EXPISSPECIAL(exp) ((exp)>=DECFLOAT_MinSp)
301 #define EXPISINF(exp) (exp==DECFLOAT_Inf)
302 #define EXPISNAN(exp) (exp==DECFLOAT_qNaN || exp==DECFLOAT_sNaN)
331 extern const uInt DECCOMBFROM[48]; /* exp+msd -> Combination */
    [all...]
  /external/icu4c/i18n/
decNumberLocal.h 288 #define EXPISSPECIAL(exp) ((exp)>=DECFLOAT_MinSp)
289 #define EXPISINF(exp) (exp==DECFLOAT_Inf)
290 #define EXPISNAN(exp) (exp==DECFLOAT_qNaN || exp==DECFLOAT_sNaN)
319 extern const uInt DECCOMBFROM[48]; /* exp+msd -> Combination */
    [all...]
  /external/wpa_supplicant_8/src/common/
sae.c 220 u8 exp[1]; local
250 exp[0] = 2;
251 b = crypto_bignum_init_set(exp, sizeof(exp));
254 exp[0] = 1;
255 b = crypto_bignum_init_set(exp, sizeof(exp));
  /external/aac/libSBRenc/src/
nf_est.cpp 442 FIXP_DBL tmp, exp; local
494 exp = fDivNorm((FIXP_DBL)noiseFloorOffset, 3, &qexp);
495 tmp = fPow(2, DFRACT_BITS-1, exp, qexp, &qtmp);
sbrenc_freq_sca.cpp 564 FIXP_DBL base, exp, tmp; local
570 exp = fDivNorm((FIXP_DBL)i, (FIXP_DBL)num_bands, &qe);
571 tmp = fPow(base, qb, exp, qe, &qtmp);
  /external/chromium_org/third_party/icu/source/test/cintltst/
spreptst.c 574 char exp[MAX_BUFFER_SIZE]={'\0'}; local
577 int32_t expLen = unescapeData(expected, (int32_t)strlen(expected), exp, MAX_BUFFER_SIZE, &status);
584 if(strcmp(exp, dest)!=0){
  /external/elfutils/libelf/
libelfP.h 600 #define update_if_changed(var, exp, flag) \
603 __typeof__ (exp) _exp = (exp); \
  /external/icu4c/test/cintltst/
spreptst.c 574 char exp[MAX_BUFFER_SIZE]={'\0'}; local
577 int32_t expLen = unescapeData(expected, (int32_t)strlen(expected), exp, MAX_BUFFER_SIZE, &status);
584 if(strcmp(exp, dest)!=0){
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
lpc_analysis.c 158 pg = 0:.01:.45; plot(pg, 0.0 + 1.0 * exp( -1.0 * exp(-200.0 * pg.*pg.*pg) / (1.0 + 0.4 * 0) ))
160 *varscale = 0.0 + 1.0 * exp( -1.4 * exp(-200.0 * pg*pg*pg) / (1.0 + 0.4 * chng) );
201 pg = 0:.01:.45; plot(pg, 0.0 + 1.0 * exp( -1.0 * exp(-200.0 * pg.*pg.*pg) / (1.0 + 0.4 * 0) ))
203 *varscale = exp( -1.4 / (1.0 + 0.4 * chng) );
  /system/core/adb/
sysdeps.h 286 #define TEMP_FAILURE_RETRY(exp) ({ \
287 typeof (exp) _rc; \
289 _rc = (exp); \
  /external/bison/lib/
vasnprintf.c 205 This file doesn't use the exp() and remainder() functions. */
206 #undef exp macro
207 #define exp expo macro
903 int exp; local
913 y = frexpl (x, &exp);
916 /* x = 2^exp * y = 2^(exp - LDBL_MANT_BIT) * (y * 2^LDBL_MANT_BIT), and the
975 *ep = exp - LDBL_MANT_BIT;
991 int exp; local
1330 int exp; local
1421 int exp; local
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmal.c 115 bits_lost = -u.bits.exp - scale + 1;

Completed in 6751 milliseconds

<<21222324252627282930>>