Home
last modified time | relevance | path

Searched refs:valueDist (Results 1 – 5 of 5) sorted by relevance

/dports/games/spring/spring_98.0/AI/Skirmish/KAIK/
H A DMetalMap.cpp235 int* valueDist = new int[256]; in GetMetalPoints() local
239 valueDist[i] = 0; in GetMetalPoints()
250 valueDist[value]++; in GetMetalPoints()
259 if (valueDist[i] != 0) { in GetMetalPoints()
261 numberOfValues = valueDist[i]; in GetMetalPoints()
304 valueDist[i] = 0; in GetMetalPoints()
310 valueDist[value]++; in GetMetalPoints()
319 if (valueDist[i] != 0) { in GetMetalPoints()
321 numberOfValues = valueDist[i]; in GetMetalPoints()
482 delete[] valueDist; in GetMetalPoints()
/dports/games/spring/spring_98.0/rts/Sim/Misc/
H A DResourceMapAnalyzer.cpp283 int* valueDist = new int[256]; in GetResourcePoints() local
287 valueDist[i] = 0; in GetResourcePoints()
299 valueDist[value]++; in GetResourcePoints()
308 if (valueDist[i] != 0) { in GetResourcePoints()
310 numberOfValues = valueDist[i]; in GetResourcePoints()
354 valueDist[i] = 0; in GetResourcePoints()
360 valueDist[value]++; in GetResourcePoints()
369 if (valueDist[i] != 0) { in GetResourcePoints()
371 numberOfValues = valueDist[i]; in GetResourcePoints()
540 delete[] valueDist; in GetResourcePoints()
/dports/graphics/qgis/qgis-3.22.3/src/core/
H A Dqgscolorschemeregistry.cpp152 std::uniform_int_distribution<int> valueDist( 128, 255 ); in fetchRandomStyleColor() local
153 return QColor::fromHsv( hueDist( mt ), satDist( mt ), valueDist( mt ) ); in fetchRandomStyleColor()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/
H A Dqgscolorschemeregistry.cpp152 std::uniform_int_distribution<int> valueDist( 128, 255 ); in fetchRandomStyleColor() local
153 return QColor::fromHsv( hueDist( mt ), satDist( mt ), valueDist( mt ) ); in fetchRandomStyleColor()
/dports/math/apache-commons-math/commons-math3-3.6.1-src/src/test/java/org/apache/commons/math3/stat/descriptive/
H A DUnivariateStatisticAbstractTest.java195 final RealDistribution valueDist = new NormalDistribution(mu, sigma); in testWeightedConsistency() local
198 double value = valueDist.sample(); in testWeightedConsistency()