Home
last modified time | relevance | path

Searched refs:tempResult (Results 1 – 15 of 15) sorted by relevance

/external/libgdx/extensions/gdx-bullet/jni/src/bullet/BulletCollision/NarrowPhaseCollision/
DbtVoronoiSimplexSolver.cpp459 btSubSimplexClosestResult tempResult; in closestPtPointTetrahedron() local
490 closestPtPointTriangle(p, a, b, c,tempResult); in closestPtPointTetrahedron()
491 btVector3 q = tempResult.m_closestPointOnSimplex; in closestPtPointTetrahedron()
500 finalResult.m_usedVertices.usedVertexA = tempResult.m_usedVertices.usedVertexA; in closestPtPointTetrahedron()
501 finalResult.m_usedVertices.usedVertexB = tempResult.m_usedVertices.usedVertexB; in closestPtPointTetrahedron()
502 finalResult.m_usedVertices.usedVertexC = tempResult.m_usedVertices.usedVertexC; in closestPtPointTetrahedron()
504 tempResult.m_barycentricCoords[VERTA], in closestPtPointTetrahedron()
505 tempResult.m_barycentricCoords[VERTB], in closestPtPointTetrahedron()
506 tempResult.m_barycentricCoords[VERTC], in closestPtPointTetrahedron()
517 closestPtPointTriangle(p, a, c, d,tempResult); in closestPtPointTetrahedron()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DNFSubstitution.java408 Number tempResult; in doParse() local
425 tempResult = ruleSet.parse(text, parsePosition, upperBound); in doParse()
427 tempResult = ruleSet.owner.getDecimalFormat().parse(text, parsePosition); in doParse()
432 tempResult = numberFormat.parse(text, parsePosition); in doParse()
440 double result = tempResult.doubleValue(); in doParse()
473 return tempResult; in doParse()
968 Number tempResult = ruleToUse.doParse(text, parsePosition, false, upperBound); in doParse() local
971 double result = tempResult.doubleValue(); in doParse()
980 return tempResult; in doParse()
DNFRule.java568 short tempResult = (short)(Math.log(baseValue) / Math.log(radix)); in expectedExponent() local
569 if (Math.pow(radix, tempResult + 1) <= baseValue) { in expectedExponent()
570 return (short)(tempResult + 1); in expectedExponent()
572 return tempResult; in expectedExponent()
1102 Number tempResult; in matchToDelimiter() local
1117 tempResult = sub.doParse(subText, tempPP, baseVal, upperBound, in matchToDelimiter()
1128 return tempResult; in matchToDelimiter()
1165 Number tempResult = sub.doParse(text, tempPP, baseVal, upperBound, in matchToDelimiter() local
1173 if (tempResult != null) { in matchToDelimiter()
1174 result = tempResult; in matchToDelimiter()
DNFRuleSet.java757 Number tempResult; in parse() local
767 tempResult = fractionRule.doParse(text, parsePosition, false, upperBound); in parse()
769 result = tempResult; in parse()
794 tempResult = rules[i].doParse(text, parsePosition, isFractionRuleSet, upperBound); in parse()
796 result = tempResult; in parse()
DRuleBasedNumberFormat.java1255 Number tempResult = null; in parse() local
1274 tempResult = ruleSets[i].parse(workingText, workingPos, Double.MAX_VALUE); in parse()
1276 result = tempResult; in parse()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNFSubstitution.java407 Number tempResult; in doParse() local
424 tempResult = ruleSet.parse(text, parsePosition, upperBound); in doParse()
426 tempResult = ruleSet.owner.getDecimalFormat().parse(text, parsePosition); in doParse()
431 tempResult = numberFormat.parse(text, parsePosition); in doParse()
439 double result = tempResult.doubleValue(); in doParse()
472 return tempResult; in doParse()
967 Number tempResult = ruleToUse.doParse(text, parsePosition, false, upperBound); in doParse() local
970 double result = tempResult.doubleValue(); in doParse()
979 return tempResult; in doParse()
DNFRule.java567 short tempResult = (short)(Math.log(baseValue) / Math.log(radix)); in expectedExponent() local
568 if (Math.pow(radix, tempResult + 1) <= baseValue) { in expectedExponent()
569 return (short)(tempResult + 1); in expectedExponent()
571 return tempResult; in expectedExponent()
1101 Number tempResult; in matchToDelimiter() local
1116 tempResult = sub.doParse(subText, tempPP, baseVal, upperBound, in matchToDelimiter()
1127 return tempResult; in matchToDelimiter()
1164 Number tempResult = sub.doParse(text, tempPP, baseVal, upperBound, in matchToDelimiter() local
1172 if (tempResult != null) { in matchToDelimiter()
1173 result = tempResult; in matchToDelimiter()
DNFRuleSet.java756 Number tempResult; in parse() local
766 tempResult = fractionRule.doParse(text, parsePosition, false, upperBound); in parse()
768 result = tempResult; in parse()
793 tempResult = rules[i].doParse(text, parsePosition, isFractionRuleSet, upperBound); in parse()
795 result = tempResult; in parse()
DRuleBasedNumberFormat.java1283 Number tempResult = null; in parse() local
1302 tempResult = ruleSets[i].parse(workingText, workingPos, Double.MAX_VALUE); in parse()
1304 result = tempResult; in parse()
/external/icu/icu4c/source/i18n/
Dnfsubs.cpp720 double tempResult = result.getDouble(status); in doParse() local
744 tempResult = composeRuleValue(tempResult, baseValue); in doParse()
745 result.setDouble(tempResult); in doParse()
938 double tempResult = result.getDouble(status); in doParse() local
939 tempResult = composeRuleValue(tempResult, baseValue); in doParse()
940 result.setDouble(tempResult); in doParse()
Dnfrs.cpp708 Formattable tempResult; in parse() local
709 … UBool success = nonNumericalRules[i]->doParse(text, workingPos, 0, upperBound, tempResult); in parse()
711 result = tempResult; in parse()
747 Formattable tempResult; in parse() local
748 … UBool success = rules[i]->doParse(text, workingPos, fIsFractionRuleSet, upperBound, tempResult); in parse()
750 result = tempResult; in parse()
Dnfrule.cpp581 int16_t tempResult = (int16_t)(uprv_log((double)baseValue) / uprv_log((double)radix)); in expectedExponent() local
582 int64_t temp = util64_pow(radix, tempResult + 1); in expectedExponent()
584 tempResult += 1; in expectedExponent()
586 return tempResult; in expectedExponent()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
DTransliteratorTest.java495 String tempResult = tempTrans.transform("xa"); in TestFiltering() local
496 assertEquals("context should not be filtered ", "xb", tempResult); in TestFiltering()
499 tempResult = tempTrans.transform("xa"); in TestFiltering()
500 assertEquals("context should not be filtered ", "xb", tempResult); in TestFiltering()
/external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
DTransliteratorTest.java491 String tempResult = tempTrans.transform("xa"); in TestFiltering() local
492 assertEquals("context should not be filtered ", "xb", tempResult); in TestFiltering()
495 tempResult = tempTrans.transform("xa"); in TestFiltering()
496 assertEquals("context should not be filtered ", "xb", tempResult); in TestFiltering()
/external/valgrind/VEX/priv/
Dguest_ppc_toIR.c12833 IRTemp tempResult = newTemp(Ity_V128); in dis_vx_conv() local
12846 assign(tempResult, unop(op, getVSReg(XB))); in dis_vx_conv()
12847 assign( hi64, unop(Iop_V128HIto64, mkexpr(tempResult)) ); in dis_vx_conv()
12848 assign( lo64, unop(Iop_V128to64, mkexpr(tempResult)) ); in dis_vx_conv()