Home
last modified time | relevance | path

Searched refs:roots (Results 251 – 275 of 18373) sorted by relevance

1...<<11121314151617181920>>...735

/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/pathops/
H A DSkDCubicLineIntersection.cpp121 int intersectRay(double roots[3]) { in intersectRay()
131 int count = SkDCubic::RootsValidT(A, B, C, D, roots); in intersectRay()
133 SkDPoint calcPt = c.ptAtT(roots[index]); in intersectRay()
154 int roots = intersectRay(rootVals); in intersect() local
155 for (int index = 0; index < roots; ++index) { in intersect()
173 SkDPoint calcPt = c.ptAtT(roots[index]); in HorizontalIntersect()
189 double roots[3]; in horizontalIntersect() local
192 double cubicT = roots[index]; in horizontalIntersect()
236 SkDPoint calcPt = c.ptAtT(roots[index]); in VerticalIntersect()
252 double roots[3]; in verticalIntersect() local
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/pathops/
H A DSkDCubicLineIntersection.cpp121 int intersectRay(double roots[3]) { in intersectRay()
130 int count = SkDCubic::RootsValidT(A, B, C, D, roots); in intersectRay()
132 SkDPoint calcPt = c.ptAtT(roots[index]); in intersectRay()
153 int roots = intersectRay(rootVals); in intersect() local
154 for (int index = 0; index < roots; ++index) { in intersect()
172 SkDPoint calcPt = c.ptAtT(roots[index]); in HorizontalIntersect()
188 double roots[3]; in horizontalIntersect() local
191 double cubicT = roots[index]; in horizontalIntersect()
235 SkDPoint calcPt = c.ptAtT(roots[index]); in VerticalIntersect()
251 double roots[3]; in verticalIntersect() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/src/pathops/
H A DSkDCubicLineIntersection.cpp121 int intersectRay(double roots[3]) { in intersectRay()
131 int count = SkDCubic::RootsValidT(A, B, C, D, roots); in intersectRay()
133 SkDPoint calcPt = c.ptAtT(roots[index]); in intersectRay()
154 int roots = intersectRay(rootVals); in intersect() local
155 for (int index = 0; index < roots; ++index) { in intersect()
173 SkDPoint calcPt = c.ptAtT(roots[index]); in HorizontalIntersect()
189 double roots[3]; in horizontalIntersect() local
192 double cubicT = roots[index]; in horizontalIntersect()
236 SkDPoint calcPt = c.ptAtT(roots[index]); in VerticalIntersect()
252 double roots[3]; in verticalIntersect() local
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/objects/
H A Dhash-table-inl.h126 Handle<Map> HashTable<Derived, Shape>::GetMap(ReadOnlyRoots roots) { in GetMap() argument
127 return roots.hash_table_map_handle(); in GetMap()
131 Handle<Map> EphemeronHashTable::GetMap(ReadOnlyRoots roots) { in GetMap() argument
132 return roots.ephemeron_hash_table_map_handle(); in GetMap()
139 ReadOnlyRoots roots(isolate); in FindEntry()
140 return FindEntry(isolate, roots, key, Shape::Hash(roots, key)); in FindEntry()
150 Object undefined = roots.undefined_value(); in FindEntry()
151 Object the_hole = roots.the_hole_value(); in FindEntry()
169 return k != roots.undefined_value() && k != roots.the_hole_value(); in IsKey()
176 if (!IsKey(roots, k)) return false; in ToKey()
[all …]
/dports/x11/mlterm/mlterm-3.9.1/uitoolkit/quartz/
H A Dui_display.c89 ui_window_unmap(_disp.roots[count]); in ui_display_close_all()
90 ui_window_final(_disp.roots[count]); in ui_display_close_all()
93 free(_disp.roots); in ui_display_close_all()
117 if ((p = realloc(disp->roots, sizeof(ui_window_t*) * (disp->num_roots + 1))) == NULL) { in ui_display_show_root()
125 disp->roots = p; in ui_display_show_root()
138 disp->roots[disp->num_roots++] = root; in ui_display_show_root()
155 if (disp->roots[count] == root) { in ui_display_remove_root()
162 disp->roots[count] = NULL; in ui_display_remove_root()
164 disp->roots[count] = disp->roots[disp->num_roots]; in ui_display_remove_root()
178 ui_window_idling(_disp.roots[count]); in ui_display_idling()
/dports/x11/mlterm/mlterm-3.9.1/uitoolkit/beos/
H A Dui_display.c88 ui_window_unmap(_disp.roots[count]); in ui_display_close_all()
89 ui_window_final(_disp.roots[count]); in ui_display_close_all()
92 free(_disp.roots); in ui_display_close_all()
122 if ((p = realloc(disp->roots, sizeof(ui_window_t*) * (disp->num_roots + 1))) == NULL) { in ui_display_show_root()
130 disp->roots = p; in ui_display_show_root()
143 disp->roots[disp->num_roots++] = root; in ui_display_show_root()
152 if (disp->roots[count] == root) { in ui_display_remove_root()
156 disp->roots[count] = NULL; in ui_display_remove_root()
158 disp->roots[count] = disp->roots[disp->num_roots]; in ui_display_remove_root()
175 ui_window_idling(_disp.roots[count]); in ui_display_idling()
/dports/math/py-pygsl/pygsl-2.3.0/tests/
H A Droots_test.py3 from pygsl import roots
45 status = roots.test_interval(x_lo, x_up, 0, 0.001)
62 self.sys = roots.gsl_function(quadratic, (a,b,c))
65 solver = roots.brent(self.sys)
69 solver = roots.bisection(self.sys)
73 solver = roots.falsepos(self.sys)
82 …self.sys = roots.gsl_function_fdf(quadratic, quadratic_deriv, quadratic_fdf, Numeric.array((a,b,c)…
95 status = roots.test_delta(x, x0, 0.0, 1e-3)
108 solver = roots.newton(self.sys)
112 solver = roots.secant(self.sys)
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/libgo/go/cmd/go/internal/mvs/
H A Dgraph.go17 roots []module.Version member
30 func NewGraph(cmp func(v1, v2 string) int, roots []module.Version) *Graph {
33 roots: roots[:len(roots):len(roots)],
39 for _, m := range roots {
114 seenRoot := make(map[string]bool, len(g.roots))
117 for _, r := range g.roots {
151 for _, m := range g.roots {
182 queue := g.roots
183 for _, m := range g.roots {
/dports/math/yacas/yacas-1.9.1/tests/
H A Dsturm.yts3 - random-test code for roots, be generating random roots and
18 Local(coefs,p,roots,px);
26 roots:=FindRealRoots(p);
27 //Echo("roots ",roots);
34 Local(coefs,p,roots,px,mult);
44 roots:=FindRealRoots(p);
45 Echo("roots ",roots);
46 Verify(Length(roots) = Length(coefs));
47 Verify(Length(RemoveDuplicates(roots)) = Length(coefs));
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/lang/go-devel/go-becaeea1199b875bc24800fa88f2f4fea119bf78/src/cmd/go/internal/mvs/
H A Dgraph.go17 roots []module.Version member
30 func NewGraph(cmp func(v1, v2 string) int, roots []module.Version) *Graph {
33 roots: roots[:len(roots):len(roots)],
39 for _, m := range roots {
114 seenRoot := make(map[string]bool, len(g.roots))
117 for _, r := range g.roots {
151 for _, m := range g.roots {
182 queue := g.roots
183 for _, m := range g.roots {
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/devel/riscv64-gcc/gcc-8.3.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/lang/gcc48/gcc-4.8.5/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/devel/arm-none-eabi-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/devel/riscv64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/devel/aarch64-none-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/lang/gcc9-aux/gcc-9.1.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/lang/gcc9-devel/gcc-9-20211007/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/devel/riscv32-unknown-elf-gcc/gcc-8.4.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/lang/gcc8/gcc-8.5.0/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]
/dports/lang/gnat_util/gcc-6-20180516/gcc/testsuite/gcc.dg/
H A Dpr36584.c151 int atmin, int atmax, double *roots) in sbisect() argument
173 roots[0] = mid; in sbisect()
181 roots[0] = mid; in sbisect()
192 roots[0] = mid; in sbisect()
208 roots[0] = mid; in sbisect()
216 roots[0] = mid; in sbisect()
226 n1 = sbisect (np, sseq, min_value, mid, atmin, atmid, roots); in sbisect()
227 n2 = sbisect (np, sseq, mid, max_value, atmid, atmax, &roots[n1]); in sbisect()
238 roots[0] = mid; in sbisect()
259 double roots[7]; in main() local
[all …]

1...<<11121314151617181920>>...735