Home
last modified time | relevance | path

Searched refs:tiny (Results 1 – 25 of 67) sorted by relevance

123

/titanic_50/usr/src/lib/libm/common/Q/
H A Datan2l.c66 tiny = 1.0e-40L, variable
96 return (PI + tiny); /* atan(+0,-anything) */ in atan2l()
98 return (-PI - tiny); /* atan(-0,-anything) */ in atan2l()
103 return (signy == 1 ? -PIo2 - tiny : PIo2 + tiny); in atan2l()
110 return (PIo4 + tiny); /* atan(+INF,+INF) */ in atan2l()
112 return (-PIo4 - tiny); /* atan(-INF,+INF) */ in atan2l()
114 return (PI3o4 + tiny); /* atan(+INF,-INF) */ in atan2l()
116 return (-PI3o4 - tiny); /* atan(-INF,-INF) */ in atan2l()
125 return (PI + tiny); /* atan(+...,-INF) */ in atan2l()
127 return (-PI - tiny); /* atan(-...,-INF) */ in atan2l()
[all …]
H A Dasinhl.c38 tiny = 1.0e-20L; variable
50 if (w < tiny) { in asinhl()
H A Dexp2l.c47 tiny = TINY * TINY, variable
68 if (t < tiny) in exp2l()
H A Derfl.c103 tiny = 1e-40L, variable
290 if (y<=tiny) return x+P[0]*x;
304 if (y<=9.0L) t = erfcl(y); else t = tiny;
H A Dexp10l.c55 tiny = TINY * TINY, variable
75 if (fabsl(x) < tiny) in exp10l()
/titanic_50/usr/src/lib/libc/sparc/fp/
H A D_Q_set_except.c33 static const double zero = 0.0, tiny = 1.0e-307, tiny2 = 1.001e-307, variable
57 t = tiny * tiny; in _Q_set_exception()
59 t = tiny2 - tiny; /* exact */ in _Q_set_exception()
62 t = tiny / zero; in _Q_set_exception()
64 t = huge + tiny; in _Q_set_exception()
/titanic_50/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
57 if((ex&(1<<fp_underflow))!=0) t = (tiny*tiny); in _Q_set_exception()
58 if((ex&(1<<fp_division))!=0) t = (tiny/zero); in _Q_set_exception()
59 if((ex&(1<<fp_inexact))!=0) t = (huge+tiny); in _Q_set_exception()
/titanic_50/usr/src/lib/libm/common/m9x/
H A Dnexttoward.c56 #define tiny C[0].d macro
142 dummy = tiny; in __nexttoward()
143 dummy *= tiny; in __nexttoward()
159 #define tiny C[0].d macro
212 dummy = tiny; in __nexttoward()
213 dummy *= tiny; in __nexttoward()
H A Dnexttowardf.c43 #define tiny C[0].f macro
123 dummy = tiny; in __nexttowardf()
124 dummy *= tiny; in __nexttowardf()
174 dummy = tiny; in __nexttowardf()
175 dummy *= tiny; in __nexttowardf()
H A Dtgammaf.c167 #define tiny c[3] macro
469 return (float)(x / tiny); in tgammaf()
512 z = -tiny; in tgammaf()
514 z = tiny; in tgammaf()
/titanic_50/usr/src/lib/libmvec/common/
H A D__vexp.c356 #define tiny C[8].d macro
375 y##N *= tiny; \
398 y[index] = tiny * tiny; \
517 y0 *= tiny; in __vexp()
523 y1 *= tiny; in __vexp()
529 y2 *= tiny; in __vexp()
535 y3 *= tiny; in __vexp()
541 y4 *= tiny; in __vexp()
547 y5 *= tiny; in __vexp()
/titanic_50/usr/src/lib/libm/common/R/
H A Dexpf.c339 #define tiny F[5] macro
369 return (tiny * tiny); /* underflow */ in expf()
394 volatile float t = tiny; in expf()
/titanic_50/usr/src/lib/libm/common/C/
H A Dscalbn.c36 tiny = 1.0e-300, variable
113 return (tiny * ((ix < 0)? -tiny : tiny)); in scalbn()
H A Derf.c208 #define tiny xxx[0] macro
323 return (one - tiny); in erf()
325 return (tiny - one); in erf()
406 return (two - tiny); /* x < -6 */ in erfc()
422 return (tiny * tiny); in erfc()
424 return (two - tiny); in erfc()
H A Dexpm1.c150 #define tiny xxx[2] macro
192 if (x + tiny < 0.0) /* raise inexact */ in expm1()
193 return (tiny - one); /* return -1 */ in expm1()
H A Dexp2.c58 #define tiny C[5] macro
74 t = (ix < 0)? tiny : huge; in exp2()
H A Dexp10.c66 #define tiny C[9] macro
82 t = (ix < 0)? tiny : huge; in exp10()
/titanic_50/usr/src/lib/libast/common/uwin/
H A Derf.c168 tiny = 1e-300, variable
302 return (one-tiny);
304 return (tiny-one);
367 return (tiny*tiny);
369 return (two-tiny);
/titanic_50/usr/src/lib/libm/common/LD/
H A Dasinhl.c38 tiny = 1.0e-20L; variable
50 if (w < tiny) { in asinhl()
H A Derfl.c102 tiny = 1e-40L, variable
289 if (y<=tiny) return x+P[0]*x;
303 if (y<=9.0L) t = erfcl(y); else t = tiny;
/titanic_50/usr/src/lib/libm/sparc/src/
H A Dnextafter.S45 tiny = 0x10 define
46 .word 0x00100000,0x0 ! tiny
100 ldd [%l0+tiny],%f2
/titanic_50/usr/src/lib/libast/common/sfio/
H A Dsfmode.c403 if((f->bits&SF_MMAP) && (f->tiny[0] += 1) >= (4*SF_NMAP) )
405 sfsetbuf(f,(Void_t*)f->tiny,(size_t)SF_UNBOUND);
406 f->tiny[0] = 0;
492 f->data = f->tiny;
493 f->size = sizeof(f->tiny);
565 (void)SFSETBUF(f,(Void_t*)f->tiny,(size_t)SF_UNBOUND);
568 if(f->data == f->tiny)
/titanic_50/usr/src/lib/libast/amd64/include/ast/
H A Dsfio_t.h38 unsigned char tiny[1];/* for unbuffered read stream */ \
107 (f)->tiny[0] = 0, /* tiny */ \
/titanic_50/usr/src/lib/libast/sparc/include/ast/
H A Dsfio_t.h38 unsigned char tiny[1];/* for unbuffered read stream */ \
107 (f)->tiny[0] = 0, /* tiny */ \
/titanic_50/usr/src/lib/libast/sparcv9/include/ast/
H A Dsfio_t.h38 unsigned char tiny[1];/* for unbuffered read stream */ \
107 (f)->tiny[0] = 0, /* tiny */ \

123