Home
last modified time | relevance | path

Searched refs:ln2 (Results 1 – 12 of 12) sorted by relevance

/freebsd-12-stable/usr.sbin/ctm/ctm/
Dctm_ed.c21 int ln, ln2, iln, ret=0, c; in ctm_edit() local
46 ln2 = 0; in ctm_edit()
48 ln2 *= 10; in ctm_edit()
49 ln2 += (*ep++ - '0'); in ctm_edit()
62 while(ln2) { in ctm_edit()
67 ln2--; in ctm_edit()
80 while(ln2) { in ctm_edit()
85 ln2--; in ctm_edit()
/freebsd-12-stable/lib/msun/src/
De_acoshl.c57 #define ln2 u_ln2.e macro
60 ln2 = 6.93147180559945309417232121458176568e-1L; /* 0x162e42fefa39ef35793c7673007e6.0p-113 */ variable
79 RETURNI(logl(x)+ln2); /* acosh(huge)=log(2x), or misnormal */ in acoshl()
Ds_asinhl.c60 #define ln2 u_ln2.e macro
63 ln2 = 6.93147180559945309417232121458176568e-1L; /* 0x162e42fefa39ef35793c7673007e6.0p-113 */ variable
82 w = logl(fabsl(x))+ln2; in asinhl()
De_acoshf.c24 ln2 = 6.9314718246e-01; /* 0x3f317218 */ variable
38 return logf(x)+ln2; /* acosh(huge)=log(2x) */ in acoshf()
De_acosh.c39 ln2 = 6.93147180559945286227e-01; /* 0x3FE62E42, 0xFEFA39EF */ variable
54 return log(x)+ln2; /* acosh(huge)=log(2x) */ in acosh()
Ds_asinhf.c24 ln2 = 6.9314718246e-01, /* 0x3f317218 */ variable
39 w = logf(fabsf(x))+ln2; in asinhf()
Ds_asinh.c34 ln2 = 6.93147180559945286227e-01, /* 0x3FE62E42, 0xFEFA39EF */ variable
49 w = log(fabs(x))+ln2; in asinh()
/freebsd-12-stable/contrib/gdb/gdb/
Dbuildsym.c745 struct linetable_entry *ln2 = (struct linetable_entry *) ln2p; in compare_line_numbers() local
749 if (ln1->pc < ln2->pc) in compare_line_numbers()
752 if (ln1->pc > ln2->pc) in compare_line_numbers()
757 return ln1->line - ln2->line; in compare_line_numbers()
/freebsd-12-stable/contrib/llvm-project/libcxx/include/
Dnumbers51 inline constexpr double ln2 = ln2_v<double>;
122 inline constexpr double ln2 = ln2_v<double>;
/freebsd-12-stable/contrib/bmake/
Dsuff.c1309 LstNode ln2 = Lst_Member(s->parent->cp, s); in SuffRemoveSrc() local
1310 if (ln2 != NULL) in SuffRemoveSrc()
1311 Lst_Remove(s->parent->cp, ln2); in SuffRemoveSrc()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Support/
DMathExtras.h59ln2 = .69314718055994530942, // (0x1.62e42fefa39efP-1) https://oeis.org/A002162 variable
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DAMDGPULibCalls.cpp846 return log(V) / numbers::ln2; in log2()