Home
last modified time | relevance | path

Searched refs:magnitude (Results 226 – 250 of 12537) sorted by relevance

12345678910>>...502

/dports/sysutils/munin-common/munin-2.0.67/plugins/lib/Munin/
H A DPlugin.pm536 for my $magnitude (sort { $a <=> $b } keys %large) {
537 last if $magnitude >= $absnum;
538 $mag = $magnitude;
544 for my $magnitude (sort { $a <=> $b } keys %small) {
545 last if $magnitude >= $absnum;
546 $mag = $magnitude;
/dports/sysutils/munin-master/munin-2.0.67/plugins/lib/Munin/
H A DPlugin.pm536 for my $magnitude (sort { $a <=> $b } keys %large) {
537 last if $magnitude >= $absnum;
538 $mag = $magnitude;
544 for my $magnitude (sort { $a <=> $b } keys %small) {
545 last if $magnitude >= $absnum;
546 $mag = $magnitude;
/dports/sysutils/munin-node/munin-2.0.67/plugins/lib/Munin/
H A DPlugin.pm536 for my $magnitude (sort { $a <=> $b } keys %large) {
537 last if $magnitude >= $absnum;
538 $mag = $magnitude;
544 for my $magnitude (sort { $a <=> $b } keys %small) {
545 last if $magnitude >= $absnum;
546 $mag = $magnitude;
/dports/math/vtk9/VTK-9.1.0/Imaging/Core/Testing/Python/
H A DTestDotProduct.py26 magnitude = vtk.vtkImageDotProduct() variable
27 magnitude.SetInput1Data(cast2.GetOutput())
28 magnitude.SetInput2Data(gradient.GetOutput())
31 viewer.SetInputConnection(magnitude.GetOutputPort())
/dports/math/vtk8/VTK-8.2.0/Imaging/Core/Testing/Python/
H A DTestDotProduct.py26 magnitude = vtk.vtkImageDotProduct() variable
27 magnitude.SetInput1Data(cast2.GetOutput())
28 magnitude.SetInput2Data(gradient.GetOutput())
31 viewer.SetInputConnection(magnitude.GetOutputPort())
/dports/games/passage/Passage_v4_UnixSource/minorGems/util/random/
H A DStdRandomSource.h119 int magnitude = (int)( randFloat * ( onePastRange - inRangeStart ) ); in getRandomBoundedInt() local
121 return magnitude + inRangeStart; in getRandomBoundedInt()
131 double magnitude = randDouble * ( inRangeEnd - inRangeStart ); in getRandomBoundedDouble() local
133 return magnitude + inRangeStart; in getRandomBoundedDouble()
/dports/games/cultivation/Cultivation_8_UnixSource/minorGems/util/random/
H A DStdRandomSource.h119 long magnitude = (int)( randFloat * ( onePastRange - inRangeStart ) ); in getRandomBoundedInt() local
121 return magnitude + inRangeStart; in getRandomBoundedInt()
131 double magnitude = randDouble * ( inRangeEnd - inRangeStart ); in getRandomBoundedDouble() local
133 return magnitude + inRangeStart; in getRandomBoundedDouble()
/dports/www/pear-Services_GeoNames/Services_GeoNames-1.0.1/tests/
H A Dtest_earthquakes.phpt27 [magnitude] => 6.1
38 [magnitude] => 5.1
49 [magnitude] => 5.2
60 [magnitude] => 5.4
/dports/math/vtk6/VTK-6.2.0/Imaging/Core/Testing/Python/
H A DTestDotProduct.py27 magnitude = vtk.vtkImageDotProduct() variable
28 magnitude.SetInput1Data(cast2.GetOutput())
29 magnitude.SetInput2Data(gradient.GetOutput())
32 viewer.SetInputConnection(magnitude.GetOutputPort())
/dports/multimedia/kodi/xbmc-19.3-Matrix/xbmc/input/joysticks/keymaps/
H A DKeyHandler.h46 bool OnAnalogMotion(float magnitude, unsigned int motionTimeMs) override;
63 float magnitude,
88 float magnitude,
95 static bool IsPressed(float magnitude);
/dports/science/py-avogadrolibs/avogadrolibs-1.94.0/avogadro/vtk/
H A Dvtkglwidget.cpp104 auto magnitude = std::max(std::fabs(range[0]), std::fabs(range[1])); in cubeVolume() local
105 color->AddRGBPoint(-magnitude, 1.0, 0.0, 0.0); in cubeVolume()
106 color->AddRGBPoint(-0.01 * magnitude, 1.0, 0.0, 0.0); in cubeVolume()
107 color->AddRGBPoint(0.01 * magnitude, 0.0, 0.0, 1.0); in cubeVolume()
108 color->AddRGBPoint(magnitude, 0.0, 0.0, 1.0); in cubeVolume()
110 compositeOpacity->AddPoint(-magnitude, 1.0); in cubeVolume()
111 compositeOpacity->AddPoint(-0.2 * magnitude, 0.8); in cubeVolume()
113 compositeOpacity->AddPoint(0.2 * magnitude, 0.8); in cubeVolume()
114 compositeOpacity->AddPoint(magnitude, 1.0); in cubeVolume()
/dports/science/avogadrolibs/avogadrolibs-1.94.0/avogadro/vtk/
H A Dvtkglwidget.cpp104 auto magnitude = std::max(std::fabs(range[0]), std::fabs(range[1])); in cubeVolume() local
105 color->AddRGBPoint(-magnitude, 1.0, 0.0, 0.0); in cubeVolume()
106 color->AddRGBPoint(-0.01 * magnitude, 1.0, 0.0, 0.0); in cubeVolume()
107 color->AddRGBPoint(0.01 * magnitude, 0.0, 0.0, 1.0); in cubeVolume()
108 color->AddRGBPoint(magnitude, 0.0, 0.0, 1.0); in cubeVolume()
110 compositeOpacity->AddPoint(-magnitude, 1.0); in cubeVolume()
111 compositeOpacity->AddPoint(-0.2 * magnitude, 0.8); in cubeVolume()
113 compositeOpacity->AddPoint(0.2 * magnitude, 0.8); in cubeVolume()
114 compositeOpacity->AddPoint(magnitude, 1.0); in cubeVolume()
/dports/devel/libbson/libbson-1.8.1/src/bson/
H A Dbson-iso8601.c84 int magnitude = 1; in parse_num() local
91 for (i = 1; i <= len; i++, magnitude *= 10) { in parse_num()
92 value += (str[len - i] - '0') * magnitude; in parse_num()
261 int magnitude; in _bson_iso8601_date_parse() local
268 for (i = 1, magnitude = 1; i <= millis_len; i++, magnitude *= 10) { in _bson_iso8601_date_parse()
269 millis += (millis_ptr[millis_len - i] - '0') * magnitude; in _bson_iso8601_date_parse()
/dports/devel/py-pint/Pint-0.18/pint/testsuite/
H A Dtest_issues.py36 assert t.magnitude == 4
216 v2s = q2s.to("ms").magnitude
235 v2s = q2s.to("ms").magnitude
265 return q.magnitude, q.units
321 assert isinstance(x.magnitude, int)
369 assert math.isnan(q[0].magnitude)
372 assert math.isnan(q[1].magnitude)
430 assert q1.magnitude == 1
679 assert q.magnitude == 1
797 assert np.sign(q[0].magnitude)
[all …]
/dports/games/el/Eternal-Lands-1.9.5.9-1/eye_candy/
H A Deffect_firefly.cpp49 const coord_t magnitude = velocity.magnitude(); in idle() local
50 if (magnitude > 0.35) in idle()
51 velocity /= (magnitude / 0.35); in idle()
52 if (magnitude < 0.05) in idle()
58 while (velocity.magnitude() < 0.05); in idle()
/dports/graphics/ossim/ossim-OrchidIsland-2.11.1/include/ossim/base/
H A DossimEcefPoint.h110 return theData.magnitude();
112 double magnitude()const
114 return theData.magnitude();
118 return theData.magnitude();
122 double result = magnitude();
/dports/multimedia/kdenlive/kdenlive-21.12.3/src/jogshuttle/
H A Djogaction.cpp44 size_t magnitude = size_t(abs(shuttle_pos)); in slotShuttlePos() local
45 if (magnitude < SPEEDS_SIZE) { in slotShuttlePos()
47 emit rewind(-SPEEDS[magnitude]); in slotShuttlePos()
52 emit forward(SPEEDS[magnitude]); in slotShuttlePos()
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/scientific-0.3.7.0/src/Data/
H A DScientific.hs139 import Utils (maxExpt, roundTo, magnitude)
275 l = magnitude (e2 - e1)
276 r = magnitude (e1 - e2)
283 l = magnitude (e2 - e1)
284 r = magnitude (e1 - e2)
312 | e < 0 = c % magnitude (-e)
313 | otherwise = (c * magnitude e) % 1
543 fromInteger (magnitude r)
554 m = magnitude n
611 else case c `quotRemInteger` magnitude (-e) of
[all …]
/dports/finance/hs-hledger-ui/hledger-ui-1.19/_cabal_deps/scientific-0.3.7.0/src/Data/
H A DScientific.hs139 import Utils (maxExpt, roundTo, magnitude)
275 l = magnitude (e2 - e1)
276 r = magnitude (e1 - e2)
283 l = magnitude (e2 - e1)
284 r = magnitude (e1 - e2)
312 | e < 0 = c % magnitude (-e)
313 | otherwise = (c * magnitude e) % 1
543 fromInteger (magnitude r)
554 m = magnitude n
611 else case c `quotRemInteger` magnitude (-e) of
[all …]
/dports/devel/hs-darcs/darcs-2.16.4/_cabal_deps/scientific-0.3.7.0/src/Data/
H A DScientific.hs139 import Utils (maxExpt, roundTo, magnitude)
275 l = magnitude (e2 - e1)
276 r = magnitude (e1 - e2)
283 l = magnitude (e2 - e1)
284 r = magnitude (e1 - e2)
312 | e < 0 = c % magnitude (-e)
313 | otherwise = (c * magnitude e) % 1
543 fromInteger (magnitude r)
554 m = magnitude n
611 else case c `quotRemInteger` magnitude (-e) of
[all …]
/dports/www/hs-postgrest/postgrest-8.0.0/_cabal_deps/scientific-0.3.7.0/src/Data/
H A DScientific.hs139 import Utils (maxExpt, roundTo, magnitude)
275 l = magnitude (e2 - e1)
276 r = magnitude (e1 - e2)
283 l = magnitude (e2 - e1)
284 r = magnitude (e1 - e2)
312 | e < 0 = c % magnitude (-e)
313 | otherwise = (c * magnitude e) % 1
543 fromInteger (magnitude r)
554 m = magnitude n
611 else case c `quotRemInteger` magnitude (-e) of
[all …]
/dports/devel/hs-ShellCheck/ShellCheck-0.8.0/_cabal_deps/scientific-0.3.7.0/src/Data/
H A DScientific.hs139 import Utils (maxExpt, roundTo, magnitude)
275 l = magnitude (e2 - e1)
276 r = magnitude (e1 - e2)
283 l = magnitude (e2 - e1)
284 r = magnitude (e1 - e2)
312 | e < 0 = c % magnitude (-e)
313 | otherwise = (c * magnitude e) % 1
543 fromInteger (magnitude r)
554 m = magnitude n
611 else case c `quotRemInteger` magnitude (-e) of
[all …]
/dports/misc/hs-hascard/hascard-0.3.0.1/_cabal_deps/scientific-0.3.7.0/src/Data/
H A DScientific.hs139 import Utils (maxExpt, roundTo, magnitude)
275 l = magnitude (e2 - e1)
276 r = magnitude (e1 - e2)
283 l = magnitude (e2 - e1)
284 r = magnitude (e1 - e2)
312 | e < 0 = c % magnitude (-e)
313 | otherwise = (c * magnitude e) % 1
543 fromInteger (magnitude r)
554 m = magnitude n
611 else case c `quotRemInteger` magnitude (-e) of
[all …]
/dports/databases/pecl-mongodb/mongodb-1.9.1/src/libmongoc/src/libbson/src/bson/
H A Dbson-iso8601.c84 int magnitude = 1; in parse_num() local
91 for (i = 1; i <= len; i++, magnitude *= 10) { in parse_num()
92 value += (str[len - i] - '0') * magnitude; in parse_num()
261 int magnitude; in _bson_iso8601_date_parse() local
268 for (i = 1, magnitude = 1; i <= millis_len; i++, magnitude *= 10) { in _bson_iso8601_date_parse()
269 millis += (millis_ptr[millis_len - i] - '0') * magnitude; in _bson_iso8601_date_parse()
/dports/editors/fpc-ide/fpc-3.2.2/rtl/linux/
H A Dlinuxvcs.pp88 magnitude:int64;
107 magnitude := 1;
113 '-': magnitude := -1;
116 + (magnitude * (ord(statln[i]) - ord('0')));
117 magnitude := magnitude * 10;
120 magnitude := 1;

12345678910>>...502