HomeSort by relevance Sort by last modified time
    Searched full:tiny (Results 1 - 25 of 226) sorted by null

1 2 3 4 5 6 7 8 910

  /bionic/libm/src/
e_atan2.c 50 tiny = 1.0e-300, variable
79 case 2: return pi+tiny;/* atan(+0,-anything) = pi */
80 case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */
84 if((ix|lx)==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
90 case 0: return pi_o_4+tiny;/* atan(+INF,+INF) */
91 case 1: return -pi_o_4-tiny;/* atan(-INF,+INF) */
92 case 2: return 3.0*pi_o_4+tiny;/*atan(+INF,-INF)*/
93 case 3: return -3.0*pi_o_4-tiny;/*atan(-INF,-INF)*/
99 case 2: return pi+tiny ; /* atan(+...,-INF) *
    [all...]
e_atan2f.c 24 tiny = 1.0e-30, variable
52 case 2: return pi+tiny;/* atan(+0,-anything) = pi */
53 case 3: return -pi-tiny;/* atan(-0,-anything) =-pi */
57 if(ix==0) return (hy<0)? -pi_o_2-tiny: pi_o_2+tiny;
63 case 0: return pi_o_4+tiny;/* atan(+INF,+INF) */
64 case 1: return -pi_o_4-tiny;/* atan(-INF,+INF) */
65 case 2: return (float)3.0*pi_o_4+tiny;/*atan(+INF,-INF)*/
66 case 3: return (float)-3.0*pi_o_4-tiny;/*atan(-INF,-INF)*/
72 case 2: return pi+tiny ; /* atan(+...,-INF) *
    [all...]
s_scalbnf.c 29 tiny = 1.0e-30; variable
42 if (n< -50000) return tiny*x; /*underflow*/
52 else return tiny*copysignf(tiny,x); /*underflow*/
s_tanhf.c 23 static const float one=1.0, two=2.0, tiny = 1.0e-30, huge = 1.0e30; variable
42 if(huge+x>one) return x; /* tanh(tiny) = tiny with inexact */
53 z = one - tiny; /* raise inexact flag */
s_scalbn.c 34 tiny = 1.0e-300; variable
47 if (n< -50000) return tiny*x; /*underflow*/
57 else return tiny*copysign(tiny,x); /*underflow*/
s_scalbnl.c 42 tiny = 0x1p-16000L; variable
55 if (n< -50000) return tiny*x; /*underflow*/
65 else return tiny*copysign(tiny,x); /*underflow*/
e_powf.c 32 tiny = 1.0e-30, variable
134 if(ix<0x3f7ffff8) return (hy<0)? sn*huge*huge:sn*tiny*tiny;
135 if(ix>0x3f800007) return (hy>0)? sn*huge*huge:sn*tiny*tiny;
136 /* now |1-x| is tiny <= 2**-20, suffice to compute
213 return sn*tiny*tiny; /* underflow */
215 if(p_l<=z-p_h) return sn*tiny*tiny; /* underflow *
    [all...]
e_pow.c 73 tiny = 1.0e-300, variable
189 if(ix<=0x3fefffff) return (hy<0)? huge*huge:tiny*tiny;
190 if(ix>=0x3ff00000) return (hy>0)? huge*huge:tiny*tiny;
193 if(ix<0x3fefffff) return (hy<0)? s*huge*huge:s*tiny*tiny;
194 if(ix>0x3ff00000) return (hy>0)? s*huge*huge:s*tiny*tiny;
195 /* now |1-x| is tiny <= 2**-20, suffice to compute
    [all...]
s_erf.c 76 * = 2.0 - tiny (if x <= -6)
78 * erf(x) = sign(x)*(1.0 - tiny)
101 * erf(x) = sign(x) *(1 - tiny) (raise inexact)
102 * erfc(x) = tiny*tiny (raise underflow) if x > 0
103 * = 2 - tiny if x<0
116 tiny = 1e-300, variable
221 if(hx>=0) return one-tiny; else return tiny-one;
288 if(hx<0&&ix>=0x40180000) return two-tiny;/* x < -6 *
    [all...]
e_sqrtf.c 23 static const float one = 1.0, tiny=1.0e-30; variable
76 z = one-tiny; /* trigger inexact flag */
78 z = one+tiny;
e_sinhf.c 42 if(shuge+x>one) return x;/* sinh(tiny) = tiny with inexact */
s_erff.c 24 tiny = 1e-30, variable
130 if(hx>=0) return one-tiny; else return tiny-one;
197 if(hx<0&&ix>=0x40c00000) return two-tiny;/* x < -6 */
209 if(hx>0) return tiny*tiny; else return two-tiny;
  /external/fdlibm/
e_atan2.c 49 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) *
    [all...]
s_scalbn.c 31 tiny = 1.0e-300; variable
49 if (n< -50000) return tiny*x; /*underflow*/
59 else return tiny*ieee_copysign(tiny,x); /*underflow*/
e_pow.c 76 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;
199 /* now |1-x| is tiny <= 2**-20, suffice to compute
    [all...]
s_erf.c 73 * = 2.0 - tiny (if x <= -6)
75 * erf(x) = sign(x)*(1.0 - tiny)
98 * erf(x) = sign(x) *(1 - tiny) (raise inexact)
99 * erfc(x) = tiny*tiny (raise underflow) if x > 0
100 * = 2 - tiny if x<0
116 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 *
    [all...]
s_tanh.c 41 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 */
  /external/webkit/WebCore/manual-tests/
svg-animation-parseValues.svg 2 <!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1 Tiny//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11-tiny.dtd">
4 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" baseProfile="tiny" id="svg-root" width="100%" height="100%" viewBox="0 0 480 360">
  /frameworks/base/core/tests/coretests/src/android/view/
BigCache.java 49 final View tiny = new View(this); local
50 tiny.setId(R.id.a);
51 tiny.setBackgroundColor(0xFFFF0000);
52 tiny.setLayoutParams(new LinearLayout.LayoutParams(screenWidth, screenHeight));
65 testBed.addView(tiny);
  /external/icu4c/tools/toolutil/
flagparser.h 16 * Tiny flag file parser using ICU and intended for use in ICU tests and in build tools.
  /external/qemu/
LICENSE 13 3) The Tiny Code Generator (TCG) is released under the BSD license
  /bionic/libc/bionic/
ldexp.c 84 tiny = 1.0e-300; variable
107 if (n< -50000) return tiny*x; /*underflow*/
117 else return tiny*_copysign(tiny,x); /*underflow*/
  /system/core/libacc/
LICENSE 1 Obfuscated Tiny C Compiler
  /external/qemu/distrib/sdl-1.2.12/src/video/
e_pow.h 183 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;
189 /* now |1-x| is tiny <= 2**-20, suffice to compute
267 return s*tiny*tiny; /* underflow *
    [all...]
  /external/skia/include/core/
SkPreConfig.h 81 /* e.g. the ARM instructions have conditional execution, making tiny branches cheap */

Completed in 137 milliseconds

1 2 3 4 5 6 7 8 910