Home
last modified time | relevance | path

Searched refs:upperBound (Results 1 – 25 of 4597) sorted by relevance

12345678910>>...184

/dports/science/ergo/ergo-3.8/source/matrix/
H A DInterval.h61 A.upperBound < B.upperBound ? in intersect()
62 A.upperBound : B.upperBound); in intersect()
74 this->upperBound = this->upperBound < other.upperBound ? in intersect()
75 this->upperBound : other.upperBound; in intersect()
152 upperBound * other.upperBound);
172 upperBound + other.upperBound);
254 upperBound = 2 * upperBound - upperBound * upperBound; in puriStep()
265 upperBound = upperBound * upperBound; in puriStep()
287 upperBound = template_blas_sqrt(upperBound); in invPuriStep()
318 upperBound = 2 * alpha * upperBound - alpha * alpha * upperBound * upperBound; in puriStep()
[all …]
/dports/java/jfreechart/jfreechart-1.0.17/source/org/jfree/data/statistics/
H A DSimpleHistogramBin.java60 private double upperBound; field in SimpleHistogramBin
98 if (lowerBound >= upperBound) { in SimpleHistogramBin()
102 this.upperBound = upperBound; in SimpleHistogramBin()
123 return this.upperBound; in getUpperBound()
159 if (value > this.upperBound) { in accepts()
165 if (value == this.upperBound) { in accepts()
180 if (this.upperBound < bin.lowerBound) { in overlapsWith()
183 if (this.lowerBound > bin.upperBound) { in overlapsWith()
217 if (this.upperBound < bin.upperBound) { in compareTo()
220 if (this.upperBound > bin.upperBound) { in compareTo()
[all …]
/dports/math/ensmallen/ensmallen-2.17.0/tests/
H A Dpso_test.cpp65 arma::vec upperBound(2); variable
67 upperBound.fill(60);
104 upperBound.fill(60);
177 upperBound.fill(1);
215 upperBound.fill(5);
237 upperBound.fill(4);
260 upperBound.fill(2);
294 upperBound.fill(-9);
316 upperBound.fill(1);
338 upperBound.fill(-4);
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/scirenderer/src/org/scilab/forge/scirenderer/ruler/graduations/
H A DAbstractGraduations.java48 private final double upperBound; field in AbstractGraduations
64 this.upperBound = parentGraduations.getUpperBound(); in AbstractGraduations()
80 this.upperBound = upperBound; in AbstractGraduations()
95 this.upperBound = upperBound; in AbstractGraduations()
111 this.upperBound = upperBound; in AbstractGraduations()
126 return upperBound; in getUpperBound()
144 if (value == upperBound) { in contain()
147 return (lowerBound < value) && (value < upperBound); in contain()
157 …if (Math.abs(value - (upperBound - lowerBound)) <= PRECISION || Math.abs(1 - value / (upperBound -… in containRelative()
160 return (0 < value) && (value < upperBound - lowerBound); in containRelative()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Numerics/Statistics/include/
H A DitkKdTree.hxx220 MeasurementVectorType upperBound; in Search() local
301 tempValue = upperBound[partitionDimension]; in NearestNeighborSearchLoop()
304 upperBound, nearestNeighbors ) ) in NearestNeighborSearchLoop()
308 upperBound[partitionDimension] = tempValue; in NearestNeighborSearchLoop()
317 upperBound, nearestNeighbors ); in NearestNeighborSearchLoop()
327 upperBound, nearestNeighbors ) ) in NearestNeighborSearchLoop()
340 upperBound, nearestNeighbors ); in NearestNeighborSearchLoop()
362 MeasurementVectorType upperBound; in Search() local
499 upperBound[d] ) <= radius ) ) in BallWithinBounds()
527 else if( query[d] >= upperBound[d] ) in BoundsOverlapBall()
[all …]
/dports/java/jfreechart/jfreechart-1.0.17/source/org/jfree/chart/renderer/
H A DGrayPaintScale.java65 private double upperBound; field in GrayPaintScale
90 public GrayPaintScale(double lowerBound, double upperBound) { in GrayPaintScale() argument
91 this(lowerBound, upperBound, 255); in GrayPaintScale()
107 public GrayPaintScale(double lowerBound, double upperBound, int alpha) { in GrayPaintScale() argument
108 if (lowerBound >= upperBound) { in GrayPaintScale()
118 this.upperBound = upperBound; in GrayPaintScale()
143 return this.upperBound; in getUpperBound()
168 v = Math.min(v, this.upperBound); in getPaint()
169 int g = (int) ((v - this.lowerBound) / (this.upperBound in getPaint()
201 if (this.upperBound != that.upperBound) { in equals()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DReinterpretNode.java146 long upperBound; in floatToInt() local
148 if (stamp.upperBound() < 0.0) { in floatToInt()
155 upperBound = 0; in floatToInt()
225 double upperBound; in intToFloat() local
228 upperBound = -minPositive; in intToFloat()
230 upperBound = -0.0; in intToFloat()
232 } else if (stamp.upperBound() < 0) { in intToFloat()
238 upperBound = -minPositive; in intToFloat()
240 upperBound = -0.0; in intToFloat()
243 upperBound = 0.0; in intToFloat()
[all …]
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DReinterpretNode.java146 long upperBound; in floatToInt() local
148 if (stamp.upperBound() < 0.0) { in floatToInt()
155 upperBound = 0; in floatToInt()
225 double upperBound; in intToFloat() local
228 upperBound = -minPositive; in intToFloat()
230 upperBound = -0.0; in intToFloat()
232 } else if (stamp.upperBound() < 0) { in intToFloat()
238 upperBound = -minPositive; in intToFloat()
240 upperBound = -0.0; in intToFloat()
243 upperBound = 0.0; in intToFloat()
[all …]
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DReinterpretNode.java147 long upperBound; in floatToInt() local
149 if (stamp.upperBound() < 0.0) { in floatToInt()
156 upperBound = 0; in floatToInt()
226 double upperBound; in intToFloat() local
229 upperBound = -minPositive; in intToFloat()
231 upperBound = -0.0; in intToFloat()
233 } else if (stamp.upperBound() < 0) { in intToFloat()
239 upperBound = -minPositive; in intToFloat()
241 upperBound = -0.0; in intToFloat()
244 upperBound = 0.0; in intToFloat()
[all …]
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DReinterpretNode.java146 long upperBound; in floatToInt() local
148 if (stamp.upperBound() < 0.0) { in floatToInt()
155 upperBound = 0; in floatToInt()
225 double upperBound; in intToFloat() local
228 upperBound = -minPositive; in intToFloat()
230 upperBound = -0.0; in intToFloat()
232 } else if (stamp.upperBound() < 0) { in intToFloat()
238 upperBound = -minPositive; in intToFloat()
240 upperBound = -0.0; in intToFloat()
243 upperBound = 0.0; in intToFloat()
[all …]
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DReinterpretNode.java146 long upperBound; in floatToInt() local
148 if (stamp.upperBound() < 0.0) { in floatToInt()
155 upperBound = 0; in floatToInt()
225 double upperBound; in intToFloat() local
228 upperBound = -minPositive; in intToFloat()
230 upperBound = -0.0; in intToFloat()
232 } else if (stamp.upperBound() < 0) { in intToFloat()
238 upperBound = -minPositive; in intToFloat()
240 upperBound = -0.0; in intToFloat()
243 upperBound = 0.0; in intToFloat()
[all …]
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DReinterpretNode.java147 long upperBound; in floatToInt() local
149 if (stamp.upperBound() < 0.0) { in floatToInt()
156 upperBound = 0; in floatToInt()
226 double upperBound; in intToFloat() local
229 upperBound = -minPositive; in intToFloat()
231 upperBound = -0.0; in intToFloat()
233 } else if (stamp.upperBound() < 0) { in intToFloat()
239 upperBound = -minPositive; in intToFloat()
241 upperBound = -0.0; in intToFloat()
244 upperBound = 0.0; in intToFloat()
[all …]
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DReinterpretNode.java147 long upperBound; in floatToInt() local
149 if (stamp.upperBound() < 0.0) { in floatToInt()
156 upperBound = 0; in floatToInt()
226 double upperBound; in intToFloat() local
229 upperBound = -minPositive; in intToFloat()
231 upperBound = -0.0; in intToFloat()
233 } else if (stamp.upperBound() < 0) { in intToFloat()
239 upperBound = -minPositive; in intToFloat()
241 upperBound = -0.0; in intToFloat()
244 upperBound = 0.0; in intToFloat()
[all …]
/dports/misc/box2d/box2d-2.4.1/include/box2d/
H A Db2_collision.h176 return 0.5f * (lowerBound + upperBound); in GetCenter()
188 float wx = upperBound.x - lowerBound.x; in GetPerimeter()
189 float wy = upperBound.y - lowerBound.y; in GetPerimeter()
197 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
204 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
213 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
214 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
221 b2Vec2 upperBound; ///< the upper vertex member
262 b2Vec2 d = upperBound - lowerBound; in IsValid()
271 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/games/kolf/kolf-21.12.3/external/Box2D/Collision/
H A Db2Collision.h170 return 0.5f * (lowerBound + upperBound); in GetCenter()
182 qreal wx = upperBound.x - lowerBound.x; in GetPerimeter()
183 qreal wy = upperBound.y - lowerBound.y; in GetPerimeter()
191 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
198 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
207 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
208 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
215 b2Vec2 upperBound; ///< the upper vertex member
256 b2Vec2 d = upperBound - lowerBound; in IsValid()
265 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/devel/juce/JUCE-f37e9a1/modules/juce_box2d/box2d/Collision/
H A Db2Collision.h168 return 0.5f * (lowerBound + upperBound); in GetCenter()
174 return 0.5f * (upperBound - lowerBound); in GetExtents()
180 float32 wx = upperBound.x - lowerBound.x; in GetPerimeter()
189 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
196 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
205 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
206 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
213 b2Vec2 upperBound; ///< the upper vertex member
254 b2Vec2 d = upperBound - lowerBound; in IsValid()
263 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/devel/love08/love-0.8.0/src/libraries/Box2D/Collision/
H A Db2Collision.h169 return 0.5f * (lowerBound + upperBound); in GetCenter()
175 return 0.5f * (upperBound - lowerBound); in GetExtents()
181 float32 wx = upperBound.x - lowerBound.x; in GetPerimeter()
190 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
197 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
206 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
207 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
214 b2Vec2 upperBound; ///< the upper vertex member
255 b2Vec2 d = upperBound - lowerBound; in IsValid()
264 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/devel/love/love-11.3/src/libraries/Box2D/Collision/
H A Db2Collision.h170 return 0.5f * (lowerBound + upperBound); in GetCenter()
176 return 0.5f * (upperBound - lowerBound); in GetExtents()
182 float32 wx = upperBound.x - lowerBound.x; in GetPerimeter()
191 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
198 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
207 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
208 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
215 b2Vec2 upperBound; ///< the upper vertex member
256 b2Vec2 d = upperBound - lowerBound; in IsValid()
265 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/devel/love10/love-0.10.2/src/libraries/Box2D/Collision/
H A Db2Collision.h170 return 0.5f * (lowerBound + upperBound); in GetCenter()
176 return 0.5f * (upperBound - lowerBound); in GetExtents()
182 float32 wx = upperBound.x - lowerBound.x; in GetPerimeter()
191 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
198 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
207 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
208 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
215 b2Vec2 upperBound; ///< the upper vertex member
256 b2Vec2 d = upperBound - lowerBound; in IsValid()
265 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/games/emptyepsilon/SeriousProton-EE-2021.06.23/src/Box2D/Collision/
H A Db2Collision.h170 return 0.5f * (lowerBound + upperBound); in GetCenter()
176 return 0.5f * (upperBound - lowerBound); in GetExtents()
182 float32 wx = upperBound.x - lowerBound.x; in GetPerimeter()
191 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
198 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
207 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
208 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
215 b2Vec2 upperBound; ///< the upper vertex member
256 b2Vec2 d = upperBound - lowerBound; in IsValid()
265 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/Box2D/Box2D/Collision/
H A Db2Collision.h170 return 0.5f * (lowerBound + upperBound); in GetCenter()
176 return 0.5f * (upperBound - lowerBound); in GetExtents()
182 float32 wx = upperBound.x - lowerBound.x; in GetPerimeter()
191 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
198 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
207 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
208 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
215 b2Vec2 upperBound; ///< the upper vertex member
256 b2Vec2 d = upperBound - lowerBound; in IsValid()
265 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/graphics/py-box2d-py/box2d-py-2.3.8/Box2D/Collision/
H A Db2Collision.h169 return 0.5f * (lowerBound + upperBound); in GetCenter()
175 return 0.5f * (upperBound - lowerBound); in GetExtents()
181 float32 wx = upperBound.x - lowerBound.x; in GetPerimeter()
190 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
197 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
206 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
207 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
214 b2Vec2 upperBound; ///< the upper vertex member
255 b2Vec2 d = upperBound - lowerBound; in IsValid()
264 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/devel/emscripten/emscripten-2.0.3/tests/third_party/box2d/Box2D/Collision/
H A Db2Collision.h174 return 0.5f * (lowerBound + upperBound); in GetCenter()
180 return 0.5f * (upperBound - lowerBound); in GetExtents()
186 float32 wx = upperBound.x - lowerBound.x; in GetPerimeter()
195 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
202 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
211 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
212 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
219 b2Vec2 upperBound; ///< the upper vertex member
260 b2Vec2 d = upperBound - lowerBound; in IsValid()
269 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/games/openclaw/OpenClaw-0.0-51-gbac7730/Box2D/Box2D/Collision/
H A Db2Collision.h170 return 0.5f * (lowerBound + upperBound); in GetCenter()
176 return 0.5f * (upperBound - lowerBound); in GetExtents()
182 float32 wx = upperBound.x - lowerBound.x; in GetPerimeter()
191 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
198 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
207 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
208 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
215 b2Vec2 upperBound; ///< the upper vertex member
256 b2Vec2 d = upperBound - lowerBound; in IsValid()
265 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]
/dports/games/openclaw/OpenClaw-0.0-51-gbac7730/ThirdParty/Box2D/Collision/
H A Db2Collision.h170 return 0.5f * (lowerBound + upperBound); in GetCenter()
176 return 0.5f * (upperBound - lowerBound); in GetExtents()
182 float32 wx = upperBound.x - lowerBound.x; in GetPerimeter()
191 upperBound = b2Max(upperBound, aabb.upperBound); in Combine()
198 upperBound = b2Max(aabb1.upperBound, aabb2.upperBound); in Combine()
207 result = result && aabb.upperBound.x <= upperBound.x; in Contains()
208 result = result && aabb.upperBound.y <= upperBound.y; in Contains()
215 b2Vec2 upperBound; ///< the upper vertex member
256 b2Vec2 d = upperBound - lowerBound; in IsValid()
265 d1 = b.lowerBound - a.upperBound; in b2TestOverlap()
[all …]

12345678910>>...184