Home
last modified time | relevance | path

Searched refs:localMin (Results 1 – 25 of 52) sorted by relevance

123

/dports/science/InsightToolkit/ITK-5.0.1/Modules/Filtering/ImageStatistics/include/
H A DitkMinimumMaximumImageFilter.hxx82 PixelType localMin = NumericTraits< PixelType >::max(); in ThreadedStreamedGenerateData() local
95 localMin = std::min(value, localMin); in ThreadedStreamedGenerateData()
110 localMin = std::min(value2,localMin); in ThreadedStreamedGenerateData()
115 localMin = std::min(value1,localMin); in ThreadedStreamedGenerateData()
123 m_ThreadMin = std::min(localMin, m_ThreadMin); in ThreadedStreamedGenerateData()
/dports/print/limereport/LimeReport-1.5.35/3rdparty/easyprofiler/profiler_gui/
H A Deasy_frame_rate_viewer.cpp137 if (val.first < localMin) in paint()
138 localMin = val.first; in paint()
143 if (val.second < localMin) in paint()
144 localMin = val.second; in paint()
150 const auto delta = std::max(localMax - localMin, 1e-3); in paint()
165 frameTime = std::max(localMin, 1.); in paint()
169 if (localMin < EASY_GLOBALS.frame_time && EASY_GLOBALS.frame_time < localMax) in paint()
171 y = fontHeight + 2 + h * (1. - (EASY_GLOBALS.frame_time - localMin) / delta); in paint()
179 point1.setY(fontHeight + 2 + h * (1. - (point1.y() - localMin) / delta)); in paint()
182 point2.setY(fontHeight + 2 + h * (1. - (point2.y() - localMin) / delta)); in paint()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/DSA/
H A DDSAKeyGeneration.cs96 int localMin = keySize.MinSize; in GetSecondMin()
98 if (localMin < min) in GetSecondMin()
101 min = localMin; in GetSecondMin()
103 else if (localMin < secondMin) in GetSecondMin()
105 secondMin = localMin; in GetSecondMin()
110 int secondLocal = localMin + keySize.SkipSize; in GetSecondMin()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/tests/System/Security/Cryptography/AlgorithmImplementations/RSA/
H A DKeyGeneration.cs95 int localMin = keySize.MinSize; in GetSecondMin()
97 if (localMin < min) in GetSecondMin()
100 min = localMin; in GetSecondMin()
102 else if (localMin < secondMin) in GetSecondMin()
104 secondMin = localMin; in GetSecondMin()
109 int secondLocal = localMin + keySize.SkipSize; in GetSecondMin()
/dports/misc/usd/USD-21.11/pxr/imaging/hdSt/shaders/
H A DfrustumCull.glslfx97 if (any(greaterThan(localMin, localMax)) ||
98 any(isinf(localMin)) || any(isinf(localMax))) {
104 p[0] = vec4(toClip * vec4(localMin.x, localMin.y, localMin.z, 1));
105 p[2] = vec4(toClip * vec4(localMin.x, localMax.y, localMin.z, 1));
106 p[5] = vec4(toClip * vec4(localMax.x, localMin.y, localMax.z, 1));
120 p[1] = vec4(toClip * vec4(localMin.x, localMin.y, localMax.z, 1));
122 p[4] = vec4(toClip * vec4(localMax.x, localMin.y, localMin.z, 1));
171 vec4 localMin = HdGet_bboxLocalMin();
175 toClip, localMin, localMax, cullParams.drawRangeNDC);
273 vec4 localMin = HdGet_bboxLocalMin();
[all …]
/dports/math/vtk9/VTK-9.1.0/Rendering/Core/Testing/Python/
H A DTestGetRangeColorTransferFunction.py18 localMin = vtk.reference(-1)
20 cmap.GetRange(localMin, localMax)
21 self.assertEqual(localMin, 0.0)
H A DTestGetRangeDiscretizableColorTransferFunction.py18 localMin = vtk.reference(-1)
20 cmap.GetRange(localMin, localMax)
21 self.assertEqual(localMin, 0.0)
/dports/math/vtk8/VTK-8.2.0/Rendering/Core/Testing/Python/
H A DTestGetRangeColorTransferFunction.py18 localMin = vtk.reference(-1)
20 cmap.GetRange(localMin, localMax)
21 self.assertEqual(localMin, 0.0)
H A DTestGetRangeDiscretizableColorTransferFunction.py18 localMin = vtk.reference(-1)
20 cmap.GetRange(localMin, localMax)
21 self.assertEqual(localMin, 0.0)
/dports/misc/usd/USD-21.11/pxr/base/gf/
H A Dfrustum.cpp1289 const GfVec3d &localMin = bbox.GetRange().GetMin(); in IntersectsViewVolume() local
1291 points[0] = GfVec4d(localMin[0], localMin[1], localMin[2], 1); in IntersectsViewVolume()
1292 points[1] = GfVec4d(localMin[0], localMin[1], localMax[2], 1); in IntersectsViewVolume()
1293 points[2] = GfVec4d(localMin[0], localMax[1], localMin[2], 1); in IntersectsViewVolume()
1294 points[3] = GfVec4d(localMin[0], localMax[1], localMax[2], 1); in IntersectsViewVolume()
1295 points[4] = GfVec4d(localMax[0], localMin[1], localMin[2], 1); in IntersectsViewVolume()
1296 points[5] = GfVec4d(localMax[0], localMin[1], localMax[2], 1); in IntersectsViewVolume()
1297 points[6] = GfVec4d(localMax[0], localMax[1], localMin[2], 1); in IntersectsViewVolume()
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXScrollbar.java810 int localMin = minSliderWidth; in calculateThumbRect() local
811 if (localVal > localMin) { in calculateThumbRect()
815 retVal.width = localMin; in calculateThumbRect()
816 hitTheWall = localMin; in calculateThumbRect()
825 int localMin = minSliderHeight; in calculateThumbRect() local
826 if (localVal > localMin) { in calculateThumbRect()
830 retVal.height = localMin; in calculateThumbRect()
831 hitTheWall = localMin; in calculateThumbRect()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXScrollbar.java810 int localMin = minSliderWidth; in calculateThumbRect() local
811 if (localVal > localMin) { in calculateThumbRect()
815 retVal.width = localMin; in calculateThumbRect()
816 hitTheWall = localMin; in calculateThumbRect()
825 int localMin = minSliderHeight; in calculateThumbRect() local
826 if (localVal > localMin) { in calculateThumbRect()
830 retVal.height = localMin; in calculateThumbRect()
831 hitTheWall = localMin; in calculateThumbRect()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXScrollbar.java810 int localMin = minSliderWidth; in calculateThumbRect() local
811 if (localVal > localMin) { in calculateThumbRect()
815 retVal.width = localMin; in calculateThumbRect()
816 hitTheWall = localMin; in calculateThumbRect()
825 int localMin = minSliderHeight; in calculateThumbRect() local
826 if (localVal > localMin) { in calculateThumbRect()
830 retVal.height = localMin; in calculateThumbRect()
831 hitTheWall = localMin; in calculateThumbRect()
/dports/java/openjdk8/jdk8u-jdk8u312-b07.1/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbar.java812 int localMin = minSliderWidth; in calculateThumbRect() local
813 if (localVal > localMin) { in calculateThumbRect()
817 retVal.width = localMin; in calculateThumbRect()
818 hitTheWall = localMin; in calculateThumbRect()
827 int localMin = minSliderHeight; in calculateThumbRect() local
828 if (localVal > localMin) { in calculateThumbRect()
832 retVal.height = localMin; in calculateThumbRect()
833 hitTheWall = localMin; in calculateThumbRect()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/java.desktop/unix/classes/sun/awt/X11/
H A DXScrollbar.java810 int localMin = minSliderWidth; in calculateThumbRect() local
811 if (localVal > localMin) { in calculateThumbRect()
815 retVal.width = localMin; in calculateThumbRect()
816 hitTheWall = localMin; in calculateThumbRect()
825 int localMin = minSliderHeight; in calculateThumbRect() local
826 if (localVal > localMin) { in calculateThumbRect()
830 retVal.height = localMin; in calculateThumbRect()
831 hitTheWall = localMin; in calculateThumbRect()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXScrollbar.java810 int localMin = minSliderWidth; in calculateThumbRect() local
811 if (localVal > localMin) { in calculateThumbRect()
815 retVal.width = localMin; in calculateThumbRect()
816 hitTheWall = localMin; in calculateThumbRect()
825 int localMin = minSliderHeight; in calculateThumbRect() local
826 if (localVal > localMin) { in calculateThumbRect()
830 retVal.height = localMin; in calculateThumbRect()
831 hitTheWall = localMin; in calculateThumbRect()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXScrollbar.java810 int localMin = minSliderWidth; in calculateThumbRect() local
811 if (localVal > localMin) { in calculateThumbRect()
815 retVal.width = localMin; in calculateThumbRect()
816 hitTheWall = localMin; in calculateThumbRect()
825 int localMin = minSliderHeight; in calculateThumbRect() local
826 if (localVal > localMin) { in calculateThumbRect()
830 retVal.height = localMin; in calculateThumbRect()
831 hitTheWall = localMin; in calculateThumbRect()
/dports/java/openjdk17/jdk17u-jdk-17.0.1-12-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXScrollbar.java810 int localMin = minSliderWidth; in calculateThumbRect() local
811 if (localVal > localMin) { in calculateThumbRect()
815 retVal.width = localMin; in calculateThumbRect()
816 hitTheWall = localMin; in calculateThumbRect()
825 int localMin = minSliderHeight; in calculateThumbRect() local
826 if (localVal > localMin) { in calculateThumbRect()
830 retVal.height = localMin; in calculateThumbRect()
831 hitTheWall = localMin; in calculateThumbRect()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/java.desktop/unix/classes/sun/awt/X11/
H A DXScrollbar.java810 int localMin = minSliderWidth; in calculateThumbRect() local
811 if (localVal > localMin) { in calculateThumbRect()
815 retVal.width = localMin; in calculateThumbRect()
816 hitTheWall = localMin; in calculateThumbRect()
825 int localMin = minSliderHeight; in calculateThumbRect() local
826 if (localVal > localMin) { in calculateThumbRect()
830 retVal.height = localMin; in calculateThumbRect()
831 hitTheWall = localMin; in calculateThumbRect()
/dports/java/openjdk8-jre/jdk8u-jdk8u312-b07.1/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollbar.java812 int localMin = minSliderWidth; in calculateThumbRect() local
813 if (localVal > localMin) { in calculateThumbRect()
817 retVal.width = localMin; in calculateThumbRect()
818 hitTheWall = localMin; in calculateThumbRect()
827 int localMin = minSliderHeight; in calculateThumbRect() local
828 if (localVal > localMin) { in calculateThumbRect()
832 retVal.height = localMin; in calculateThumbRect()
833 hitTheWall = localMin; in calculateThumbRect()
/dports/math/mfem/mfem-4.3/tests/unit/mesh/
H A Dtest_pmesh.cpp105 const HYPRE_Int localMin = gi.Min(); variable
109 MPI_Allreduce(&localMin, &globalMin, 1, HYPRE_MPI_INT, MPI_MIN, MPI_COMM_WORLD);
/dports/net-im/matterhorn/matterhorn-50200.13.0/_cabal_deps/QuickCheck-2.14.1/src/Test/QuickCheck/
H A DTest.hs511 do localMin st{ numTryShrinks = 0 } res ts
513 localMin :: State -> P.Result -> [Rose P.Result] -> IO (Int, Int, Int, P.Result)
515 localMin st res ts function
518 localMin st res ts = do function
539 then localMin st{ numSuccessShrinks = numSuccessShrinks st + 1,
541 else localMin st{ numTryShrinks = numTryShrinks st + 1,
/dports/finance/hs-hledger-ui/hledger-ui-1.19/_cabal_deps/QuickCheck-2.14.2/src/Test/QuickCheck/
H A DTest.hs511 do localMin st{ numTryShrinks = 0 } res ts
513 localMin :: State -> P.Result -> [Rose P.Result] -> IO (Int, Int, Int, P.Result)
515 localMin st res ts function
518 localMin st res ts = do function
539 then localMin st{ numSuccessShrinks = numSuccessShrinks st + 1,
541 else localMin st{ numTryShrinks = numTryShrinks st + 1,
/dports/devel/hs-git-brunch/git-brunch-1.5.1.0/_cabal_deps/QuickCheck-2.14.2/src/Test/QuickCheck/
H A DTest.hs511 do localMin st{ numTryShrinks = 0 } res ts
513 localMin :: State -> P.Result -> [Rose P.Result] -> IO (Int, Int, Int, P.Result)
515 localMin st res ts function
518 localMin st res ts = do function
539 then localMin st{ numSuccessShrinks = numSuccessShrinks st + 1,
541 else localMin st{ numTryShrinks = numTryShrinks st + 1,
/dports/devel/hs-mueval/mueval-0.9.3/_cabal_deps/QuickCheck-2.14/Test/QuickCheck/
H A DTest.hs495 do localMin st{ numTryShrinks = 0 } res ts
497 localMin :: State -> P.Result -> [Rose P.Result] -> IO (Int, Int, Int, P.Result)
499 localMin st res ts function
502 localMin st res ts = do function
523 then localMin st{ numSuccessShrinks = numSuccessShrinks st + 1,
525 else localMin st{ numTryShrinks = numTryShrinks st + 1,

123