/third_party/spirv-tools/test/ |
H A D | ext_inst.opencl_test.cpp | 121 CASE1(Exp2, exp2),
|
/third_party/python/Lib/test/ |
H A D | test_pprint.py | 575 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 D | InstCombineMulDivRem.cpp | 523 // 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 D | disasm.c | 607 CASE(exp2, 1),
|
/third_party/optimized-routines/math/test/ |
H A D | mathbench.c | 243 D (exp2, -9.9, 9.9)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | SimplifyLibCalls.cpp | 1472 /// 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 D | disasm-a3xx.c | 277 OPC(4, OPC_EXP2, exp2),
|
/third_party/musl/src/math/ |
H A D | exp2l.c | 33 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 D | exp2l.c | 33 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 D | mplibm.c | 126 int mpexp2(struct t *t) { return mpd1(t, exp2); } in mpexp2()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | LLVMJIT.cpp | 506 functions.try_emplace("exp2", reinterpret_cast<void *>(static_cast<double (*)(double)>(exp2)));
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
H A D | Context.cpp | 335 this->bias = exp2(bias + 0.5f); in setGlobalMipmapBias()
|
/third_party/skia/third_party/externals/swiftshader/src/Shader/ |
H A D | ShaderCore.hpp | 292 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 D | PPCTargetTransformInfo.cpp | 300 case Intrinsic::exp2: in mightUseCTR()
|
/third_party/vk-gl-cts/framework/common/ |
H A D | tcuVectorUtil.hpp | 471 TCU_DECLARE_VECTOR_UNARY_FUNC(exp2, deFloatExp2)
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | const_folding_rules.cpp | 1254 // (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 D | const_folding_rules.cpp | 1350 // (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 D | mathmodule.c | 1257 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 D | es2fShaderOperatorTests.cpp | 61 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 D | ConstantFolding.cpp | 1415 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 D | VectorUtils.cpp | 65 case Intrinsic::exp2: in isTriviallyVectorizable()
|
/third_party/spirv-tools/source/opt/ |
H A D | const_folding_rules.cpp | 1720 // (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 D | aacpsy.c | 360 minsnr = exp2(pe_min / band_sizes[g]) - 1.5f; in psy_3gpp_init()
|
H A D | imc.c | 384 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 D | SkSLFunctionCall.cpp | 379 double evaluate_exp2(double a, double, double) { return std::exp2(a); } in evaluate_exp2()
|