Home
last modified time | relevance | path

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

123

/external/fdlibm/
De_atan2.c49 tiny = 1.0e-300, variable
82 case 2: return pi+tiny;/* ieee_atan(+0,-anything) = pi */
83 case 3: return -pi-tiny;/* ieee_atan(-0,-anything) =-pi */
87 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
93 case 0: return pi_o_4+tiny;/* ieee_atan(+INF,+INF) */
94 case 1: return -pi_o_4-tiny;/* ieee_atan(-INF,+INF) */
95 case 2: return 3.0*pi_o_4+tiny;/*ieee_atan(+INF,-INF)*/
96 case 3: return -3.0*pi_o_4-tiny;/*ieee_atan(-INF,-INF)*/
102 case 2: return pi+tiny ; /* ieee_atan(+...,-INF) */
103 case 3: return -pi-tiny ; /* ieee_atan(-...,-INF) */
[all …]
De_pow.c76 tiny = 1.0e-300, variable
193 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
194 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
197 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
198 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny;
274 return s*tiny*tiny; /* underflow */
276 if(p_l<=z-p_h) return s*tiny*tiny; /* underflow */
Ds_scalbn.c31 tiny = 1.0e-300; variable
49 if (n< -50000) return tiny*x; /*underflow*/
59 else return tiny*ieee_copysign(tiny,x); /*underflow*/
Ds_tanh.c41 static const double one=1.0, two=2.0, tiny = 1.0e-300; variable
43 static double one=1.0, two=2.0, tiny = 1.0e-300; variable
79 z = one - tiny; /* raised inexact flag */
De_sqrt.c86 static const double one = 1.0, tiny=1.0e-300; variable
88 static double one = 1.0, tiny=1.0e-300; variable
174 z = one-tiny; /* trigger inexact flag */
176 z = one+tiny;
Ds_erf.c116 tiny = 1e-300, variable
225 if(hx>=0) return one-tiny; else return tiny-one;
296 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 */
308 if(hx>0) return tiny*tiny; else return two-tiny;
Ds_expm1.c117 tiny = 1.0e-300, variable
156 if(x+tiny<0.0) /* raise inexact */
157 return tiny-one; /* return -1 */
Dreadme97 +-huge*huge, +-tiny*tiny, +-1.0/0.0, +-0.0/0.0
107 Similarly, ieee_exp(-huge) will be mapped to tiny*tiny to generate
/external/qemu/distrib/sdl-1.2.12/src/video/
De_pow.h183 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
184 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
187 if(ix<0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
188 if(ix>0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
267 return s*tiny*tiny; /* underflow */
269 if(p_l<=z-p_h) return s*tiny*tiny; /* underflow */
De_sqrt.h119 if (n< -50000) return tiny*x; /*underflow*/
129 else return tiny*SDL_NAME(copysign)(tiny,x); /*underflow*/
218 z = one-tiny; /* trigger inexact flag */
220 z = one+tiny;
Dmath_private.h171 tiny = 1.0e-300; variable
/external/bison/lib/
Dtimevar.c479 const float tiny = 5e-3; local
492 if (tv->elapsed.user < tiny
493 && tv->elapsed.sys < tiny
494 && tv->elapsed.wall < tiny)
/external/webkit/PerformanceTests/
DChangeLog112 * benchmarks/parser/tiny-innerHTML.html: Added.
124 * tiny-innerHTML.html: Removed.
143 * benchmarks/parser/tiny-innerHTML.html: Added.
/external/icu4c/data/lang/
Dsk.txt411 hans{"Číslice zjednodušenej čínštiny"}
412 hansfin{"Finančné číslice zjednodušenej čínštiny"}
413 hant{"Číslice tradičnej čínštiny"}
414 hantfin{"Finančné číslice tradičnej čínštiny"}
Dcs.txt552 hans{"Číslice zjednodušené čínštiny"}
553 hansfin{"Finanční číslice zjednodušené čínštiny"}
554 hant{"Číslice tradiční čínštiny"}
555 hantfin{"Finanční číslice tradiční čínštiny"}
/external/valgrind/main/
Ddarwin9.supp211 # These ones were necessary to give no errors on a tiny non-threaded
241 # These ones were necessary to give no errors on a tiny threaded program.
/external/wpa_supplicant_8/src/drivers/
Ddrivers.mk36 DRV_LIBS += -lnl-tiny
Ddrivers.mak36 DRV_LIBS += -lnl-tiny
/external/dbus/
DREADME.wince35 2010-02-28 Pierre Ossman <ossman@ossman.lkpg.cendio.se> (tiny change)
/external/ipsec-tools/src/racoon/doc/
DFAQ20 Configure both ends exactly the same. With just a tiny little
/external/chromium/base/
Dprocess_util_mac.mm830 // only supports batch_malloc for "tiny" allocations from the free list. It
831 // will fail for allocations larger than "tiny", and will only allocate as
836 // exhaustion. The fact that it only allocates space from the "tiny" free list
/external/tinyxml/docs/
Ddoxygen.css291 TD.tiny { font-size: 75%;
/external/clang/docs/
Ddoxygen.css294 TD.tiny { font-size: 75%;
/external/llvm/docs/
Ddoxygen.css294 TD.tiny { font-size: 75%;
/external/libffi/doc/
Dlibffi.info385 Because closures work by assembling a tiny function at runtime, they

123