/src/lib/libm/src/ |
e_acoshf.c | 26 ln2 = 6.9314718246e-01; /* 0x3f317218 */ variable in typeref:typename:const float 40 return __ieee754_logf(x)+ln2; /* acosh(huge)=log(2x) */
|
e_acosh.c | 23 * acosh(x) := log(x)+ln2, if x is large; else 37 ln2 = 6.93147180559945286227e-01; /* 0x3FE62E42, 0xFEFA39EF */ variable in typeref:typename:const double 52 return __ieee754_log(x)+ln2; /* acosh(huge)=log(2x) */
|
e_acoshl.c | 58 #define ln2 u_ln2.extu_ld macro 61 ln2 = 6.93147180559945309417232121458176568e-1L; /* 0x162e42fefa39ef35793c7673007e6.0p-113 */ variable in typeref:typename:const long double 80 RETURNI(logl(x)+ln2); /* acosh(huge)=log(2x), or misnormal */
|
s_asinh.c | 24 * := sign(x)*(log(x)+ln2)) for large |x|, else 34 ln2 = 6.93147180559945286227e-01, /* 0x3FE62E42, 0xFEFA39EF */ variable in typeref:typename:const double 49 w = __ieee754_log(fabs(x))+ln2;
|
s_asinhf.c | 26 ln2 = 6.9314718246e-01, /* 0x3f317218 */ variable in typeref:typename:const float 41 w = __ieee754_logf(fabsf(x))+ln2;
|
s_asinhl.c | 61 #define ln2 u_ln2.extu_ld macro 64 ln2 = 6.93147180559945309417232121458176568e-1L; /* 0x162e42fefa39ef35793c7673007e6.0p-113 */ variable in typeref:typename:const long double 83 w = logl(fabsl(x))+ln2;
|
e_log2.c | 23 ln2 = 0.6931471805599452862268, variable in typeref:typename:const double 64 return (dk-(R-f)/ln2); 77 return (dk-(hfsq-s*(hfsq+R)-f)/ln2); 79 return (dk-((s*(f-R))-f)/ln2);
|
e_log2f.c | 25 ln2 = 0.6931471805599452862268, variable in typeref:typename:const float 65 return (dk-(R-f)/ln2); 78 return (dk-(hfsq-s*(hfsq+R)-f)/ln2); 80 return (dk-((s*(f-R))-f)/ln2);
|
/src/sys/lib/libsa/ |
ext2fs.c | 542 int ln2; local in function:ext2fs_open 558 for (ln2 = 0; mult != 1; ln2++) 561 fp->f_nishift = ln2;
|
minixfs3.c | 510 int ln2 = LOG_MINBSIZE; local in function:read_sblock 512 for (; mult != 1; ln2++) 515 fs->mfs_bshift = ln2; 517 fs->mfs_fsbtodb = ln2 - LOG_MINBSIZE + 1; 570 int ln2; local in function:minixfs3_open 586 for (ln2 = 0; mult != 1; ln2++) 589 fp->f_nishift = ln2;
|
ufs.c | 744 int ln2; local in function:ufs_open 760 for (ln2 = 0; mult != 1; ln2++) 763 fp->f_nishift = ln2;
|
/src/usr.bin/make/ |
suff.c | 1048 CandidateListNode *ln2; local in function:RemoveCandidate 1049 ln2 = Lst_FindDatum(&src->parent->childrenList, 1051 if (ln2 != NULL) 1053 ln2);
|