Home
last modified time | relevance | path

Searched refs:Lg2 (Results 1 - 15 of 15) sorted by relevance

/third_party/jerryscript/jerry-libm/
H A Dlog2.c45 #define Lg2 3.999999999940941908e-01 /* 0x3FD99999, 0x9997FA04 */ macro
100 t1 = w * (Lg2 + w * (Lg4 + w * Lg6)); in log2()
155 #undef Lg2 macro
H A Dlog.c47 * R(z) ~ Lg1*s +Lg2*s +Lg3*s +Lg4*s +Lg5*s +Lg6*s +Lg7*s
86 #define Lg2 3.999999999940941908e-01 /* 3FD99999 9997FA04 */ macro
163 t1 = w * (Lg2 + w * (Lg4 + w * Lg6)); in log()
197 #undef Lg2 macro
/third_party/musl/src/math/
H A Dlog1p.c62 Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ variable
117 t1 = w*(Lg2+w*(Lg4+w*Lg6)); in log1p()
H A Dlog10f.c26 Lg2 = 0xccce13.0p-25, /* 0.40000972152 */ variable
65 t1= w*(Lg2+w*Lg4); in log10f()
H A Dlog1pf.c20 Lg2 = 0xccce13.0p-25, /* 0.40000972152 */ variable
71 t1= w*(Lg2+w*Lg4); in log1pf()
H A Dlog10.c29 Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ variable
72 t1 = w*(Lg2+w*(Lg4+w*Lg6)); in log10()
/third_party/musl/porting/liteos_a/kernel/src/math/
H A Dlog1p.c62 Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ variable
117 t1 = w*(Lg2+w*(Lg4+w*Lg6)); in log1p()
H A Dlog10f.c26 Lg2 = 0xccce13.0p-25, /* 0.40000972152 */ variable
65 t1= w*(Lg2+w*Lg4); in log10f()
H A Dlog1pf.c20 Lg2 = 0xccce13.0p-25, /* 0.40000972152 */ variable
71 t1= w*(Lg2+w*Lg4); in log1pf()
H A Dlog10.c29 Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ variable
72 t1 = w*(Lg2+w*(Lg4+w*Lg6)); in log10()
/third_party/node/deps/v8/src/base/
H A Dieee754.cc1601 * R(z) ~ Lg1*s +Lg2*s +Lg3*s +Lg4*s +Lg5*s +Lg6*s +Lg7*s
1640 Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ in log() local
1697 t1 = w * (Lg2 + w * (Lg4 + w * Lg6)); in log()
1901 * R(z) ~ Lg1*s +Lg2*s +Lg3*s +Lg4*s +Lg5*s +Lg6*s +Lg7*s
1936 Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ member
1953 t1 = w * (Lg2 + w * (Lg4 + w * Lg6)); in k_log1p()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4939 unsigned Lg2 = C.countTrailingZeros(); in selectSDiv() local
4946 unsigned ResultReg = emitASR_ri(VT, VT, Src0Reg, Src0IsKill, Lg2); in selectSDiv()
4953 int64_t Pow2MinusOne = (1ULL << Lg2) - 1; in selectSDiv()
4983 SelectReg, /*IsKill=*/true, AArch64_AM::ASR, Lg2); in selectSDiv()
4985 ResultReg = emitASR_ri(VT, VT, SelectReg, /*IsKill=*/true, Lg2); in selectSDiv()
H A DAArch64ISelLowering.cpp9707 unsigned Lg2 = Divisor.countTrailingZeros(); in BuildSDIVPow2() local
9709 SDValue Pow2MinusOne = DAG.getConstant((1ULL << Lg2) - 1, DL, VT); in BuildSDIVPow2()
9723 DAG.getNode(ISD::SRA, DL, VT, CSel, DAG.getConstant(Lg2, DL, MVT::i64)); in BuildSDIVPow2()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp14425 unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countTrailingZeros(); in BuildSDIVPow2() local
14426 SDValue ShiftAmt = DAG.getConstant(Lg2, DL, VT); in BuildSDIVPow2()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp21036 unsigned Lg2 = Divisor.countTrailingZeros();
21039 if (Lg2 == 1)
21045 APInt Lg2Mask = APInt::getLowBitsSet(VT.getSizeInBits(), Lg2);
21059 DAG.getNode(ISD::SRA, DL, VT, CMov, DAG.getConstant(Lg2, DL, MVT::i8));
[all...]

Completed in 84 milliseconds