/titanic_50/usr/src/lib/libm/common/Q/ |
H A D | atan2l.c | 66 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 D | asinhl.c | 38 tiny = 1.0e-20L; variable 50 if (w < tiny) { in asinhl()
|
H A D | exp2l.c | 47 tiny = TINY * TINY, variable 68 if (t < tiny) in exp2l()
|
H A D | erfl.c | 103 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 D | exp10l.c | 55 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.c | 33 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.c | 32 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 D | nexttoward.c | 56 #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 D | nexttowardf.c | 43 #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 D | tgammaf.c | 167 #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.c | 356 #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 D | expf.c | 339 #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 D | scalbn.c | 36 tiny = 1.0e-300, variable 113 return (tiny * ((ix < 0)? -tiny : tiny)); in scalbn()
|
H A D | erf.c | 208 #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 D | expm1.c | 150 #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 D | exp2.c | 58 #define tiny C[5] macro 74 t = (ix < 0)? tiny : huge; in exp2()
|
H A D | exp10.c | 66 #define tiny C[9] macro 82 t = (ix < 0)? tiny : huge; in exp10()
|
/titanic_50/usr/src/lib/libast/common/uwin/ |
H A D | erf.c | 168 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 D | asinhl.c | 38 tiny = 1.0e-20L; variable 50 if (w < tiny) { in asinhl()
|
H A D | erfl.c | 102 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 D | nextafter.S | 45 tiny = 0x10 define 46 .word 0x00100000,0x0 ! tiny 100 ldd [%l0+tiny],%f2
|
/titanic_50/usr/src/lib/libast/common/sfio/ |
H A D | sfmode.c | 403 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 D | sfio_t.h | 38 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 D | sfio_t.h | 38 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 D | sfio_t.h | 38 unsigned char tiny[1];/* for unbuffered read stream */ \ 107 (f)->tiny[0] = 0, /* tiny */ \
|