/external/fdlibm/ |
D | 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) */ 103 case 3: return -pi-tiny ; /* ieee_atan(-...,-INF) */ [all …]
|
D | 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; 274 return s*tiny*tiny; /* underflow */ 276 if(p_l<=z-p_h) return s*tiny*tiny; /* underflow */
|
D | 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*/
|
D | 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 */
|
D | e_sqrt.c | 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;
|
D | s_erf.c | 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 */ 308 if(hx>0) return tiny*tiny; else return two-tiny;
|
D | s_expm1.c | 117 tiny = 1.0e-300, variable 156 if(x+tiny<0.0) /* raise inexact */ 157 return tiny-one; /* return -1 */
|
D | readme | 97 +-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/pdfium/third_party/agg23/ |
D | agg_clip_liang_barsky.h | 65 FX_FLOAT tiny = FXSYS_Div(yin - y1, deltay); in clip_liang_barsky() local 67 if (tinx < tiny) { in clip_liang_barsky() 69 tin2 = tiny; in clip_liang_barsky() 71 tin1 = tiny; in clip_liang_barsky() 87 if(tinx > tiny) { in clip_liang_barsky() 91 *x++ = (T)(x1 + FXSYS_Mul(deltax, tiny)); in clip_liang_barsky() 110 if(tinx > tiny) { in clip_liang_barsky()
|
/external/clang/test/CodeGen/ |
D | sparcv9-abi.c | 102 struct tiny { struct 109 struct tiny f_tiny(struct tiny x) { in f_tiny() argument 119 struct tiny x = { 1 }; in call_tiny() 161 s += va_arg(ap, struct tiny).a; in f_variable()
|
/external/v8/src/base/ |
D | ieee754.cc | 1026 static volatile double tiny = 1.0e-300; in atan2() local 1057 return pi + tiny; /* atan(+0,-anything) = pi */ in atan2() 1059 return -pi - tiny; /* atan(-0,-anything) =-pi */ in atan2() 1063 if ((ix | lx) == 0) return (hy < 0) ? -pi_o_2 - tiny : pi_o_2 + tiny; in atan2() 1070 return pi_o_4 + tiny; /* atan(+INF,+INF) */ in atan2() 1072 return -pi_o_4 - tiny; /* atan(-INF,+INF) */ in atan2() 1074 return 3.0 * pi_o_4 + tiny; /*atan(+INF,-INF)*/ in atan2() 1076 return -3.0 * pi_o_4 - tiny; /*atan(-INF,-INF)*/ in atan2() 1085 return pi + tiny; /* atan(+...,-INF) */ in atan2() 1087 return -pi - tiny; /* atan(-...,-INF) */ in atan2() [all …]
|
/external/curl/tests/data/ |
D | test218 | 34 just some tiny teeny contents 52 just some tiny teeny contents
|
/external/bison/lib/ |
D | timevar.c | 479 const float tiny = 5e-3; local 492 if (tv->elapsed.user < tiny 493 && tv->elapsed.sys < tiny 494 && tv->elapsed.wall < tiny)
|
/external/libxml2/result/schemas/ |
D | facet-unionST-err1_0_0.err | 1 ….xml:3: element foo: Schemas validity error : Element '{http://FOO}foo': 'tiny' is not a valid val…
|
/external/libogg/doc/libogg/ |
D | style.css | 7 P.tiny { font-size: 8pt }
|
/external/libvorbis/doc/vorbisfile/ |
D | style.css | 7 P.tiny { font-size: 8pt }
|
/external/libvorbis/doc/vorbisenc/ |
D | style.css | 7 P.tiny { font-size: 8pt }
|
/external/skia/tests/ |
D | PathOpsCubicReduceOrderTest.cpp | 23 static bool tiny(const SkDCubic& cubic) { 46 if (!tiny(cubicPair.first()) && !controls_inside(cubicPair.first())) { 52 if (!tiny(cubicPair.second()) && !controls_inside(cubicPair.second())) {
|
/external/wpa_supplicant_8/src/drivers/ |
D | drivers.mk | 48 DRV_LIBS += -lnl-tiny 165 DRV_LIBS += -lnl-tiny
|
D | drivers.mak | 58 DRV_LIBS += -lnl-tiny 176 DRV_LIBS += -lnl-tiny
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | construct-binary.data | 12 The binary value above is a tiny arrow encoded as a gif image.
|
/external/jemalloc/include/jemalloc/internal/ |
D | size_classes.sh | 213 * NTBINS: Number of tiny bins. 217 * LG_TINY_MAXCLASS: Lg of maximum tiny size class.
|
/external/jemalloc/ |
D | INSTALL | 267 technically cheats if --with-lg-tiny-min is smaller than 275 --with-lg-tiny-min=<lg-tiny-min> 276 Specify the base 2 log of the minimum tiny size class to support. Tiny 278 incorporated if <lg-tiny-min> is less than <lg-quantum> (see 286 The default of <lg-tiny-min>=3 works well in practice even on architectures 288 --with-lg-quantum=3 works. Smaller tiny size classes can, and will, cause
|
/external/strace/ |
D | gitlog-to-changelog | 97 Append the "(tiny change)" notation to the usual "date name email" 323 # `(tiny change)' annotation. 324 my $tiny = (grep (/^Copyright-paperwork-exempt:\s+[Yy]es$/, @line) 325 ? ' (tiny change)' : ''); 327 my $date_line = sprintf "%s %s$tiny\n",
|
/external/bison/build-aux/ |
D | gitlog-to-changelog | 96 Append the "(tiny change)" notation to the usual "date name email" 318 # `(tiny change)' annotation. 319 my $tiny = (grep (/^Copyright-paperwork-exempt:\s+[Yy]es$/, @line) 320 ? ' (tiny change)' : ''); 322 my $date_line = sprintf "%s %s$tiny\n",
|