Searched defs:exp (Results 51 - 75 of 218) sorted by relevance

123456789

/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncExtFunction.java255 ArgExtOwner(Expression exp) argument
257 m_exp = exp;
272 public void setExpression(Expression exp) argument
274 exp.exprSetParent(FuncExtFunction.this);
275 m_exp = exp;
287 Expression exp = (Expression)m_argVec.elementAt(i);
288 exp.callVisitors(new ArgExtOwner(exp), visitor);
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DOperation.java160 public void setExpression(Expression exp) argument
162 exp.exprSetParent(Operation.this);
163 m_left = exp;
190 public void setExpression(Expression exp) argument
192 exp.exprSetParent(this);
193 m_right = exp;
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtsputil.cpp80 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) argument
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...]
H A Dnormconf.cpp481 * @param exp expected value
483 * @param return true if got == exp
488 const UnicodeString& exp,
492 if (exp == got)
498 UnicodeString expPretty(prettify(exp));
511 errln(" %s%d)%s(%s)=%s, exp. %s", msg, field, op, sChars, gotChars, expChars);
485 assertEqual(const char *op, const UnicodeString& s, const UnicodeString& got, const UnicodeString& exp, const char *msg, int32_t field) argument
/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/eigen/Eigen/src/Eigen2Support/
H A DCwiseOperators.h36 /** \deprecated ArrayBase::exp() */
39 Cwise<ExpressionType>::exp() const function in class:Eigen::Cwise
/external/icu/icu4c/source/test/intltest/
H A Dtsputil.cpp80 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) argument
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/libgsm/src/
H A Drpe.c228 word exp, mant; local
233 exp = 0;
234 if (xmaxc > 15) exp = SASR(xmaxc, 3) - 1;
235 mant = xmaxc - (exp << 3);
238 exp = -4;
244 exp--;
249 assert( exp >= -4 && exp <= 6 );
252 *exp_out = exp;
268 word exp, man local
349 APCM_inverse_quantization(xMc,mant,exp,xMp), register word * xMc, word mant, word exp, register word * xMp argument
460 word mant, exp; local
481 word exp, mant; local
[all...]
/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/valgrind/main/none/tests/amd64/
H A Daes.c75 V128 exp; local
91 expand(&exp, s_exp);
92 assert (0 == memcmp(&res, &exp, 16));
107 V128 exp; local
123 expand(&exp, s_exp);
124 assert (0 == memcmp(&res, &exp, 16));
139 V128 exp; local
155 expand(&exp, s_exp);
156 assert (0 == memcmp(&res, &exp, 16));
171 V128 exp; local
203 V128 exp; local
234 V128 exp; local
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DElemForEach.java478 public void setExpression(Expression exp) argument
480 exp.exprSetParent(this);
481 m_selectExpression = 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 DAxesWalker.java543 public void setExpression(Expression exp) argument
545 exp.exprSetParent(this);
546 m_nextWalker = (AxesWalker)exp;
H A DPredicatedNodeTest.java640 public void setExpression(Expression exp) argument
642 exp.exprSetParent(PredicatedNodeTest.this);
643 m_predicates[m_index] = exp;
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
H A DStepPattern.java957 public void setExpression(Expression exp) argument
959 exp.exprSetParent(StepPattern.this);
960 m_predicates[m_index] = exp;
1011 public void setExpression(Expression exp) argument
1013 exp.exprSetParent(this);
1014 m_relativePathPattern = (StepPattern)exp;
/external/checkpolicy/test/
H A Ddispol.c196 void display_expr(policydb_t * p, cond_expr_t * exp, FILE * fp) argument
200 for (cur = exp; cur != NULL; cur = cur->next) {
/external/chromium_org/chromeos/process_proxy/
H A Dprocess_output_watcher_unittest.cc177 std::vector<TestCase> exp; member in class:chromeos::ProcessOutputWatcherTest
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcdtdptst.c306 UChar *pattern, *tzID, *exp; local
336 exp=(UChar*)malloc(sizeof(UChar) * (strlen(expStr) + 1) );
337 u_uastrcpy(exp, expStr);
340 if(u_strncmp(dateString, exp, (int32_t)strlen(expStr)) !=0)
345 free(exp);
H A Dspreptst.c574 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/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';
/external/chromium_org/third_party/skia/src/core/
H A DSkFloat.cpp37 int exp = get_unsigned_exp(packed) - EXP_BIAS - shift; local
40 if (exp >= 0)
42 if (exp > 8) // overflow
45 value <<= exp; local
49 exp = -exp;
50 if (exp > 23) // underflow
53 value >>= exp; local
135 int exp; local
142 exp
217 int exp = get_unsigned_exp(packed); local
[all...]
/external/chromium_org/third_party/webrtc/video_engine/test/auto_test/automated/
H A Dvie_network_test.cc83 uint8_t exp = buf[5] >> 2; local
85 double bitrate = mantissa * static_cast<double>(1 << exp);
/external/deqp/framework/common/
H A DtcuFloat.hpp215 const StorageType exp = (isShorthandZero || isDenormOrZero) ? StorageType(0) : StorageType(exponent + ExponentBias); local
219 DE_ASSERT(exp >> ExponentBits == 0);
221 return Float(StorageType(s | (exp << MantissaBits) | (mantissa & ((StorageType(1)<<MantissaBits)-1))));
H A DtcuFloatFormat.cpp100 int exp = 0; local
101 const double frac = deFractExp(deAbs(x), &exp);
111 --exp;
114 exp = m_minExp;
117 exp = de::max(exp, m_minExp);
120 const double oneULP = deLdExp(1.0, exp - m_fractionBits);
131 //! for subnormals it is less and for values of exp where 2^exp is too
133 int FloatFormat::exponentShift (int exp) cons
143 int exp = 0; local
204 int exp = 0; local
236 int exp = 0; local
[all...]

Completed in 3221 milliseconds

123456789