Home
last modified time | relevance | path

Searched refs:tempA (Results 1 – 4 of 4) sorted by relevance

/external/lzma/CPP/Common/
DStdOutStream.cpp116 void CStdOutStream::NormalizePrint_UString(const UString &s, UString &tempU, AString &tempA) in NormalizePrint_UString() argument
120 PrintUString(tempU, tempA); in NormalizePrint_UString()
132 AString tempA; in NormalizePrint_wstr() local
133 PrintUString(tempU, tempA); in NormalizePrint_wstr()
DStdOutStream.h59 void NormalizePrint_UString(const UString &s, UString &tempU, AString &tempA);
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DFastMath.java800 double tempA = intPartA * fracPartA; in exp() local
807 final double tempC = tempB + tempA; in exp()
810 result = tempC*extra*z + tempC*extra + tempC*z + tempB + tempA; in exp()
812 result = tempC*z + tempB + tempA; in exp()
817 hiPrec[0] = tempA; in exp()
869 double tempA = EXP_FRAC_TABLE_A[intFrac] - 1.0; in expm1() local
872 double temp = tempA + tempB; in expm1()
873 tempB = -(temp - tempA - tempB); in expm1()
874 tempA = temp; in expm1()
876 temp = tempA * HEX_40000000; in expm1()
[all …]
/external/skia/src/gpu/
DGrSurfaceContext.cpp1197 std::unique_ptr<GrSurfaceFillContext> tempA; in rescaleInto() local
1231 tempA = std::move(linearRTC); in rescaleInto()
1249 auto input = tempA ? tempA.get() : this; in rescaleInto()
1304 tempA = std::move(tempB); in rescaleInto()