Home
last modified time | relevance | path

Searched refs:exp2 (Results 51 - 75 of 107) sorted by relevance

12345

/third_party/spirv-tools/test/
H A Dext_inst.opencl_test.cpp121 CASE1(Exp2, exp2),
/third_party/python/Lib/test/
H A Dtest_pprint.py575 exp2 = "[without.space]"
576 self.assertEqual(dotted_printer.pformat(o2), exp2)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp523 // exp2(X) * exp2(Y) -> exp2(X + Y) in visitFMul()
524 // Match as long as at least one of exp2 has only one use. in visitFMul()
525 if (match(Op0, m_Intrinsic<Intrinsic::exp2>(m_Value(X))) && in visitFMul()
526 match(Op1, m_Intrinsic<Intrinsic::exp2>(m_Value(Y))) && in visitFMul()
529 Value *Exp2 = Builder.CreateUnaryIntrinsic(Intrinsic::exp2, XY, &I); in visitFMul()
/third_party/mesa3d/src/gallium/drivers/lima/ir/pp/
H A Ddisasm.c607 CASE(exp2, 1),
/third_party/optimized-routines/math/test/
H A Dmathbench.c243 D (exp2, -9.9, 9.9)
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1472 /// ldexp(1.0, x) for pow(2.0, itofp(x)); exp2(n * x) for pow(2.0 ** n, x);
1473 /// exp10(x) for pow(10.0, x); exp2(log2(n) * x) for pow(n, x).
1484 // pow(exp2(x), y) -> exp2(x * y)
1520 ID = Intrinsic::exp2;
1561 // pow(2.0 ** n, x) -> exp2(n * x)
1576 return B.CreateCall(Intrinsic::getDeclaration(Mod, Intrinsic::exp2, Ty),
1577 FMul, "exp2");
1591 // pow(n, x) -> exp2(log2(n) * x)
1603 return B.CreateCall(Intrinsic::getDeclaration(Mod, Intrinsic::exp2, T
[all...]
/third_party/mesa3d/src/freedreno/ir3/
H A Ddisasm-a3xx.c277 OPC(4, OPC_EXP2, exp2),
/third_party/musl/src/math/
H A Dexp2l.c33 return exp2(x); in exp2l()
188 * Thus we have exp2l(x) = 2**k * exp2(y).
192 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z),
195 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z) via a
544 * Thus we have exp2(x) = 2**k * exp2(y).
548 * Thus we have exp2(
[all...]
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dexp2l.c33 return exp2(x); in exp2l()
188 * Thus we have exp2l(x) = 2**k * exp2(y).
192 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z),
195 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z) via a
544 * Thus we have exp2(x) = 2**k * exp2(y).
548 * Thus we have exp2(
[all...]
/third_party/musl/libc-test/src/math/gen/
H A Dmplibm.c126 int mpexp2(struct t *t) { return mpd1(t, exp2); } in mpexp2()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DLLVMJIT.cpp506 functions.try_emplace("exp2", reinterpret_cast<void *>(static_cast<double (*)(double)>(exp2)));
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DContext.cpp335 this->bias = exp2(bias + 0.5f); in setGlobalMipmapBias()
/third_party/skia/third_party/externals/swiftshader/src/Shader/
H A DShaderCore.hpp292 void exp2(Vector4f &dst, const Vector4f &src, bool pp = false);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp300 case Intrinsic::exp2: in mightUseCTR()
/third_party/vk-gl-cts/framework/common/
H A DtcuVectorUtil.hpp471 TCU_DECLARE_VECTOR_UNARY_FUNC(exp2, deFloatExp2)
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Dconst_folding_rules.cpp1254 // (no std::exp2/log2). ::exp2 is available from C99 but ::log2 isn't
1258 FoldFPUnaryOp(FoldFTranscendentalUnary(::exp2)));
1263 FoldFPUnaryOp(FoldFTranscendentalUnary(std::exp2)));
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Dconst_folding_rules.cpp1350 // (no std::exp2/log2). ::exp2 is available from C99 but ::log2 isn't
1354 FoldFPUnaryOp(FoldFTranscendentalUnary(::exp2)));
1359 FoldFPUnaryOp(FoldFTranscendentalUnary(std::exp2)));
/third_party/python/Modules/
H A Dmathmodule.c1257 FUNC1(exp2, exp2, 1,
1258 "exp2($module, x, /)\n--\n\n"
3867 {"exp2", math_exp2, METH_O, math_exp2_doc},
/third_party/vk-gl-cts/modules/gles2/functional/
H A Des2fShaderOperatorTests.cpp61 using tcu::exp2;
792 DECLARE_UNARY_GENTYPE_FUNCS(exp2)
1100 << BuiltinFuncInfo("exp2", "exp2", GT, Value(GT, -7.0f, 2.0f), notUsed, notUsed, 1.0f, 0.0f, PRECMASK_MEDIUMP_HIGHP, FLOAT_GENTYPE_FUNCS(exp2) ) in init()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
H A DConstantFolding.cpp1415 case Intrinsic::exp2: in canConstantFoldCallTo()
1506 Name == "exp2" || Name == "exp2f"; in canConstantFoldCallTo()
1803 case Intrinsic::exp2: in ConstantFoldScalarCall1()
1804 // Fold exp2(x) as pow(2, x), in case the host lacks a C99 library. in ConstantFoldScalarCall1()
1872 // Fold exp2(x) as pow(2, x), in case the host lacks a C99 library. in ConstantFoldScalarCall1()
H A DVectorUtils.cpp65 case Intrinsic::exp2: in isTriviallyVectorizable()
/third_party/spirv-tools/source/opt/
H A Dconst_folding_rules.cpp1720 // (no std::exp2/log2). ::exp2 is available from C99 but ::log2 isn't
1724 FoldFPUnaryOp(FoldFTranscendentalUnary(::exp2)));
1729 FoldFPUnaryOp(FoldFTranscendentalUnary(std::exp2)));
/third_party/ffmpeg/libavcodec/
H A Daacpsy.c360 minsnr = exp2(pe_min / band_sizes[g]) - 1.5f; in psy_3gpp_init()
H A Dimc.c384 flcoeffs1[0] = 20000.0 / exp2 (levlCoeffBuf[0] * 0.18945); // 0.18945 = log2(10) * 0.05703125 in imc_decode_level_coefficients()
/third_party/skia/src/sksl/ir/
H A DSkSLFunctionCall.cpp379 double evaluate_exp2(double a, double, double) { return std::exp2(a); } in evaluate_exp2()

Completed in 50 milliseconds

12345