Home
last modified time | relevance | path

Searched refs:testpoint (Results 1 – 25 of 153) sorted by relevance

1234567

/dports/lang/sdcc/sdcc-4.0.0/support/regression/tests/
H A Dfloat_single.c58 static const testpoint[] = variable
233 for ( i = 0; i < sizeof testpoint / sizeof testpoint[0]; i++ ) in testFloat()
235 result = testpoint[i].f (testpoint[i].arg); in testFloat()
237 rel_error = testpoint[i].result ? result/testpoint[i].result - 1.0 : result; in testFloat()
240 i, testpoint[i].arg, result, testpoint[i].result, rel_error, in testFloat()
241 (fabsf (rel_error) < testpoint[i].tolerance) ? "Ok" : "Fail");) in testFloat()
243 ASSERT (fabsf (rel_error) < testpoint[i].tolerance); in testFloat()
/dports/www/mathopd/mathopd-1.5p8/src/
H A Dimap.c179 point testpoint, pointarray[MAXVERTS]; in f_process_imap() local
185 testpoint.x = 0; in f_process_imap()
186 testpoint.y = 0; in f_process_imap()
194 testpoint.x = atol(r->args); in f_process_imap()
195 testpoint.y = atol(t); in f_process_imap()
196 if (testpoint.x || testpoint.y) in f_process_imap()
244 dist = sqr(pointarray[0].x - testpoint.x) + sqr(pointarray[0].y - testpoint.y); in f_process_imap()
256 if (text == 0 && pointinrect(testpoint, pointarray)) { in f_process_imap()
265 if (text == 0 && pointincircle(testpoint, pointarray)) { in f_process_imap()
274 if (text == 0 && pointinpoly(testpoint, pointarray, k)) { in f_process_imap()
[all …]
/dports/games/avp/avp-20170505/src/avp/
H A Dbh_waypt.c334 VECTORCH testpoint; in WaypointContainsNPC() local
340 testpoint.vx=sbPtr->DynPtr->Position.vx+sbPtr->SBdptr->ObMaxX-Global_Module_Offset.vx; in WaypointContainsNPC()
341 testpoint.vy=sbPtr->DynPtr->Position.vy+sbPtr->SBdptr->ObMaxY-Global_Module_Offset.vy; in WaypointContainsNPC()
343 if (WaypointContainsPoint(volume,&testpoint)) return(1); in WaypointContainsNPC()
348 if (WaypointContainsPoint(volume,&testpoint)) return(1); in WaypointContainsNPC()
353 if (WaypointContainsPoint(volume,&testpoint)) return(1); in WaypointContainsNPC()
358 if (WaypointContainsPoint(volume,&testpoint)) return(1); in WaypointContainsNPC()
363 if (WaypointContainsPoint(volume,&testpoint)) return(1); in WaypointContainsNPC()
368 if (WaypointContainsPoint(volume,&testpoint)) return(1); in WaypointContainsNPC()
373 if (WaypointContainsPoint(volume,&testpoint)) return(1); in WaypointContainsNPC()
[all …]
/dports/math/R-cran-geometry/geometry/src/
H A DRtsearchn.c124 coordT *testpoint; in C_tsearchn() local
125 testpoint = (coordT *) R_alloc(dim, sizeof(coordT)); in C_tsearchn()
130testpoint[k] = REAL(p)[i+n*k]; /* could have been pt_array = REAL(p) if p had been transposed */ in C_tsearchn()
131 if (debug) Rprintf(" %f", testpoint[k]); in C_tsearchn()
134 qh_setdelaunay(qh, dim, 1, testpoint); in C_tsearchn()
135 facet = qh_findbestfacet(qh, testpoint, qh_ALL, &bestdist, &isoutside); in C_tsearchn()
/dports/www/htdigest/httpd-2.4.6/modules/mappers/
H A Dmod_imagemap.c590 double testpoint[2]; in imap_handler_internal() local
629 testpoint[X] = get_x_coord(r->args); in imap_handler_internal()
630 testpoint[Y] = get_y_coord(r->args); in imap_handler_internal()
632 if ((testpoint[X] == -1 || testpoint[Y] == -1) || in imap_handler_internal()
633 (testpoint[X] == 0 && testpoint[Y] == 0)) { in imap_handler_internal()
636 testpoint[X] = -1; in imap_handler_internal()
637 testpoint[Y] = -1; in imap_handler_internal()
772 if (testpoint[X] == -1 || pointarray[0][X] == -1) { in imap_handler_internal()
780 if (pointinpoly(testpoint, pointarray)) { in imap_handler_internal()
793 if (pointincircle(testpoint, pointarray)) { in imap_handler_internal()
[all …]
/dports/www/apache24/httpd-2.4.53/modules/mappers/
H A Dmod_imagemap.c584 double testpoint[2]; in imap_handler_internal() local
623 testpoint[X] = get_x_coord(r->args); in imap_handler_internal()
624 testpoint[Y] = get_y_coord(r->args); in imap_handler_internal()
626 if ((testpoint[X] == -1 || testpoint[Y] == -1) || in imap_handler_internal()
627 (testpoint[X] == 0 && testpoint[Y] == 0)) { in imap_handler_internal()
630 testpoint[X] = -1; in imap_handler_internal()
631 testpoint[Y] = -1; in imap_handler_internal()
766 if (testpoint[X] == -1 || pointarray[0][X] == -1) { in imap_handler_internal()
774 if (pointinpoly(testpoint, pointarray)) { in imap_handler_internal()
787 if (pointincircle(testpoint, pointarray)) { in imap_handler_internal()
[all …]
/dports/math/py-pymc3/pymc-3.11.4/pymc3/tests/
H A Dtest_mixture.py193 testpoint = model0.test_point
194 testpoint["mus"] = test_mus
195 testpoint["taus"] = test_taus
196 assert_allclose(model0.logp(testpoint), model1.logp(testpoint))
197 assert_allclose(mixture0.logp(testpoint), mixture1.logp(testpoint))
198 assert_allclose(obs0.logp(testpoint), obs1.logp(testpoint))
200 assert_allclose(model0.logp(testpoint), model2.logp(testpoint))
202 assert_allclose(mixture0.logp(testpoint), mixture2.logp(testpoint))
204 assert_allclose(obs0.logp(testpoint), obs2.logp(testpoint))
255 testpoint = model.test_point
[all …]
/dports/games/excido/excido-0.1.5c/src/
H A DPlayer.cpp276 Vector testpoint,dist; in ShootCannon() local
287 testpoint=PerpLinePoint(tracersource,tracersource+path,ufoitem->data.s); in ShootCannon()
289 dist=testpoint-ufoitem->data.s; in ShootCannon()
291 …dist.Mag2()<ufoitem->data.collideradius2 && PointOnLine(tracersource,tracersource+path,testpoint)){ in ShootCannon()
295 hittemp=testpoint-tempv*ufoitem->data.collideradius* in ShootCannon()
317 testpoint=PerpLinePoint(tracersource,tracersource+path,mineitem->data.s); in ShootCannon()
319 dist=testpoint-mineitem->data.s; in ShootCannon()
321 …ist.Mag2()<mineitem->data.collideradius2 && PointOnLine(tracersource,tracersource+path,testpoint)){ in ShootCannon()
325 hittemp=testpoint-tempv*mineitem->data.collideradius* in ShootCannon()
/dports/net-mgmt/librenms/librenms-21.5.1/mibs/fiberhome/
H A DWRI-VOLTAGE-MIB113 "Unique index for the voltage testpoint."
121 "Description for the voltage testpoint."
129 "The lowest value for the voltage testpoint."
137 "The highest value for the voltage testpoint."
145 "The current measurement of the testpoint."
/dports/net-mgmt/observium/observium/mibs/fiberhome/
H A DWRI-VOLTAGE-MIB113 "Unique index for the voltage testpoint."
121 "Description for the voltage testpoint."
129 "The lowest value for the voltage testpoint."
137 "The highest value for the voltage testpoint."
145 "The current measurement of the testpoint."
/dports/games/nehquake/NehQuake-bjp-bin-src.linux/src/
H A Dworld.h61 #define SV_PointContents(testpoint) SV_HullPointContents(&sv.worldmodel->hulls[0], 0, (testpoint)) argument
/dports/net/quiche/quiche-0.9.0/tools/http3_test/tests/
H A Dhttpbin_tests.rs39 fn endpoint(testpoint: Option<&str>) -> url::Url { in endpoint()
48 if let Some(testpoint) = testpoint { in endpoint()
49 let path = format!("{}/{}", url.path(), &testpoint); in endpoint()
232 let url = endpoint(Some(testpoint)); in request_check_status()
1122 let url = endpoint(Some(&testpoint)); in status()
1238 let url = endpoint(Some(&testpoint)); in stream()
1280 let url = endpoint(Some(&testpoint)); in delay()
1387 let url = endpoint(Some(&testpoint)); in bytes()
1405 let url = endpoint(Some(&testpoint)); in stream_bytes()
1455 let testpoint = if format == &"image/svg+xml" { in image() localVariable
[all …]
/dports/net-mgmt/librenms/librenms-21.5.1/mibs/ubiquoss/
H A DUBQS-SYSRSC-MIB201 cpu utilization measured at a given testpoint is outside
215 cpu utilization measured at a given testpoint is outside
227 memory utilization measured at a given testpoint is outside
239 memory utilization measured at a given testpoint is outside
/dports/net-mgmt/librenms/librenms-21.5.1/mibs/cisco/
H A DCISCO-ENVMON-MIB197 of the associated testpoint maintained by the environmental
218 "Unique index for the testpoint being instrumented.
228 "Textual description of the testpoint being instrumented.
283 "The current state of the testpoint being instrumented."
303 the status of the associated testpoint maintained by the
324 "Unique index for the testpoint being instrumented.
334 "Textual description of the testpoint being instrumented.
379 "The current state of the testpoint being instrumented."
631 monitor detects a testpoint reaching a critical state
650 for the testpoint (i.e. is at the warning, critical, or
[all …]
/dports/net-mgmt/observium/observium/mibs/cisco/
H A DCISCO-ENVMON-MIB197 of the associated testpoint maintained by the environmental
218 "Unique index for the testpoint being instrumented.
228 "Textual description of the testpoint being instrumented.
283 "The current state of the testpoint being instrumented."
303 the status of the associated testpoint maintained by the
324 "Unique index for the testpoint being instrumented.
334 "Textual description of the testpoint being instrumented.
379 "The current state of the testpoint being instrumented."
631 monitor detects a testpoint reaching a critical state
650 for the testpoint (i.e. is at the warning, critical, or
[all …]
/dports/net-mgmt/netdisco-mibs/netdisco-mibs-4.010/cisco/
H A DCISCO-ENVMON-MIB.my197 of the associated testpoint maintained by the environmental
218 "Unique index for the testpoint being instrumented.
228 "Textual description of the testpoint being instrumented.
283 "The current state of the testpoint being instrumented."
303 the status of the associated testpoint maintained by the
324 "Unique index for the testpoint being instrumented.
334 "Textual description of the testpoint being instrumented.
379 "The current state of the testpoint being instrumented."
631 monitor detects a testpoint reaching a critical state
650 for the testpoint (i.e. is at the warning, critical, or
[all …]
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/include/osgUtil/
H A DDelaunayTriangulator85 /** return winding number as a float of loop around testpoint; may use multiple loops
87 float windingNumber(const osg::Vec3 &testpoint) const ;
89 /** true if testpoint is internal (or external) to constraint. */
90 virtual bool contains(const osg::Vec3 &testpoint) const;
91 virtual bool outside(const osg::Vec3 &testpoint) const;
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/include/osgUtil/
H A DDelaunayTriangulator85 /** return winding number as a float of loop around testpoint; may use multiple loops
87 float windingNumber(const osg::Vec3 &testpoint) const ;
89 /** true if testpoint is internal (or external) to constraint. */
90 virtual bool contains(const osg::Vec3 &testpoint) const;
91 virtual bool outside(const osg::Vec3 &testpoint) const;
/dports/www/elixir-html_sanitize_ex/html_sanitize_ex-1.3.0/test/
H A Dmarkdown_html_test.exs26 input = ~S(<a href="test.html" target="_blank" name="testpoint">hello world</a>)
27 expected = ~S(<a href="test.html" target="_blank" name="testpoint">hello world</a>)
32 input = ~S(<a href="test.html" target="asdf" name="testpoint">hello world</a>)
33 expected = ~S(<a href="test.html" name="testpoint">hello world</a>)
38 input = ~S(<a href="test.html" target="_blank" rel="noopener" name="testpoint">hello world</a>)
39 … expected = ~S(<a href="test.html" target="_blank" rel="noopener" name="testpoint">hello world</a>)
44 … input = ~S(<a href="test.html" target="_blank" rel="noreferrer" name="testpoint">hello world</a>)
45 …expected = ~S(<a href="test.html" target="_blank" rel="noreferrer" name="testpoint">hello world</a…
50 input = ~S(<a href="test.html" target="_blank" rel="asdf" name="testpoint">hello world</a>)
51 expected = ~S(<a href="test.html" target="_blank" name="testpoint">hello world</a>)
/dports/games/cataclysm-dda-tiles/Cataclysm-DDA-0.F/src/
H A Dmission_util.cpp150 tripoint_abs_omt testpoint = origin; in target_closest_lab_entrance() local
152 testpoint.z() = 0; in target_closest_lab_entrance()
153 tripoint_abs_omt surface = overmap_buffer.find_closest( testpoint, "lab_stairs", 0, false, in target_closest_lab_entrance()
156 testpoint.z() = -1; in target_closest_lab_entrance()
158 overmap_buffer.find_closest( testpoint, "hidden_lab_stairs", 0, false, in target_closest_lab_entrance()
/dports/games/cataclysm-dda/Cataclysm-DDA-0.F/src/
H A Dmission_util.cpp150 tripoint_abs_omt testpoint = origin; in target_closest_lab_entrance() local
152 testpoint.z() = 0; in target_closest_lab_entrance()
153 tripoint_abs_omt surface = overmap_buffer.find_closest( testpoint, "lab_stairs", 0, false, in target_closest_lab_entrance()
156 testpoint.z() = -1; in target_closest_lab_entrance()
158 overmap_buffer.find_closest( testpoint, "hidden_lab_stairs", 0, false, in target_closest_lab_entrance()
/dports/mail/thunderbird/thunderbird-91.8.0/comm/mailnews/db/gloda/modules/
H A DGlodaFundAttr.jsm144 // @testpoint gloda.noun.message.attr.fulltextMatches
158 // @testpoint gloda.noun.message.attr.subjectMatches
172 // @testpoint gloda.noun.message.attr.bodyMatches
186 // @testpoint gloda.noun.message.attr.attachmentNamesMatch
199 // @testpoint gloda.noun.message.attr.authorMatches
212 // @testpoint gloda.noun.message.attr.recipientsMatch
227 // @testpoint gloda.noun.message.attr.conversation
676 // @testpoint gloda.noun.message.attr.authorMatches
696 // @testpoint gloda.noun.message.attr.recipientsMatch
727 // @testpoint gloda.noun.message.attr.recipientsMatch
[all …]
/dports/math/dune-pdelab/dune-pdelab-20c7085389d3eb4f8ca99e1bc60f7fa6036536c8/dune/pdelab/constraints/
H A Dconforming.hh69 const FaceCoord testpoint = face_refelem.position(0,0); in boundary() local
72 if (!param.isDirichlet(ig,testpoint)) in boundary()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgUtil/
H A DDelaunayTriangulator.cpp1194 float DelaunayConstraint::windingNumber(const osg::Vec3 &testpoint) const in windingNumber()
1209 osg::Vec3 pi(prev.x()-testpoint.x(),prev.y()-testpoint.y(),0); in windingNumber()
1214 osg::Vec3 edge(curp.x()-testpoint.x(),curp.y()-testpoint.y(),0); in windingNumber()
1266 bool DelaunayConstraint::contains(const osg::Vec3 &testpoint) const in contains()
1269 …float theta=windingNumber(testpoint); // sum of angles subtended by the line array - the winding n… in contains()
1272 bool DelaunayConstraint::outside(const osg::Vec3 &testpoint) const in outside()
1275 …float theta=windingNumber(testpoint); // sum of angles subtended by the line array - the winding n… in outside()
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgUtil/
H A DDelaunayTriangulator.cpp1195 float DelaunayConstraint::windingNumber(const osg::Vec3 &testpoint) const in windingNumber()
1210 osg::Vec3 pi(prev.x()-testpoint.x(),prev.y()-testpoint.y(),0); in windingNumber()
1215 osg::Vec3 edge(curp.x()-testpoint.x(),curp.y()-testpoint.y(),0); in windingNumber()
1267 bool DelaunayConstraint::contains(const osg::Vec3 &testpoint) const in contains()
1270 …float theta=windingNumber(testpoint); // sum of angles subtended by the line array - the winding n… in contains()
1273 bool DelaunayConstraint::outside(const osg::Vec3 &testpoint) const in outside()
1276 …float theta=windingNumber(testpoint); // sum of angles subtended by the line array - the winding n… in outside()

1234567