Home
last modified time | relevance | path

Searched refs:ln2_hi (Results 1 – 6 of 6) sorted by relevance

/titanic_41/usr/src/lib/libm/amd64/src/
H A Dexpl.s36 ln2_hi: .4byte 0xd1d00000, 0xb17217f7, 0x3ffe, 0x0 label
61 fldt PIC_L(ln2_hi) / ln2_hi, [z], x, [z]
62 fmulp / [z]*ln2_hi, x, [z]
63 fsubrp %st,%st(1) / x-[z]*ln2_hi, [z]
64 fldt PIC_L(ln2_lo) / ln2_lo, x-[z]*ln2_hi, [z]
66 fmul %st(2),%st / [z]*ln2_lo, x-[z]*ln2_hi, [z]
H A Dexpm1l.s36 ln2_hi: .4byte 0xd1d00000, 0xb17217f7, 0x3ffe, 0x0 label
68 fldt PIC_L(ln2_hi) / ln2_hi, [z], x, [z]
69 fmulp / [z]*ln2_hi, x, [z]
70 fsubrp %st,%st(1) / x-[z]*ln2_hi, [z]
71 fldt PIC_L(ln2_lo) / ln2_lo, x-[z]*ln2_hi, [z]
73 fmul %st(2),%st / [z]*ln2_lo, x-[z]*ln2_hi, [z]
/titanic_41/usr/src/lib/libm/i386/src/
H A Dexpl.s36 ln2_hi: .long 0xd1d00000, 0xb17217f7, 0x00003ffe label
60 fldt PIC_L(ln2_hi) / ln2_hi, [z], x, [z]
61 fmulp / [z]*ln2_hi, x, [z]
62 fsubrp %st,%st(1) / x-[z]*ln2_hi, [z]
63 fldt PIC_L(ln2_lo) / ln2_lo, x-[z]*ln2_hi, [z]
65 fmul %st(2),%st / [z]*ln2_lo, x-[z]*ln2_hi, [z]
H A Dexpm1l.s36 ln2_hi: .long 0xd1d00000, 0xb17217f7, 0x00003ffe label
67 fldt PIC_L(ln2_hi) / ln2_hi, [z], x, [z]
68 fmulp / [z]*ln2_hi, x, [z]
69 fsubrp %st,%st(1) / x-[z]*ln2_hi, [z]
70 fldt PIC_L(ln2_lo) / ln2_lo, x-[z]*ln2_hi, [z]
72 fmul %st(2),%st / [z]*ln2_lo, x-[z]*ln2_hi, [z]
/titanic_41/usr/src/lib/libm/common/C/
H A Dlog1p.c112 #define ln2_hi xxx[0] macro
189 return (k * ln2_hi + c); in log1p()
194 return (k * ln2_hi - ((R - (k * ln2_lo + c)) - f)); in log1p()
202 return (k * ln2_hi - ((hfsq - (s * (hfsq + R) + in log1p()
H A Dexpm1.c152 #define ln2_hi xxx[4] macro
201 hi = x - ln2_hi; in expm1()
206 hi = x + ln2_hi; in expm1()
214 hi = x - t * ln2_hi; /* t*ln2_hi is exact here */ in expm1()