Searched defs:exp (Results 26 - 50 of 218) sorted by relevance

123456789

/external/mesa3d/src/mesa/x86/
H A Dcommon_x86.c89 static LONG WINAPI ExceptionFilter(LPEXCEPTION_POINTERS exp) argument
91 PEXCEPTION_RECORD rec = exp->ExceptionRecord;
92 PCONTEXT ctx = exp->ContextRecord;
/external/qemu/target-i386/
H A Dmachine.c175 uint16_t exp; local
180 exp = qemu_get_be16(f);
185 env->fpregs[i].d = cpu_set_fp80(mant, exp);
/external/skia/src/core/
H A DSkFloatBits.cpp13 do right before they return ... >> exp;
15 Round - adds 1 << (exp - 1)
16 Ceil - adds (1 << exp) - 1
46 int exp = unpack_exp(packed) - EXP_BIAS; local
49 if (exp >= 0) {
50 if (exp > 7) { // overflow
53 value <<= exp; local
56 exp = -exp;
57 if (exp > 2
60 value >>= exp; local
72 int exp = unpack_exp(packed) - EXP_BIAS; local
79 value <<= exp; local
102 int exp = unpack_exp(packed) - EXP_BIAS; local
109 value <<= exp; local
132 int exp = unpack_exp(packed) - EXP_BIAS; local
139 value <<= exp; local
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFunction2Args.java144 public void setExpression(Expression exp) argument
146 exp.exprSetParent(Function2Args.this);
147 m_arg1 = exp;
H A DFunction3Args.java142 public void setExpression(Expression exp) argument
144 exp.exprSetParent(Function3Args.this);
145 m_arg2 = exp;
H A DFunctionMultiArgs.java183 public void setExpression(Expression exp) argument
185 exp.exprSetParent(FunctionMultiArgs.this);
186 m_args[m_argIndex] = exp;
H A DFunctionOneArg.java145 public void setExpression(Expression exp) argument
147 exp.exprSetParent(this);
148 m_arg0 = exp;
/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DUnaryOperation.java142 public void setExpression(Expression exp) argument
144 exp.exprSetParent(this);
145 m_right = exp;
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
H A DFunctionPattern.java232 public void setExpression(Expression exp) argument
234 exp.exprSetParent(FunctionPattern.this);
235 m_functionExpr = exp;
H A DUnionPattern.java165 public void setExpression(Expression exp) argument
167 exp.exprSetParent(UnionPattern.this);
168 m_patterns[m_index] = (StepPattern)exp;
/external/chromium_org/remoting/protocol/
H A Djingle_messages_unittest.cc28 bool VerifyXml(const XmlElement* exp, argument
31 if (exp->Name() != val->Name()) {
32 *error = "<" + exp->Name().Merged() + ">" + " is expected, but " +
36 if (exp->BodyText() != val->BodyText()) {
37 *error = "<" + exp->Name().LocalPart() + ">" + exp->BodyText() +
38 "</" + exp->Name().LocalPart() + ">" " is expected, but found " +
39 "<" + exp->Name().LocalPart() + ">" + val->BodyText() +
40 "</" + exp->Name().LocalPart() + ">";
44 for (const XmlAttr* exp_attr = exp
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DMediaQuery.cpp98 MediaQueryExp* exp = m_expressions->at(i).get(); local
100 if (key && *exp == *key)
103 key = exp;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dquerymatrix.c153 int exp; local
165 normalizedFraction = (GLfloat)frexp(matrix[i], &exp);
167 exponent[i] = (GLint) exp;
/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/deqp/framework/common/
H A DtcuInterval.cpp128 Interval exp (const Interval& x) function in namespace:tcu
130 return applyMonotone(std::exp, x);
/external/fio/
H A Dtickmarks.c19 int exp; /* exponent of x */ local
22 exp = floor(log10(x));
23 f = x / pow(10.0, exp);
26 return 1.0 * pow(10.0, exp);
28 return 2.0 * pow(10.0, exp);
30 return 5.0 * pow(10.0, exp);
31 return 10.0 * pow(10.0, exp);
34 return 1.0 * pow(10.0, exp);
36 return 2.0 * pow(10.0, exp);
38 return 5.0 * pow(10.0, exp);
[all...]
/external/icu/icu4c/source/i18n/
H A Dcollationsets.h94 ContractionsAndExpansions(UnicodeSet *con, UnicodeSet *exp, CESink *s, UBool prefixes) argument
96 contractions(con), expansions(exp),
/external/ipsec-tools/src/racoon/
H A Dplainrsa-gen.c119 gen_rsa_key(FILE *fp, size_t bits, unsigned long exp) argument
124 key = RSA_generate_key(bits, exp, NULL, NULL);
/external/mesa3d/src/mesa/main/
H A Dquerymatrix.c151 int exp; local
163 normalizedFraction = (GLfloat)frexp(matrix[i], &exp);
165 exponent[i] = (GLint) exp;
/external/oprofile/module/x86/
H A Dop_rtc.c61 unsigned int exp, freq; local
77 exp = 0;
78 while (target > (1 << exp) + ((1 << exp) >> 1))
79 exp++;
80 freq = 16 - exp;
87 sysctl_parms.ctr[0].count = sysctl.ctr[0].count = 1 << exp;
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DFilterExprIterator.java177 public void setExpression(Expression exp) argument
179 exp.exprSetParent(FilterExprIterator.this);
180 m_expr = exp;
H A DFilterExprIteratorSimple.java262 public void setExpression(Expression exp) argument
264 exp.exprSetParent(FilterExprIteratorSimple.this);
265 m_expr = exp;
H A DFilterExprWalker.java310 public void setExpression(Expression exp) argument
312 exp.exprSetParent(FilterExprWalker.this);
313 m_expr = exp;
H A DUnionPathIterator.java511 public void setExpression(Expression exp) argument
514 if(!(exp instanceof LocPathIterator))
521 few.setInnerExpression(exp);
524 exp.exprSetParent(few);
525 exp = wi;
528 exp.exprSetParent(UnionPathIterator.this);
529 m_exprs[m_index] = (LocPathIterator)exp;
H A DWalkingIterator.java333 public void setExpression(Expression exp) argument
335 exp.exprSetParent(this);
336 m_firstWalker = (AxesWalker)exp;

Completed in 2185 milliseconds

123456789