Home
last modified time | relevance | path

Searched refs:tempB (Results 1 – 3 of 3) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DFastMath.java801 double tempB = intPartA * fracPartB + intPartB * fracPartA + intPartB * fracPartB; 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()
818 hiPrec[1] = tempC*extra*z + tempC*extra + tempC*z + tempB; in exp()
870 double tempB = EXP_FRAC_TABLE_B[intFrac]; in expm1() local
872 double temp = tempA + tempB; in expm1()
873 tempB = -(temp - tempA - tempB); in expm1()
878 baseB = tempB + (tempA - baseA); in expm1()
/external/skia/src/gpu/
DGrSurfaceContext.cpp1198 std::unique_ptr<GrSurfaceFillContext> tempB; in rescaleInto() local
1259 tempB = GrSurfaceFillContext::MakeWithFallback(fContext, in rescaleInto()
1262 if (!tempB) { in rescaleInto()
1265 stepDst = tempB.get(); in rescaleInto()
1266 stepDstRect = SkIRect::MakeSize(tempB->dimensions()); in rescaleInto()
1304 tempA = std::move(tempB); in rescaleInto()
/external/webrtc/modules/desktop_capture/linux/
Dbase_capturer_pipewire.cc422 uint8_t tempB = frame[i + 2]; in ConvertRGBxToBGRx() local
423 frame[i] = tempB; in ConvertRGBxToBGRx()