Home
last modified time | relevance | path

Searched refs:tMin (Results 1 – 25 of 508) sorted by relevance

12345678910>>...21

/dports/cad/abc/abc-a4518e6f833885c905964f1233d11e5b941ec24c/src/bool/lucky/
H A DluckyFast6.c108 if(tCur<tMin) in Extra_Truth6MinimumRoundOne()
114 if(tCur<tMin) in Extra_Truth6MinimumRoundOne()
120 if(tCur<tMin) in Extra_Truth6MinimumRoundOne()
127 if(t<tMin) in Extra_Truth6MinimumRoundOne()
130 tMin = t; in Extra_Truth6MinimumRoundOne()
134 if(tCur<tMin) in Extra_Truth6MinimumRoundOne()
140 if(tCur<tMin) in Extra_Truth6MinimumRoundOne()
146 if(tCur<tMin) in Extra_Truth6MinimumRoundOne()
164 if(t<tMin) in Extra_Truth6MinimumRoundOne_noEBFC()
192 return tMin; in Extra_Truth6MinimumRoundMany()
[all …]
/dports/science/chrono/chrono-7.0.1/src/tests/unit_tests/collision/
H A Dutest_COLL_bullet_utils.cpp139 btScalar tMin; in TEST() local
165 ASSERT_FLOAT_EQ(tMin, -0.5); in TEST()
227 btScalar tMin; in CheckSegmentCylinder() local
253 ASSERT_FLOAT_EQ(tMin, -sH); in CheckSegmentCylinder()
267 ASSERT_FLOAT_EQ(tMin, -sH); in CheckSegmentCylinder()
303 ASSERT_GT(tMin, -sH); in CheckSegmentCylinder()
310 ASSERT_FLOAT_EQ(tMin, -sH); in CheckSegmentCylinder()
319 ASSERT_FLOAT_EQ(tMin, -sH); in CheckSegmentCylinder()
327 ASSERT_GT(tMin, -sH); in CheckSegmentCylinder()
348 ASSERT_FLOAT_EQ(tMin, -sH); in CheckSegmentCylinder()
[all …]
/dports/science/chrono/chrono-7.0.1/src/chrono/collision/
H A DChCollisionUtilsBullet.cpp143 tMin = btMax(tMin, btMin(t1, t2)); in IntersectSegmentBox()
146 if (tMin > tMax) in IntersectSegmentBox()
158 tMin = btMax(tMin, btMin(t1, t2)); in IntersectSegmentBox()
161 if (tMin > tMax) in IntersectSegmentBox()
173 tMin = btMax(tMin, btMin(t1, t2)); in IntersectSegmentBox()
176 if (tMin > tMax) in IntersectSegmentBox()
181 if ((tMin < -hlen && tMax < -hlen) || (tMin > +hlen && tMax > +hlen)) in IntersectSegmentBox()
266 tMin = -sH; in IntersectSegmentCylinder()
287 tMin = btMax(tMin, t1); in IntersectSegmentCylinder()
290 tMin = btMax(tMin, t2); in IntersectSegmentCylinder()
[all …]
/dports/math/vtk9/VTK-9.1.0/Rendering/Core/
H A DvtkPointPicker.cxx41 double tol, double& tMin, double& distMin) in UpdateClosestPoint() argument
51 if (t < 0. || t > 1. || t > (tMin + tol)) in UpdateClosestPoint()
71 tMin = t; in UpdateClosestPoint()
137 double& tMin = localData.MinT; in operator ()() local
176 tMin = pick.MinT; in Execute()
215 double tMin = VTK_DOUBLE_MAX; in IntersectWithLine() local
284 if (tMin < this->GlobalTMin) in IntersectWithLine()
301 if (minPtId > -1 && tMin < this->GlobalTMin) in IntersectWithLine()
303 this->MarkPicked(path, p, m, tMin, minXYZ); in IntersectWithLine()
355 if (minPtId > -1 && tMin < this->GlobalTMin) in IntersectWithLine()
[all …]
H A DvtkCellPicker.cxx308 tMin = t1; in IntersectWithLine()
370 return tMin; in IntersectWithLine()
604 return tMin; in IntersectActorWithLine()
675 tMin = t; in IntersectDataSetWithLine()
855 if (tMin < t1 || tMin > t2) in IntersectHyperTreeGridWithLine()
942 return tMin; in IntersectHyperTreeGridWithLine()
1221 tMin = t; in IntersectVolumeWithLine()
1284 return tMin; in IntersectVolumeWithLine()
1346 if (tMin < t1 || tMin > t2) in IntersectImageWithLine()
1357 x[j] = x1[j] * (1.0 - tMin) + x2[j] * tMin; in IntersectImageWithLine()
[all …]
/dports/cad/openctm/OpenCTM-1.0.3/tools/
H A Dctmbench.cpp43 void BenchmarkLoads(int aIterations, const char * aFileName, double &tMin, in BenchmarkLoads() argument
64 tMin = t; in BenchmarkLoads()
69 if(t < tMin) tMin = t; in BenchmarkLoads()
82 double &tMin, double &tMax, double &tTotal) in BenchmarkSaves() argument
137 tMin = t; in BenchmarkSaves()
142 if(t < tMin) tMin = t; in BenchmarkSaves()
174 double tMin = 0.0, tMax = 0.0, tTotal = 0.0; in main() local
176 BenchmarkSaves(iterations, argv[2], argv[3], tMin, tMax, tTotal); in main()
178 BenchmarkLoads(iterations, argv[2], tMin, tMax, tTotal); in main()
181 cout << " Min: " << tMin * 1000.0 << " ms" << endl; in main()
/dports/math/vtk8/VTK-8.2.0/Rendering/Core/
H A DvtkPointPicker.cxx60 double tMin = VTK_DOUBLE_MAX; in IntersectWithLine() local
129 if ( tMin < this->GlobalTMin ) in IntersectWithLine()
131 this->MarkPicked(path, p, m, tMin, minXYZ); in IntersectWithLine()
143 tMin, minXYZ); in IntersectWithLine()
147 if ( minPtId > -1 && tMin < this->GlobalTMin ) in IntersectWithLine()
149 this->MarkPicked(path, p, m, tMin, minXYZ); in IntersectWithLine()
204 if ( minPtId > -1 && tMin < this->GlobalTMin ) in IntersectWithLine()
212 return tMin; in IntersectWithLine()
273 tol, tMin, minPtDist) ) in IntersectDataSetWithLine()
299 if ( t < 0. || t > 1. || t > tMin + this->Tolerance ) in UpdateClosestPoint()
[all …]
H A DvtkCellPicker.cxx309 tMin = t1; in IntersectWithLine()
366 return tMin; in IntersectWithLine()
465 tMin = t; in IntersectActorWithLine()
611 return tMin; in IntersectActorWithLine()
685 tMin = t; in IntersectDataSetWithLine()
996 tMin = t; in IntersectVolumeWithLine()
1059 return tMin; in IntersectVolumeWithLine()
1143 if (tMin != tMax) in IntersectImageWithLine()
1159 if (tMin < t1 || tMin > t2) in IntersectImageWithLine()
1170 x[j] = x1[j]*(1.0 - tMin) + x2[j]*tMin; in IntersectImageWithLine()
[all …]
/dports/graphics/reactphysics3d/reactphysics3d-0.8.0/src/collision/shapes/
H A DBoxShape.cpp98 decimal tMin = DECIMAL_SMALLEST; in raycast() local
130 if (t1 > tMin) { in raycast()
131 tMin = t1; in raycast()
137 if (tMin > ray.maxFraction) return false; in raycast()
140 if (tMin > tMax) return false; in raycast()
145 if (tMin < decimal(0.0) || tMin > ray.maxFraction) return false; in raycast()
148 Vector3 localHitPoint = ray.point1 + tMin * rayDirection; in raycast()
152 raycastInfo.hitFraction = tMin; in raycast()
H A DConvexMeshShape.cpp114 decimal tMin = decimal(0.0); in raycast() local
147 if (t > tMin) { in raycast()
148 tMin = t; in raycast()
159 if (tMin > tMax) return false; in raycast()
166 assert(tMin >= decimal(0.0)); in raycast()
168 assert(tMin <= tMax); in raycast()
172 Vector3 localHitPoint = ray.point1 + tMin * direction; in raycast()
174 raycastInfo.hitFraction = tMin; in raycast()
/dports/math/vtk6/VTK-6.2.0/Rendering/Core/
H A DvtkPointPicker.cxx59 double ray[3], rayFactor, tMin, x[3], t, projXYZ[3], minXYZ[3]; in IntersectWithLine() local
141 tMin=VTK_DOUBLE_MAX; in IntersectWithLine()
164 if ( t >= 0.0 && t <= 1.0 && t <= (tMin+this->Tolerance) ) in IntersectWithLine()
180 tMin = t; in IntersectWithLine()
190 for (minPtId=(-1),tMin=VTK_DOUBLE_MAX; ptId<numPts; ptId++) in IntersectWithLine()
201 if ( t >= 0.0 && t <= 1.0 && t <= (tMin+this->Tolerance) ) in IntersectWithLine()
217 tMin = t; in IntersectWithLine()
225 if ( minPtId>(-1) && tMin < this->GlobalTMin ) in IntersectWithLine()
227 this->MarkPicked(path, p, m, tMin, minXYZ); in IntersectWithLine()
232 return tMin; in IntersectWithLine()
H A DvtkCellPicker.cxx264 tMin = t1; in IntersectWithLine()
321 return tMin; in IntersectWithLine()
393 tMin = t1*(1.0 - tMin) + t2*tMin; in IntersectActorWithLine()
612 return tMin; in IntersectActorWithLine()
827 tMin = t; in IntersectVolumeWithLine()
890 return tMin; in IntersectVolumeWithLine()
967 double tMin, tMax; in IntersectImageWithLine() local
974 if (tMin != tMax) in IntersectImageWithLine()
990 if (tMin < t1 || tMin > t2) in IntersectImageWithLine()
1001 x[j] = x1[j]*(1.0 - tMin) + x2[j]*tMin; in IntersectImageWithLine()
[all …]
/dports/audio/bcg729/bcg729-faaa895862165acde6df8add722ba4f85a25007d/src/
H A DdecodeAdaptativeCodeVector.c135 …int16_t tMin = SUB16(*intPitchDelay,5); /* intPitchDelay contains the intPitch computed for subfra… in decodeAdaptativeCodeVector() local
136 if (tMin<20) { in decodeAdaptativeCodeVector()
137 tMin = 20; in decodeAdaptativeCodeVector()
139 if (tMin>134) { in decodeAdaptativeCodeVector()
140 tMin = 134; in decodeAdaptativeCodeVector()
147 *intPitchDelay = ADD16(*intPitchDelay,tMin); in decodeAdaptativeCodeVector()
/dports/games/0ad/0ad-0.0.23b-alpha/source/maths/
H A DBoundingBoxOriented.cpp50 float tMin = -FLT_MAX; in RayIntersect() local
78 if (t1 > tMin) tMin = t1; in RayIntersect()
82 if (tMin > tMax) return false; // ray misses the box in RayIntersect()
94 tMin_out = tMin; in RayIntersect()
/dports/security/vault/vault-1.8.2/vendor/github.com/klauspost/compress/zstd/
H A Denc_dfast.go144 if tMin < 0 {
145 tMin = 0
191 if tMin < 0 {
192 tMin = 0
309 tMin := s - e.maxMatchOff
310 if tMin < 0 {
311 tMin = 0
509 if tMin < 0 {
510 tMin = 0
623 if tMin < 0 {
[all …]
/dports/security/vault/vault-1.8.2/vendor/go.mongodb.org/mongo-driver/vendor/github.com/klauspost/compress/zstd/
H A Denc_dfast.go144 if tMin < 0 {
145 tMin = 0
191 if tMin < 0 {
192 tMin = 0
309 tMin := s - e.maxMatchOff
310 if tMin < 0 {
311 tMin = 0
509 if tMin < 0 {
510 tMin = 0
623 if tMin < 0 {
[all …]
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vault-plugin-database-mongodbatlas/vendor/github.com/klauspost/compress/zstd/
H A Denc_dfast.go144 if tMin < 0 {
145 tMin = 0
191 if tMin < 0 {
192 tMin = 0
309 tMin := s - e.maxMatchOff
310 if tMin < 0 {
311 tMin = 0
509 if tMin < 0 {
510 tMin = 0
623 if tMin < 0 {
[all …]
/dports/net/concourse-fly/concourse-6.7.1/vendor/github.com/klauspost/compress/zstd/
H A Denc_dfast.go144 if tMin < 0 {
145 tMin = 0
191 if tMin < 0 {
192 tMin = 0
309 tMin := s - e.maxMatchOff
310 if tMin < 0 {
311 tMin = 0
509 if tMin < 0 {
510 tMin = 0
623 if tMin < 0 {
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/go.mongodb.org/mongo-driver/vendor/github.com/klauspost/compress/zstd/
H A Denc_dfast.go144 if tMin < 0 {
145 tMin = 0
191 if tMin < 0 {
192 tMin = 0
309 tMin := s - e.maxMatchOff
310 if tMin < 0 {
311 tMin = 0
509 if tMin < 0 {
510 tMin = 0
623 if tMin < 0 {
[all …]
/dports/net-mgmt/prometheus2/prometheus-2.30.3/vendor/go.mongodb.org/mongo-driver/vendor/github.com/klauspost/compress/zstd/
H A Denc_dfast.go144 if tMin < 0 {
145 tMin = 0
191 if tMin < 0 {
192 tMin = 0
309 tMin := s - e.maxMatchOff
310 if tMin < 0 {
311 tMin = 0
509 if tMin < 0 {
510 tMin = 0
623 if tMin < 0 {
[all …]
/dports/misc/concourse/concourse-6.7.2/vendor/github.com/klauspost/compress/zstd/
H A Denc_dfast.go144 if tMin < 0 {
145 tMin = 0
191 if tMin < 0 {
192 tMin = 0
309 tMin := s - e.maxMatchOff
310 if tMin < 0 {
311 tMin = 0
509 if tMin < 0 {
510 tMin = 0
623 if tMin < 0 {
[all …]
/dports/science/jdftx/jdftx-1.6.0/jdftx/core/
H A DMinimize_linmin.h185 double tMin = NAN; //location of minimum (NAN if none) in linminCubicWolfe() local
191 tMin = tOpt; in linminCubicWolfe()
193 if(std::isfinite(tMin)) in linminCubicWolfe()
194 { tMin = std::min(tMin, p.alphaTincreaseFactor); //cap on forward-in-t step in linminCubicWolfe()
195 tMin = std::max(tMin, 1.-p.alphaTincreaseFactor); //cap on backward-in-t step in linminCubicWolfe()
200 if(Ep1<=0) tMin = p.alphaTincreaseFactor; //E(t) decreases above t=1, take max forward-in-t step in linminCubicWolfe()
201 else tMin = 1.-p.alphaTincreaseFactor; //E(t) decreases below t=0, take max backward-in-t step in linminCubicWolfe()
203 double alphaNew = alphaPrev + tMin*(alpha-alphaPrev); in linminCubicWolfe()
/dports/finance/quantlib/QuantLib-1.20/ql/termstructures/volatility/
H A Dabcd.cpp32 Real AbcdFunction::volatility(Time tMin, Time tMax, Time T) const { in volatility() argument
33 if (tMax==tMin) in volatility()
35 QL_REQUIRE(tMax>tMin, "tMax must be > tMin"); in volatility()
36 return std::sqrt(variance(tMin, tMax, T)/(tMax-tMin)); in volatility()
39 Real AbcdFunction::variance(Time tMin, Time tMax, Time T) const { in variance() argument
40 return covariance(tMin, tMax, T, T); in variance()
/dports/www/filtron/filtron-93f8b22/vendor/github.com/klauspost/compress/zstd/
H A Denc_dfast.go148 tMin := s - e.maxMatchOff
149 if tMin < 0 {
150 tMin = 0
152 …for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < max…
197 tMin := s - e.maxMatchOff
198 if tMin < 0 {
199 tMin = 0
320 tMin := s - e.maxMatchOff
321 if tMin < 0 {
322 tMin = 0
[all …]
/dports/sysutils/jest/jest-f76bc46/vendor/github.com/klauspost/compress/zstd/
H A Denc_dfast.go148 tMin := s - e.maxMatchOff
149 if tMin < 0 {
150 tMin = 0
152 …for repIndex > tMin && start > startLimit && src[repIndex-1] == src[start-1] && seq.matchLen < max…
197 tMin := s - e.maxMatchOff
198 if tMin < 0 {
199 tMin = 0
320 tMin := s - e.maxMatchOff
321 if tMin < 0 {
322 tMin = 0
[all …]

12345678910>>...21