Searched defs:huge (Results 1 - 25 of 26) sorted by relevance

12

/illumos-gate/usr/src/lib/libc/sparc/fp/
H A D_Q_set_except.c34 huge = 1.0e300; variable
53 t = huge * huge;
64 t = huge + tiny;
/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A D_Q_add.c32 static double zero = 0.0, tiny = 1.0e-300, huge = 1.0e300; variable
56 if((ex&(1<<fp_overflow))!=0) t = (huge*huge);
59 if((ex&(1<<fp_inexact))!=0) t = (huge+tiny);
/illumos-gate/usr/src/lib/libm/common/C/
H A Dasinh.c52 /* huge */ 1.00000000000000000000e+300
56 #define huge xxx[2] macro
73 if (huge + x > one)
H A Dexp2.c57 #define huge C[4] macro
74 t = (ix < 0)? tiny : huge;
H A Dexp10.c65 #define huge C[8] macro
82 t = (ix < 0)? tiny : huge;
H A Dscalbn.c35 huge = 1.0e300, variable
110 return (huge * ((ix < 0)? -huge : huge));
H A Dexpm1.c135 /* huge */ 1.0e+300,
149 #define huge xxx[1] macro
175 /* filter out huge and non-finite argument */
189 return (huge * huge); /* overflow */
221 t = huge + x; /* return x w/inexact when x != 0 */
222 return (x - (t - (huge + x)));
H A Dasin.c72 /* huge */ 1.000e+300,
89 #define huge xxx[1] macro
H A Dj0.c270 static const GENERIC huge = 1.0e10; variable
276 if (x > huge)
311 if (x > huge)
H A Dj1.c299 static const GENERIC huge = 1.0e10; variable
306 if (x > huge)
340 if (x > huge)
/illumos-gate/usr/src/cmd/factor/
H A Dfactor.c42 double huge = 1.0e14; variable
80 if((nn<0.0) || (nn>huge)){
/illumos-gate/usr/src/lib/libm/common/m9x/
H A Dnexttoward.c57 #define huge C[1].d macro
139 dummy = huge;
140 dummy *= huge;
160 #define huge C[1].d macro
209 dummy = huge;
210 dummy *= huge;
H A Dnexttowardf.c44 #define huge C[1].f macro
120 dummy = huge;
121 dummy *= huge;
171 dummy = huge;
172 dummy *= huge;
H A Dfma.c61 #define huge C[7].d macro
371 dummy = huge;
372 dummy *= huge;
380 dummy = huge;
/illumos-gate/usr/src/lib/libmvec/common/vis/
H A D__vexp.S602 #define huge 0x18 define
672 ! f42 huge
716 ldd [%o3+huge],HUGE
1120 bg,pt %icc,1f ! if x is huge, inf, nan
1125 fbg,a,pt %fcc0,3f ! if x is huge and positive
1155 fmuld %f4,%f4,%f4 ! huge*huge or tiny*tiny
1178 bg,pt %icc,1f ! if x is huge, inf, nan
1183 fbg,a,pt %fcc0,3f ! if x is huge and positive
1213 fmuld %f14,%f14,%f14 ! huge*hug
[all...]
/illumos-gate/usr/src/lib/libm/common/Q/
H A Dexpm1l.c113 huge = +1.0e4000L, variable
168 return (huge * huge);
H A Dj0l.c423 static const GENERIC huge = 1.0e30L; variable
430 if (x>huge) return one;
692 if (x>huge) return -0.125L/x;
H A Dj1l.c420 static const GENERIC huge = 1.0e30L; variable
427 if (x>huge) return one;
688 if (x>huge) return 0.375L/x;
H A Dsqrtl.c107 huge = 1.0e300, variable
475 t = huge;
/illumos-gate/usr/src/lib/libm/common/LD/
H A Dj0l.c431 static GENERIC huge = 1.0e30L; variable
438 if (x > huge)
701 if (x > huge)
H A Dj1l.c436 static GENERIC huge = 1.0e30L; variable
443 if (x > huge)
705 if (x > huge)
/illumos-gate/usr/src/lib/libm/common/R/
H A Dpowf.c123 static const float zero = 0.0F, one = 1.0F, huge = 1.0e25f, tiny = 1.0e-25f; variable
258 fz = (i > 0)? huge : tiny;
/illumos-gate/usr/src/lib/libm/common/complex/
H A Dcpow.c98 huge = 1e300, variable
319 r = (hx < 0)? tiny * tiny : huge * huge;
H A Dcpowl.c49 huge = 1.0e4000L, variable
262 r = (hx < 0)? tiny * tiny : huge * huge;
/illumos-gate/usr/src/lib/libmvec/common/
H A D__vexp.c357 #define huge C[9].d macro
394 y[index] = huge * huge; \

Completed in 130 milliseconds

12