Home
last modified time | relevance | path

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

/netbsd/lib/libm/src/
H A De_log2f.c28 Lg2 = 4.0000000596e-01, /* 3ECCCCCD */ variable
72 t1= w*(Lg2+w*(Lg4+w*Lg6)); in __ieee754_log2f()
H A De_log2.c26 Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ variable
71 t1= w*(Lg2+w*(Lg4+w*Lg6)); in __ieee754_log2()
H A De_log.c77 Lg2 = 3.999999999940941908e-01, /* 3FD99999 9997FA04 */ variable
124 t1= w*(Lg2+w*(Lg4+w*Lg6)); in __ieee754_log()
H A De_logf.c29 Lg2 = 4.0000000596e-01, /* 3ECCCCCD */ variable
75 t1= w*(Lg2+w*(Lg4+w*Lg6)); in __ieee754_logf()
/netbsd/external/gpl3/gdb/dist/gas/testsuite/gas/mach-o/
H A Dsymbols-3.s98 Lg2: .space 4 label
H A Dsymbols-6-64.d58 0000000000000018 l.*0e SECT.*07 0000 \[.non_lazy_symbol_pointer\] Lg2
H A Dsymbols-6.d58 00000104 l( )+0e SECT( )+07 0000 \[.non_lazy_symbol_pointer\] Lg2
/netbsd/external/gpl3/gdb.old/dist/gas/testsuite/gas/mach-o/
H A Dsymbols-3.s98 Lg2: .space 4 label
H A Dsymbols-6-64.d58 0000000000000018 l.*0e SECT.*07 0000 \[.non_lazy_symbol_pointer\] Lg2
H A Dsymbols-6.d58 00000104 l( )+0e SECT( )+07 0000 \[.non_lazy_symbol_pointer\] Lg2
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4807 unsigned Lg2 = C.countTrailingZeros(); in selectSDiv() local
4813 unsigned ResultReg = emitASR_ri(VT, VT, Src0Reg, Lg2); in selectSDiv()
4820 int64_t Pow2MinusOne = (1ULL << Lg2) - 1; in selectSDiv()
4849 AArch64_AM::ASR, Lg2); in selectSDiv()
4851 ResultReg = emitASR_ri(VT, VT, SelectReg, Lg2); in selectSDiv()
H A DAArch64ISelLowering.cpp12012 unsigned Lg2 = Divisor.countTrailingZeros(); in BuildSDIVPow2() local
12014 SDValue Pow2MinusOne = DAG.getConstant((1ULL << Lg2) - 1, DL, VT); in BuildSDIVPow2()
12028 DAG.getNode(ISD::SRA, DL, VT, CSel, DAG.getConstant(Lg2, DL, MVT::i64)); in BuildSDIVPow2()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp15403 unsigned Lg2 = (IsNegPow2 ? -Divisor : Divisor).countTrailingZeros(); in BuildSDIVPow2() local
15404 SDValue ShiftAmt = DAG.getConstant(Lg2, DL, VT); in BuildSDIVPow2()
/netbsd/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp22577 unsigned Lg2 = Divisor.countTrailingZeros(); in BuildSDIVPow2() local
22580 if (Lg2 == 1) in BuildSDIVPow2()
22586 APInt Lg2Mask = APInt::getLowBitsSet(VT.getSizeInBits(), Lg2); in BuildSDIVPow2()
22600 DAG.getNode(ISD::SRA, DL, VT, CMov, DAG.getConstant(Lg2, DL, MVT::i8)); in BuildSDIVPow2()