Home
last modified time | relevance | path

Searched refs:Lg2 (Results 1 – 8 of 8) sorted by relevance

/freebsd/lib/msun/src/
H A Dk_logf.h19 Lg2 = 0xccce13.0p-25, /* 0.40000972152 */ variable
31 t1= w*(Lg2+w*Lg4); in k_log1pf()
H A Dk_log.h72 Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ variable
91 t1= w*(Lg2+w*(Lg4+w*Lg6)); in k_log1p()
H A De_logf.c25 Lg2 = 0xccce13.0p-25, /* 0.40000972152 */ variable
74 t1= w*(Lg2+w*Lg4); in logf()
H A De_log.c74 Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ variable
127 t1= w*(Lg2+w*(Lg4+w*Lg6)); in log()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4903 unsigned Lg2 = C.countr_zero(); in selectSDiv() local
4909 Register ResultReg = emitASR_ri(VT, VT, Src0Reg, Lg2); in selectSDiv()
4916 int64_t Pow2MinusOne = (1ULL << Lg2) - 1; in selectSDiv()
4945 AArch64_AM::ASR, Lg2); in selectSDiv()
4947 ResultReg = emitASR_ri(VT, VT, SelectReg, Lg2); in selectSDiv()
H A DAArch64ISelLowering.cpp18553 unsigned Lg2 = Divisor.countr_zero(); in BuildSREMPow2() local
18554 if (Lg2 == 0) in BuildSREMPow2()
18559 SDValue Pow2MinusOne = DAG.getConstant((1ULL << Lg2) - 1, DL, VT); in BuildSREMPow2()
18562 if (Lg2 == 1) { in BuildSREMPow2()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp6464 unsigned Lg2 = Divisor.countr_zero(); in buildSDIVPow2WithCMov() local
6470 APInt Lg2Mask = APInt::getLowBitsSet(VT.getSizeInBits(), Lg2); in buildSDIVPow2WithCMov()
6485 DAG.getNode(ISD::SRA, DL, VT, CMov, DAG.getConstant(Lg2, DL, VT)); in buildSDIVPow2WithCMov()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp17481 unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countr_zero(); in BuildSDIVPow2() local
17482 SDValue ShiftAmt = DAG.getConstant(Lg2, DL, VT); in BuildSDIVPow2()