/third_party/flutter/flutter/packages/flutter/test/gestures/ |
D | lsq_solver_test.dart | 10 bool approx(double value, double expectation) { 24 expect(approx(fit.coefficients[0], 1.0), isTrue); 25 expect(approx(fit.coefficients[1], 0.0), isTrue); 26 expect(approx(fit.confidence, 1.0), isTrue); 38 expect(approx(fit.coefficients[0], 1.0), isTrue); 39 expect(approx(fit.coefficients[1], 1.0), isTrue); 40 expect(approx(fit.confidence, 1.0), isTrue); 52 expect(approx(fit.coefficients[0], 1.0), isTrue); 53 expect(approx(fit.coefficients[1], 0.0), isTrue); 54 expect(approx(fit.coefficients[2], 0.0), isTrue); [all …]
|
/third_party/optimized-routines/math/tools/ |
D | v_exp.sollya | 14 approx = proc(poly,d) { 21 p = roundcoefficients(approx(poly,i), [|D ...|]);
|
D | cos.sollya | 15 approx = proc(poly,d) { 22 p = roundcoefficients(approx(poly,2*i), [|D ...|]);
|
D | v_sin.sollya | 21 approx = proc(poly,d) { 28 p = roundcoefficients(approx(poly,2*i), [|D ...|]);
|
D | sin.sollya | 21 approx = proc(poly,d) { 28 p = roundcoefficients(approx(poly,2*i), [|D ...|]);
|
D | log_abs.sollya | 15 approx = proc(poly,d) { 22 p = roundcoefficients(approx(poly,i), [|D ...|]);
|
D | log.sollya | 20 approx = proc(poly,d) { 27 p = roundcoefficients(approx(poly,i), [|D ...|]);
|
D | v_log.sollya | 19 approx = proc(poly,d) { 26 p = roundcoefficients(approx(poly,i), [|D ...|]);
|
D | exp.sollya | 15 approx = proc(poly,d) { 22 p = roundcoefficients(approx(poly,i), [|D ...|]);
|
D | log2_abs.sollya | 19 approx = proc(poly,d) { 26 p = roundcoefficients(approx(poly,i), [|D ...|]);
|
D | log2.sollya | 25 approx = proc(poly,d) { 32 p = roundcoefficients(approx(poly,i), [|D ...|]);
|
D | exp2.sollya | 23 approx = proc(poly,d) { 34 p = roundcoefficients(approx(poly,i), [|D ...|]);
|
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-random/ |
D | runtests.py | 395 approx = sig * POW2[k] 396 error = abs(approx - real)
|
/third_party/mesa3d/docs/ |
D | application-issues.rst | 23 Some old OpenGL games (approx. ten years or older) may crash during
|
/third_party/flutter/skia/include/third_party/skcms/ |
D | skcms.h | 148 skcms_TransferFunction* approx,
|
/third_party/skia/include/third_party/skcms/ |
D | skcms.h | 234 skcms_TransferFunction* approx,
|
/third_party/mksh/ |
D | histrap.c | 389 hist_get(const char *str, bool approx, bool allow_cur) in hist_get() argument 397 if (approx) in hist_get() 404 if (approx) in hist_get()
|
/third_party/flutter/skia/src/gpu/effects/ |
D | GrRRectBlurEffect.fp | 56 // TODO: this could be approx but the texture coords will need to be updated
|
/third_party/vk-gl-cts/external/vulkan-docs/src/katex/contrib/ |
D | mhchem.mjs | 380 'operator': /^(?:\+|(?:[\-=<>]|<<|>>|\\approx|\$\\approx\$)(?=\s|$|-?[0-9]))/, 3087 case "\\approx": 3088 return " {}\\approx{} "; 3090 case "$\\approx$": 3091 return " {}\\approx{} ";
|
/third_party/ffmpeg/libavcodec/x86/ |
D | celt_pvq_search.asm | 124 mulps m5, m4 ; m5 = p = Sxy_new*approx(1/sqrt(Syy) )
|
/third_party/libabigail/autoconf-archive/ |
D | ax_valgrind_check.m4 | 162 VALGRIND_helgrind_FLAGS ?= --history-level=approx
|
/third_party/skia/src/core/ |
D | SkVM.cpp | 823 F32 approx = sub(e, 124.225514990f); in approx_log2() local 824 approx = sub(approx, mul(1.498030302f, m)); in approx_log2() 825 approx = sub(approx, div(1.725879990f, add(0.3520887068f, m))); in approx_log2() 827 return approx; in approx_log2() 832 F32 approx = add(x, 121.274057500f); in approx_pow2() local 833 approx = sub(approx, mul( 1.490129070f, f)); in approx_pow2() 834 approx = add(approx, div(27.728023300f, sub(4.84252568f, f))); in approx_pow2() 836 return pun_to_F32(round(mul(1.0f * (1<<23), approx))); in approx_pow2()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXInstrInfo.td | 871 "rcp.approx.ftz.f32 \t$dst, $b;", 877 "rcp.approx.f32 \t$dst, $b;", 886 "div.approx.ftz.f32 \t$dst, $a, $b;", 892 "div.approx.ftz.f32 \t$dst, $a, $b;", 898 "div.approx.f32 \t$dst, $a, $b;", 904 "div.approx.f32 \t$dst, $a, $b;", 910 // rcp.approx gives the same result as div.full(1.0f, a) and is faster. 915 "rcp.approx.ftz.f32 \t$dst, $b;", 921 "rcp.approx.f32 \t$dst, $b;", 1034 "sin.approx.f32 \t$dst, $src;", [all …]
|
/third_party/flutter/skia/third_party/skcms/ |
D | skcms.cc | 1675 skcms_TransferFunction* approx, in skcms_ApproximateCurve() argument 1677 if (!curve || !approx || !max_error) { in skcms_ApproximateCurve() 1757 *approx = tf; in skcms_ApproximateCurve()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | Reactor.cpp | 4674 bool approx = HasRcpApprox() && (p != Precision::Full); in DoRcp() local 4676 bool approx = HasRcpApprox(); in DoRcp() 4681 if(approx) in DoRcp() 4747 bool approx = HasRcpApprox() && (p != Precision::Full); in DoRcpSqrt() local 4749 bool approx = HasRcpApprox(); in DoRcpSqrt() 4752 if(approx) in DoRcpSqrt()
|