Searched defs:half (Results 1 - 25 of 74) sorted by relevance

123

/illumos-gate/usr/src/lib/libm/amd64/src/
H A Drndintl.s70 half: .float 0.5 label
99 flds PIC_L(half)
H A Dpowl.s64 half: label
206 flds PIC_L(half) / 1/2, y , x
/illumos-gate/usr/src/lib/libm/i386/src/
H A Drndintl.s70 half: .float 0.5 label
101 fcoms PIC_L(half)
H A Dpowf.s68 half: label
215 fcoms PIC_L(half) / y , x
H A Dpowl.s64 half: label
211 fcoms PIC_L(half) / y , x
/illumos-gate/usr/src/lib/libm/common/Q/
H A Datanhl.c50 static const long double zero = 0.0L, half = 0.5L, one = 1.0L; variable
60 return (copysignl(half, x) * log1pl(t + t));
H A Dlog2l.c49 half = 0.5L, variable
63 if (x == half)
H A Dasinl.c46 static const long double zero = 0.0L, small = 1.0e-20L, half = 0.5L, one = 1.0L; variable
61 else if (w <= half) {
H A Dexp2l.c48 half = 0.5L, variable
67 if (t < half) {
H A Dremainderl.c39 * integer nearest x/p (in half way case choose the even one).
49 half = 0.5L, variable
50 hfmax = HFMAX, /* half of the maximum number */
77 hp = half * p;
H A Dsinhl.c69 half = 0.5L, variable
84 r = copysignl((t + t / (one + t)) * half, x);
H A Datan2l.c68 half = 0.5L, variable
142 z = PIo2 + half * t;
H A Dcoshl.c54 * thr1 a number that is near one half of ln2.
77 half = 0.5L, variable
101 return (half * (t + one / t));
103 return (half * expl(w));
/illumos-gate/usr/src/lib/libm/common/C/
H A Dremainder.c37 * where [x/p] is the (inifinite bit) integer nearest x/p (in half way
45 static const double zero = 0.0, half = 0.5; variable
77 halfp = half * p;
H A Dexp2.c55 #define half C[2] macro
86 k = (int)((ix < 0)? x - half : x + half);
H A Dexp10.c62 #define half C[5] macro
106 k = (int)((ix < 0)? t - half : t + half);
/illumos-gate/usr/src/lib/libm/common/LD/
H A Datanhl.c62 half = (GENERIC) 0.5, variable
72 return COPYSIGN(half,x)*LOG1P(t+t);
H A Dsinhl.c67 #define half C[0] macro
82 r = copysignl((t + t / (one + t)) * half, x);
H A Dcoshl.c54 * 0.3465 a number that is near one half of ln2.
77 #define half C[0] macro
102 return (half * (t + one / t));
105 return (half * expl(w));
/illumos-gate/usr/src/lib/libproc/common/
H A Dpr_lseek.c36 uint32_t half[2]; /* two 32-bit halves */ member in union:__anon3802
76 adp->arg_value = off.half[0]; /* first 32 bits */
82 adp->arg_value = off.half[1]; /* second 32 bits */
106 off.half[0] = (uint32_t)rval.sys_rval1;
107 off.half[1] = (uint32_t)rval.sys_rval2;
151 adp->arg_value = off.half[0]; /* first 32 bits */
157 adp->arg_value = off.half[1]; /* second 32 bits */
181 off.half[0] = (uint32_t)rval.sys_rval1;
182 off.half[1] = (uint32_t)rval.sys_rval2;
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dccoshl.c36 static const long double zero = 0.0L, half = 0.5L; variable
75 t = expl(x) * half;
H A Dcsinhl.c36 static const long double zero = 0.0L, half = 0.5L; variable
75 t = expl(x) * half;
H A Dccoshf.c38 static const float zero = 0.0F, half = 0.5F; variable
84 t = expf(x) * half;
/illumos-gate/usr/src/lib/libast/common/uwin/
H A Dexpm1.c115 const static double one=1.0, half=1.0/2.0; local
140 {x=z+half;x +=__exp__E(z,c); return(x+x);}
142 {z+=__exp__E(z,c); x=half+z; return(x+x);}
H A Dlog1p.c122 half=1.0/2.0, small=1.0E-20; /* 1+small == 1 */ local
137 { k += 1 ; z *= half; t *= half; }
142 s = x/(2+x); t = x*x*half;

Completed in 85 milliseconds

123