Home
last modified time | relevance | path

Searched refs:findRoot (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dnumeric.d802 T findRoot(T, DF, DT)(scope DF f, in T a, in T b,
816 immutable r = findRoot(f, a, b, fa, fb, tolerance);
822 T findRoot(T, DF)(scope DF f, in T a, in T b) in findRoot() function
824 return findRoot(f, a, b, (T a, T b) => false); in findRoot()
860 Tuple!(T, T, R, R) findRoot(T, R, DF, DT)(scope DF f, in T ax, in T bx, in R fax, in R fbx,
1167 Tuple!(T, T, R, R) findRoot(T, R, DF)(scope DF f, in T ax, in T bx, in R fax, in R fbx)
1169 return findRoot(f, ax, bx, fax, fbx, (T a, T b) => false);
1173 T findRoot(T, R)(scope R delegate(T) f, in T a, in T b, in findRoot() function
1176 return findRoot!(T, R delegate(T), bool delegate(T lo, T hi))(f, a, b, tolerance); in findRoot()
1190 auto result = findRoot(f, x1, x2, f(x1), f(x2), in testFindRoot()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dnumeric.d1099 T findRoot(T, DF, DT)(scope DF f, const T a, const T b,
1113 immutable r = findRoot(f, a, b, fa, fb, tolerance);
1119 T findRoot(T, DF)(scope DF f, const T a, const T b) in findRoot() function
1121 return findRoot(f, a, b, (T a, T b) => false); in findRoot()
1157 Tuple!(T, T, R, R) findRoot(T, R, DF, DT)(scope DF f,
1465 Tuple!(T, T, R, R) findRoot(T, R, DF)(scope DF f,
1468 return findRoot(f, ax, bx, fax, fbx, (T a, T b) => false);
1472 T findRoot(T, R)(scope R delegate(T) f, const T a, const T b, in findRoot() function
1475 return findRoot!(T, R delegate(T), bool delegate(T lo, T hi))(f, a, b, tolerance); in findRoot()
1489 auto result = findRoot(f, x1, x2, f(x1), f(x2), in testFindRoot()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/internal/math/
H A Dgammafunction.d1785 import std.numeric : findRoot; in logmdigammaInverse()
1809 return 1 / findRoot((real x) => logmdigamma(1 / x) - y, y, 2*y); in logmdigammaInverse()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/internal/math/
H A Dgammafunction.d1799 import std.numeric : findRoot; in logmdigammaInverse()
1823 return 1 / findRoot((real x) => logmdigamma(1 / x) - y, y, 2*y); in logmdigammaInverse()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp300 const ClassInfo *findRoot() const { in findRoot() function
346 return findRoot()->ValueName < RHS.findRoot()->ValueName; in operator <()