Home
last modified time | relevance | path

Searched refs:getMax (Results 1 – 25 of 59) sorted by relevance

123

/external/deqp/framework/randomshaders/
DrsgVariableValue.cpp64 float aMax = a.component(ndx).getMax().asFloat(); in compareValueRangesAllTrue()
66 float bMax = b.component(ndx).getMax().asFloat(); in compareValueRangesAllTrue()
79 int aMax = a.component(ndx).getMax().asInt(); in compareValueRangesAllTrue()
81 int bMax = b.component(ndx).getMax().asInt(); in compareValueRangesAllTrue()
92 bool aMax = a.component(ndx).getMax().asBool(); in compareValueRangesAllTrue()
94 bool bMax = b.component(ndx).getMax().asBool(); in compareValueRangesAllTrue()
171 getMax() = maxVal.value(); in ValueRange()
180 getMax() = ConstValueAccess(type, maxVal).value(); in ValueRange()
189 getMax() = other.getMax().value(); in ValueRange()
226 float aMax = a.component(ndx).getMax().asFloat(); in computeIntersection()
[all …]
DrsgBinaryOps.cpp157 a.getMax() = dst.getMax().value(); in BinaryVecOp()
158 b.getMax() = dst.getMax().value(); in BinaryVecOp()
163 ComputeValueRange()(state.getRandom(), dst.getMin().asFloat(), dst.getMax().asFloat(), in BinaryVecOp()
164 a.getMin().asFloat(), a.getMax().asFloat(), in BinaryVecOp()
165 b.getMin().asFloat(), b.getMax().asFloat()); in BinaryVecOp()
167 ComputeValueRange()(state.getRandom(), dst.getMin().asInt(), dst.getMax().asInt(), in BinaryVecOp()
168 a.getMin().asInt(), a.getMax().asInt(), in BinaryVecOp()
169 b.getMin().asInt(), b.getMax().asInt()); in BinaryVecOp()
173 ComputeValueRange()(state.getRandom(), dst.getMin().asBool(), dst.getMax().asBool(), in BinaryVecOp()
174 a.getMin().asBool(), a.getMax().asBool(), in BinaryVecOp()
[all …]
DrsgUtils.cpp68 float maxVal = valueRange.component(ndx).getMax().asFloat(); in computeRandomValue()
88 int maxVal = valueRange.component(ndx).getMax().asInt(); in computeRandomValue()
139 valueRange.getMax().component(ndx).asScalar() != infMax) in isUndefinedValueRange()
198 valueRange.getMax().component(ndx).asBool() = maxVal; in computeRandomValueRange()
214 valueRange.getMax().component(ndx).asInt() = maxVal; in computeRandomValueRange()
232 valueRange.getMax().component(ndx).asFloat() = maxVal; in computeRandomValueRange()
305 float maxVal = valueRange.component(ndx).getMax().asFloat(); in computeRangeLengthSum()
325 int maxVal = valueRange.component(ndx).getMax().asInt(); in computeRangeLengthSum()
DrsgExpression.cpp179 valueRange.getMax().component(ndx).asScalar() != Scalar::max<int>()) in computeRandomValueRangeForInfElements()
191 valueRange.getMax().component(ndx).asInt() = maxVal; in computeRandomValueRangeForInfElements()
199 valueRange.getMax().component(ndx).asScalar() != Scalar::max<float>()) in computeRandomValueRangeForInfElements()
213 valueRange.getMax().component(ndx).asFloat() = maxVal; in computeRandomValueRangeForInfElements()
233 valueRange.getMax().component(ndx) = Scalar::max<bool>(); in setInfiniteRange()
241 valueRange.getMax().component(ndx) = Scalar::max<int>(); in setInfiniteRange()
249 valueRange.getMax().component(ndx) = Scalar::max<float>(); in setInfiniteRange()
369 maxVal = valueRange.getMax().component(0).asFloat(); in FloatLiteral()
394 float maxVal = valueRange.getMax().asFloat(); in getWeight()
426 maxVal = valueRange.getMax().component(0).asInt(); in IntLiteral()
[all …]
DrsgFunctionGenerator.cpp73 valueRange.getMax() = entry->getValueRange().getMax().value(); in generate()
DrsgVariableValue.hpp205 ConstValueAccess getMax (void) const { return ConstValueAccess(*m_type, m_max); } in getMax() function in rsg::ConstValueRangeAccess
247 ValueAccess getMax (void) { return ValueAccess(*m_type, m_max); } in getMax() function in rsg::ValueRangeAccess
283 ValueAccess getMax (void) { return ValueAccess(m_type, getMaxPtr()); } in getMax() function in rsg::ValueRange
286 ConstValueAccess getMax (void) const { return ConstValueAccess(m_type, getMaxPtr()); } in getMax() function in rsg::ValueRange
DrsgShaderGenerator.cpp149 ValueAccess max = valueRange.component(elemNdx).getMax(); in fillUndefinedComponents()
210 valueRange.getMax() = tcu::Vec4(1.0f, 1.0f, 1.0f, 1.0f); in generate()
260 valueRange.getMax() = tcu::Vec4( 1.0f, 1.0f, 0.0f, 1.0f); in generate()
/external/dexmaker/src/dx/java/com/android/dx/util/
DBitIntSet.java50 if (value >= Bits.getMax(bits)) { in ensureCapacity()
52 Math.max(value + 1, 2 * Bits.getMax(bits))); in ensureCapacity()
60 if (value < Bits.getMax(bits)) { in remove()
67 return (value < Bits.getMax(bits)) && Bits.get(bits, value); in has()
74 ensureCapacity(Bits.getMax(o.bits) + 1); in merge()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DAggregateSummaryStatistics.java134 public double getMax() { in getMax() method in AggregateSummaryStatistics
136 return statistics.getMax(); in getMax()
268 getMax(), getMin(), getSum()); in getSummary()
313 double max = current.getMax(); in aggregate()
321 if (current.getMax() > max || Double.isNaN(max)) { in aggregate()
322 max = current.getMax(); in aggregate()
DStatisticalSummaryValues.java77 public double getMax() { in getMax() method in StatisticalSummaryValues
140 return MathUtils.equalsIncludingNaN(stat.getMax(), getMax()) && in equals()
155 int result = 31 + MathUtils.hash(getMax()); in hashCode()
177 outBuffer.append("max: ").append(getMax()).append(endl); in toString()
DSummaryStatistics.java140 getMax(), getMin(), getSum()); in getSummary()
251 public double getMax() { in getMax() method in SummaryStatistics
317 outBuffer.append("max: ").append(getMax()).append(endl); in toString()
366 MathUtils.equalsIncludingNaN(stat.getMax(), getMax()) && in equals()
383 result = result * 31 + MathUtils.hash(getMax()); in hashCode()
DMultivariateSummaryStatistics.java274 public double[] getMax() { in getMax() method in MultivariateSummaryStatistics
314 append(outBuffer, getMax(), "max: ", separator, suffix); in toString()
377 MathUtils.equalsIncludingNaN(stat.getMax(), getMax()) && in equals()
396 result = result * 31 + MathUtils.hash(getMax()); in hashCode()
DSynchronizedMultivariateSummaryStatistics.java128 public synchronized double[] getMax() { in getMax() method in SynchronizedMultivariateSummaryStatistics
129 return super.getMax(); in getMax()
DSynchronizedSummaryStatistics.java121 public synchronized double getMax() { in getMax() method in SynchronizedSummaryStatistics
122 return super.getMax(); in getMax()
DStatisticalSummary.java48 double getMax(); in getMax() method
DStatisticalMultivariateSummary.java67 double[] getMax(); in getMax() method
/external/parameter-framework/upstream/parameter/
DEnumParameterType.cpp123 return -getMax() - 1; in getMin()
126 int32_t CEnumParameterType::getMax() const in getMax() function in CEnumParameterType
154 if (userValue < getMin() or userValue > getMax()) { in toBlackboard()
160 std::to_string(getMin()) + ", " + std::to_string(getMax()) + "] for " + getKind()); in toBlackboard()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
DShadowRatingBar.java83 final int newProgress = (int) (newMax / getMax() * getProgress()); in setStepSize()
90 return (float) getNumStars() / getMax(); in getStepSize()
95 return 1f * getMax() / mNumStars; in getProgressPerStar()
/external/jetty/src/java/org/eclipse/jetty/server/handler/
DStatisticsHandler.java211 return (int)_requestStats.getMax(); in getRequestsActiveMax()
220 return _requestTimeStats.getMax(); in getRequestTimeMax()
281 return (int)_dispatchedStats.getMax(); in getDispatchedActiveMax()
290 return _dispatchedTimeStats.getMax(); in getDispatchedTimeMax()
350 return (int)_suspendStats.getMax(); in getSuspendsActiveMax()
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DProgressBarTest.java28 assertThat(progressBar.getMax(), equalTo(100)); in shouldInitMaxTo100()
35 assertThat(progressBar.getMax(), equalTo(max)); in testMax()
/external/skia/include/views/animated/
DSkProgressBarView.h30 int getMax() const { return fMax; } in getMax() function
/external/icu/icu4c/source/i18n/
Dsignificantdigitinterval.h57 int32_t getMax() const { in getMax() function
Dsmallintformatter.h33 int32_t getMax() const { return fMax; } in getMax() function
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
DNumberIsTooLargeException.java86 public Number getMax() { in getMax() method in NumberIsTooLargeException
/external/jetty/src/java/org/eclipse/jetty/util/statistic/
DCounterStatistic.java95 public long getMax() in getMax() method in CounterStatistic

123