Searched defs:tiny (Results 1 - 16 of 16) sorted by relevance

/external/fdlibm/
H A 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*/
H A 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 */
H A 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_ata
[all...]
H A De_sqrt.c70 * huge + tiny is equal to huge, and whether huge - tiny is
71 * equal to huge for some floating point number "huge" and "tiny".
86 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;
H A Ds_expm1.c117 tiny = 1.0e-300, variable
156 if(x+tiny<0.0) /* raise inexact */
157 return tiny-one; /* return -1 */
H A 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;
199 /* now |1-x| is tiny <
[all...]
H A Ds_erf.c73 * = 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;/*
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DTestUtilities.cpp21 static bool tiny(const Cubic& cubic) { function
45 if (!tiny(cubicPair.first()) && !controls_inside(cubicPair.first())) {
51 if (!tiny(cubicPair.second()) && !controls_inside(cubicPair.second())) {
/external/skia/experimental/Intersection/
H A DTestUtilities.cpp21 static bool tiny(const Cubic& cubic) { function
45 if (!tiny(cubicPair.first()) && !controls_inside(cubicPair.first())) {
51 if (!tiny(cubicPair.second()) && !controls_inside(cubicPair.second())) {
/external/pdfium/core/src/fxge/agg/agg23/
H A Dagg_clip_liang_barsky.h65 FX_FLOAT tiny = FXSYS_Div(yin - y1, deltay); local
67 if (tinx < tiny) {
69 tin2 = tiny;
71 tin1 = tiny;
87 if(tinx > tiny) {
91 *x++ = (T)(x1 + FXSYS_Mul(deltax, tiny));
110 if(tinx > tiny) {
/external/qemu/distrib/sdl-1.2.15/src/video/
H A Dmath_private.h171 tiny = 1.0e-300; variable
/external/clang/test/CodeGen/
H A Dsparcv9-abi.c102 struct tiny { struct
109 struct tiny f_tiny(struct tiny x) {
119 struct tiny x = { 1 };
158 // CHECK-DAG: %[[ADR:[^ ]+]] = bitcast i8* %[[CUR]] to %struct.tiny*
161 s += va_arg(ap, struct tiny).a;
/external/eigen/test/
H A Darray.cpp205 const RealScalar tiny = sqrt(std::numeric_limits<RealScalar>::epsilon()); local
206 s1 += Scalar(tiny);
207 m1 += ArrayType::Constant(rows,cols,Scalar(tiny));
/external/bison/lib/
H A 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/skia/src/pathops/
H A DSkOpSegment.cpp654 // if the total range of t values is big enough, mark all tiny
655 bool tiny = span[less].fPt == span[more].fPt; local
659 fTiny |= span[index].fTiny = tiny;
2490 // if pair of spans on either side of tiny have the same end point and mid point, mark
2495 const SkOpSpan* endSpan = fTs.end() - 1; // last can't be tiny
3176 // FIXME: if called after remove, this needs to correct tiny
/external/chromium_org/third_party/skia/src/pathops/
H A DSkOpSegment.cpp660 // if the total range of t values is big enough, mark all tiny
661 bool tiny = span[less].fPt == span[more].fPt; local
665 fTiny |= span[index].fTiny = tiny;
711 return; // tiny spans may move in the wrong direction
2566 // if pair of spans on either side of tiny have the same end point and mid point, mark
2571 const SkOpSpan* endSpan = fTs.end() - 1; // last can't be tiny
3260 // FIXME: if called after remove, this needs to correct tiny

Completed in 258 milliseconds