/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_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_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_expm1.c | 117 tiny = 1.0e-300, variable 156 if(x+tiny<0.0) /* raise inexact */ 157 return tiny-one; /* return -1 */
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | denormal_test.py | 34 tiny = np.finfo(dtype).tiny 35 self.assertEqual(tiny, tiny / 16 * 16) 44 tiny = np.finfo(dtype).tiny 47 flush = 0.1 * constant_op.constant(tiny, shape=shape)
|
/external/flac/test/ |
D | test_seeking.sh | 80 …-sample-rate=44100 --bps=8 --channels=1 --blocksize=576 -S- --output-name=tiny.flac noise8m32.raw … 82 …ample-rate=44100 --bps=8 --channels=1 --blocksize=576 -S10x --output-name=tiny-s.flac noise8m32.ra… 85 tiny_samples=`metaflac${EXE} --show-total-samples tiny.flac` 97 if run_test_seeking tiny$suffix.flac $tiny_seek_count $tiny_samples noise8m32.raw ; then : ; else 107 …if run_metaflac --no-filename --set-total-samples=0 tiny$suffix.flac small$suffix.flac ; then : ; … 112 if run_test_seeking tiny$suffix.flac $tiny_seek_count $tiny_samples noise8m32.raw ; then : ; else 125 …ed --sample-rate=44100 --bps=8 --channels=1 --blocksize=576 --output-name=tiny.oga --ogg noise8m32… 130 if run_test_seeking tiny.oga $tiny_seek_count $tiny_samples noise8m32.raw ; then : ; else 141 rm -f tiny.flac tiny.oga small.flac small.oga tiny-s.flac small-s.flac
|
/external/pdfium/third_party/agg23/ |
D | agg_clip_liang_barsky.h | 76 float tiny = (yin - y1) / deltay; in clip_liang_barsky() local 78 if (tinx < tiny) { in clip_liang_barsky() 80 tin2 = tiny; in clip_liang_barsky() 82 tin1 = tiny; in clip_liang_barsky() 98 if(tinx > tiny) { in clip_liang_barsky() 102 *x++ = (T)(x1 + (deltax * tiny)); in clip_liang_barsky() 121 if(tinx > tiny) { in clip_liang_barsky()
|
/external/clang/test/CodeGen/ |
D | struct-union-BE.c | 9 struct tiny { struct 18 struct tiny x; in fstr() argument 21 x = va_arg (ap, struct tiny); in fstr() 44 struct tiny x[3]; in foo()
|
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/musl/src/math/ |
D | sqrtf.c | 77 uint32_t tiny = predict_false(d2==0) ? 0 : 0x01000000; in sqrtf() local 78 tiny |= (d1^d2) & 0x80000000; in sqrtf() 79 t = asfloat(tiny); in sqrtf()
|
D | sqrt.c | 152 uint64_t tiny = predict_false(d2==0) ? 0 : 0x0010000000000000; in sqrt() local 153 tiny |= (d1^d2) & 0x8000000000000000; in sqrt() 154 t = asdouble(tiny); in sqrt()
|
D | fma.c | 169 double_t tiny = DBL_MIN/FLT_MIN * r; in fma() local 170 r += (double)(tiny*tiny) * (r-r); in fma()
|
/external/s2-geometry-library-java/tests/com/google/common/geometry/ |
D | S2CapTest.java | 74 S2Cap tiny = in testBasic() local 76 S2Point tangent = S2Point.normalize(S2Point.crossProd(tiny.axis(), new S2Point(3, 2, 1))); in testBasic() 77 assertTrue(tiny.contains(S2Point.add(tiny.axis(), S2Point.mul(tangent, 0.99 * kTinyRad)))); in testBasic() 78 assertTrue(!tiny.contains(S2Point.add(tiny.axis(), S2Point.mul(tangent, 1.01 * kTinyRad)))); in testBasic() 107 assertTrue(hemi.contains(tiny)); in testBasic()
|
/external/tensorflow/tensorflow/python/kernel_tests/random/ |
D | util.py | 69 tiny = np.finfo(samples.dtype).tiny 71 total_variance = np.where(total_variance < tiny, tiny, total_variance)
|
D | random_gamma_test.py | 117 dtypes.float16: stats.gamma(alpha).cdf(np.finfo(np.float16).tiny), 118 dtypes.float32: stats.gamma(alpha).cdf(np.finfo(np.float32).tiny), 119 dtypes.float64: stats.gamma(alpha).cdf(np.finfo(np.float64).tiny)
|
/external/pdfium/xfa/fgas/crt/ |
D | cfgas_decimal_unittest.cpp | 47 WideString tiny = CFGAS_Decimal(1e20f, 0).ToWideString(); in TEST() local 49 EXPECT_EQ(tiny_expected.GetLength(), tiny.GetLength()); in TEST() 50 EXPECT_STREQ(tiny_expected.First(8).c_str(), tiny.First(8).c_str()); in TEST()
|
/external/curl/tests/data/ |
D | test218 | 35 just some tiny teeny contents 55 just some tiny teeny contents
|
/external/rust/crates/libm/src/math/ |
D | fma.rs | 189 let tiny: f64 = f64::MIN_POSITIVE / f32::MIN_POSITIVE as f64 * r; in fma() localVariable 190 r += (tiny * tiny) * (r - r); in fma()
|
/external/tensorflow/tensorflow/python/ops/ |
D | random_grad.py | 178 tiny = np.finfo(mean.dtype.as_numpy_dtype).tiny 180 cdf_sample = clip_ops.clip_by_value(cdf_sample, tiny, 1 - eps)
|
/external/pigweed/pw_protobuf/ |
D | README.md | 1 # pw\_protobuf: A tiny Protocol Buffers implementation
|
/external/tensorflow/tensorflow/compiler/tests/ |
D | special_math_test.py | 244 low=np.finfo(dtype).tiny, high=1., size=[NUM_SAMPLES]).astype(dtype) 341 low=np.finfo(dtype).tiny, high=1., size=[NUM_SAMPLES]).astype(dtype) 412 low=np.finfo(dtype).tiny, high=1., size=[NUM_SAMPLES]).astype(dtype) 414 low=np.finfo(dtype).tiny, high=1., size=[NUM_SAMPLES]).astype(dtype) 501 low=np.finfo(dtype).tiny, high=1., 505 low=np.finfo(dtype).tiny, high=1., 598 low=np.finfo(dtype).tiny, high=1., size=[NUM_SAMPLES]).astype(dtype) 600 low=np.finfo(dtype).tiny, high=1., size=[NUM_SAMPLES]).astype(dtype)
|
/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…
|