Searched refs:exp (Results 176 - 200 of 512) sorted by relevance

1234567891011>>

/external/chromium/testing/gtest/scripts/
H A Dpump.py300 return MakeToken(lines, start, pos, 'exp')
337 exp_token = ParseToken(lines, pos, REST_OF_LINE_REGEX, 'exp')
356 yield MakeToken(lines, pos, dots_pos, 'exp')
360 yield MakeToken(lines, pos, new_pos, 'exp')
421 def __init__(self, exp=None, then_branch=None, else_branch=None):
422 self.exp = exp
490 exp = Pop('code')
495 return CodeNode([IfNode(ParseExpNode(exp), code_node, inner_else_node)])
515 if next.token_type == 'exp'
[all...]
/external/chromium_org/testing/gtest/scripts/
H A Dpump.py300 return MakeToken(lines, start, pos, 'exp')
337 exp_token = ParseToken(lines, pos, REST_OF_LINE_REGEX, 'exp')
356 yield MakeToken(lines, pos, dots_pos, 'exp')
360 yield MakeToken(lines, pos, new_pos, 'exp')
421 def __init__(self, exp=None, then_branch=None, else_branch=None):
422 self.exp = exp
490 exp = Pop('code')
495 return CodeNode([IfNode(ParseExpNode(exp), code_node, inner_else_node)])
515 if next.token_type == 'exp'
[all...]
/external/gtest/scripts/
H A Dpump.py300 return MakeToken(lines, start, pos, 'exp')
337 exp_token = ParseToken(lines, pos, REST_OF_LINE_REGEX, 'exp')
356 yield MakeToken(lines, pos, dots_pos, 'exp')
360 yield MakeToken(lines, pos, new_pos, 'exp')
421 def __init__(self, exp=None, then_branch=None, else_branch=None):
422 self.exp = exp
490 exp = Pop('code')
495 return CodeNode([IfNode(ParseExpNode(exp), code_node, inner_else_node)])
515 if next.token_type == 'exp'
[all...]
/external/guava/guava-tests/test/com/google/common/math/
H A DLongMathTest.java272 for (int exp : EXPONENTS) {
273 assertEquals(LongMath.pow(i, exp), valueOf(i)
274 .pow(exp)
466 for (int exp : EXPONENTS) {
467 BigInteger expectedResult = valueOf(b).pow(exp);
470 assertEquals(expectedResult.longValue(), LongMath.checkedPow(b, exp));
/external/icu4c/common/
H A Duchar.c415 int32_t exp=(ntv&0x1f)+2; local
418 /* multiply by 10^exp without math.h */
419 while(exp>=4) {
421 exp-=4;
423 switch(exp) {
442 int32_t exp=(ntv&3)+1; local
444 switch(exp) {
/external/stlport/stlport/stl/
H A D_cmath.h345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
368 _STLP_DMATH_INLINE(exp)
439 _STLP_DEF_MATH_INLINE(exp, exp)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
561 using ::exp;
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPath.java95 * @param exp the raw Expression object, which should not normally be null.
97 public void setExpression(Expression exp) argument
100 exp.exprSetParent(m_mainExp.exprGetParent()); // a bit bogus
101 m_mainExp = exp;
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DPredicatedNodeTest.java640 public void setExpression(Expression exp) argument
642 exp.exprSetParent(PredicatedNodeTest.this);
643 m_predicates[m_index] = exp;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DDSAParametersGenerator.java276 for (int j = 0, exp = 0; j <= n; ++j, exp += outlen)
287 W = W.add(Vj.shiftLeft(exp));
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtmsgfmt.cpp671 UnicodeString exp[] = { local
677 internalFormat( msgFmt1 , testArgs[i], 2, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t1");
693 UnicodeString exp[] = { local
699 internalFormat( msgFmt2 , testArgs[i], 2, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t2");
715 UnicodeString exp[] = { local
721 internalFormat( msgFmt3 , testArgs[i], 1, exp[i] ,(char*)"From TestMessageFormat::testSelectFormat format t3");
737 UnicodeString exp[] = { local
743 internalFormat( msgFmt4 , testArgs[i], 3, exp[i].unescape() ,(char*)"From TestMessageFormat::testSelectFormat format t4");
761 UnicodeString exp[] = { local
768 internalFormat( msgFmt5 , testArgs[i], 3, exp[
798 UnicodeString exp[] = { local
[all...]
H A Ddtfmrgts.cpp202 UnicodeString exp = expected[i]; local
203 if((exp.length() == 0 && str.length() == 0) || str == exp)
206 errln(UnicodeString(" expected ") + exp);
259 UDate exp = dates[i]; local
262 logln(s + " -> " + got + "; exp " + exp);
263 if(got != exp)
834 UDate exp = dates[i]; local
843 if (! ((d == 0 && exp
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DHelpers.java75 List<?> exp = copyToList(expected);
83 for (Object object : exp) {
86 + "expected = " + exp + ", actual = " + actString);
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DHDRLoader.java71 double exp = Math.ceil( Math.log10(max) / Math.log10(2) );
72 double divider = Math.pow(2.0, exp);
76 rgbe[3] = (byte) (exp + 128.0);
/external/ceres-solver/examples/
H A Dcurve_fitting.cc45 // y = exp(m * x + c);
128 residual[0] = T(y_) - exp(m[0] * T(x_) + c[0]);
/external/chromium_org/chrome/renderer/safe_browsing/
H A Dscorer.cc46 double odds = exp(log_odds);
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimports.h125 #define expf(f) ((float) exp(f))
171 const GLuint exp = (ix >> 23) & 0xFF;
172 const GLint log2 = ((GLint) exp) - 127;
274 #define EXPF(x) ((GLfloat) exp(x))
/external/chromium_org/third_party/opus/src/silk/float/
H A DSigProc_FLP.h158 return (silk_float)(1.0 / (1.0 + exp(-x)));
/external/mesa3d/src/mesa/main/
H A Dimports.h125 #define expf(f) ((float) exp(f))
171 const GLuint exp = (ix >> 23) & 0xFF;
172 const GLint log2 = ((GLint) exp) - 127;
274 #define EXPF(x) ((GLfloat) exp(x))
/external/openfst/src/include/fst/
H A Dsigned-log-weight.h128 w1.Value1(), (f2 - log(1.0F + exp(f2 - f1))));
131 w2.Value1(), (f2 - log(1.0F - exp(f2 - f1))));
136 w2.Value1(), (f1 - log(1.0F + exp(f1 - f2))));
139 w1.Value1(), (f1 - log(1.0F - exp(f1 - f2))));
/external/icu4c/test/intltest/
H A Ddtfmrgts.cpp204 UnicodeString exp = expected[i]; local
205 if((exp.length() == 0 && str.length() == 0) || str == exp)
208 errln(UnicodeString(" expected ") + exp);
261 UDate exp = dates[i]; local
264 logln(s + " -> " + got + "; exp " + exp);
265 if(got != exp)
838 UDate exp = dates[i]; local
847 if (! ((d == 0 && exp
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcore-extensions.rb15 exp = Regexp.new( "^ *#{ chr }" )
16 self.gsub!( exp,'' )
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/
H A DProxyTest.java264 for(Class<?> exp : exceptions){
265 exps.add(exp);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dbot_test_expectations.py163 def exp_to_string(exp):
164 return TestExpectations.EXPECTATIONS_TO_STRING.get(exp, None).upper()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/views/
H A Dbuildbot_results.py148 new_expectations_list = [TestExpectationParser._inverted_expectation_tokens[exp] for exp in list(set(actual) | set(expected))]
/external/chromium_org/third_party/icu/source/config/
H A Dmh-aix-gcc91 %.e : %.exp

Completed in 934 milliseconds

1234567891011>>