Home
last modified time | relevance | path

Searched refs:getMin (Results 1 – 25 of 41) sorted by relevance

12

/external/deqp/framework/randomshaders/
DrsgVariableValue.cpp63 float aMin = a.component(ndx).getMin().asFloat(); in compareValueRangesAllTrue()
65 float bMin = b.component(ndx).getMin().asFloat(); in compareValueRangesAllTrue()
78 int aMin = a.component(ndx).getMin().asInt(); in compareValueRangesAllTrue()
80 int bMin = b.component(ndx).getMin().asInt(); in compareValueRangesAllTrue()
91 bool aMin = a.component(ndx).getMin().asBool(); in compareValueRangesAllTrue()
93 bool bMin = b.component(ndx).getMin().asBool(); in compareValueRangesAllTrue()
170 getMin() = minVal.value(); in ValueRange()
179 getMin() = ConstValueAccess(type, minVal).value(); in ValueRange()
188 getMin() = other.getMin().value(); in ValueRange()
225 float aMin = a.component(ndx).getMin().asFloat(); in computeIntersection()
[all …]
DrsgUtils.cpp67 float minVal = valueRange.component(ndx).getMin().asFloat(); in computeRandomValue()
76 int minVal = valueRange.component(ndx).getMin().asBool() ? 1 : 0; in computeRandomValue()
77 int maxVal = valueRange.component(ndx).getMin().asBool() ? 1 : 0; in computeRandomValue()
87 int minVal = valueRange.component(ndx).getMin().asInt(); in computeRandomValue()
138 if (valueRange.getMin().component(ndx).asScalar() != infMin || in isUndefinedValueRange()
197 valueRange.getMin().component(ndx).asBool() = minVal; in computeRandomValueRange()
213 valueRange.getMin().component(ndx).asInt() = minVal; in computeRandomValueRange()
231 valueRange.getMin().component(ndx).asFloat() = minVal; in computeRandomValueRange()
304 float minVal = valueRange.component(ndx).getMin().asFloat(); in computeRangeLengthSum()
313 int minVal = valueRange.component(ndx).getMin().asBool() ? 1 : 0; in computeRangeLengthSum()
[all …]
DrsgBinaryOps.cpp155 a.getMin() = dst.getMin().value(); in BinaryVecOp()
156 b.getMin() = dst.getMin().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 …]
DrsgExpression.cpp178 if (valueRange.getMin().component(ndx).asScalar() != Scalar::min<int>() || in computeRandomValueRangeForInfElements()
190 valueRange.getMin().component(ndx).asInt() = minVal; in computeRandomValueRangeForInfElements()
198 if (valueRange.getMin().component(ndx).asScalar() != Scalar::min<float>() || in computeRandomValueRangeForInfElements()
212 valueRange.getMin().component(ndx).asFloat() = minVal; in computeRandomValueRangeForInfElements()
232 valueRange.getMin().component(ndx) = Scalar::min<bool>(); in setInfiniteRange()
240 valueRange.getMin().component(ndx) = Scalar::min<int>(); in setInfiniteRange()
248 valueRange.getMin().component(ndx) = Scalar::min<float>(); in setInfiniteRange()
368 minVal = valueRange.getMin().component(0).asFloat(); in FloatLiteral()
393 float minVal = valueRange.getMin().asFloat(); in getWeight()
425 minVal = valueRange.getMin().component(0).asInt(); in IntLiteral()
[all …]
DrsgFunctionGenerator.cpp72 valueRange.getMin() = entry->getValueRange().getMin().value(); in generate()
DrsgVariableValue.hpp204 ConstValueAccess getMin (void) const { return ConstValueAccess(*m_type, m_min); } in getMin() function in rsg::ConstValueRangeAccess
246 ValueAccess getMin (void) { return ValueAccess(*m_type, m_min); } in getMin() function in rsg::ValueRangeAccess
282 ValueAccess getMin (void) { return ValueAccess(m_type, getMinPtr()); } in getMin() function in rsg::ValueRange
285 ConstValueAccess getMin (void) const { return ConstValueAccess(m_type, getMinPtr()); } in getMin() function in rsg::ValueRange
DrsgShaderGenerator.cpp148 ValueAccess min = valueRange.component(elemNdx).getMin(); in fillUndefinedComponents()
209 valueRange.getMin() = tcu::Vec4(0.0f, 0.0f, 0.0f, 0.0f); in generate()
259 valueRange.getMin() = tcu::Vec4(-1.0f, -1.0f, 0.0f, 1.0f); in generate()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DAggregateSummaryStatistics.java157 public double getMin() { in getMin() method in AggregateSummaryStatistics
159 return statistics.getMin(); in getMin()
268 getMax(), getMin(), getSum()); in getSummary()
311 double min = current.getMin(); in aggregate()
318 if (current.getMin() < min || Double.isNaN(min)) { in aggregate()
319 min = current.getMin(); in aggregate()
DStatisticalSummaryValues.java91 public double getMin() { in getMin() method in StatisticalSummaryValues
142 MathUtils.equalsIncludingNaN(stat.getMin(), getMin()) && in equals()
157 result = result * 31 + MathUtils.hash(getMin()); in hashCode()
176 outBuffer.append("min: ").append(getMin()).append(endl); in toString()
DSummaryStatistics.java140 getMax(), getMin(), getSum()); in getSummary()
262 public double getMin() { in getMin() method in SummaryStatistics
316 outBuffer.append("min: ").append(getMin()).append(endl); in toString()
368 MathUtils.equalsIncludingNaN(stat.getMin(), getMin()) && in equals()
385 result = result * 31 + MathUtils.hash(getMin()); in hashCode()
DMultivariateSummaryStatistics.java285 public double[] getMin() { in getMin() method in MultivariateSummaryStatistics
313 append(outBuffer, getMin(), "min: ", separator, suffix); in toString()
379 MathUtils.equalsIncludingNaN(stat.getMin(), getMin()) && in equals()
398 result = result * 31 + MathUtils.hash(getMin()); in hashCode()
DSynchronizedSummaryStatistics.java129 public synchronized double getMin() { in getMin() method in SynchronizedSummaryStatistics
130 return super.getMin(); in getMin()
DSynchronizedMultivariateSummaryStatistics.java136 public synchronized double[] getMin() { in getMin() method in SynchronizedMultivariateSummaryStatistics
137 return super.getMin(); in getMin()
DStatisticalSummary.java53 double getMin(); in getMin() method
DStatisticalMultivariateSummary.java76 double[] getMin(); in getMin() method
/external/icu/icu4c/source/i18n/
Dprecision.cpp91 if (fSignificant.getMin() > 0) { in getIntervalForZero()
92 interval.expandToContainDigit(interval.getIntDigitCount() - fSignificant.getMin()); in getIntervalForZero()
101 if (fSignificant.getMin() > 0) { in getInterval()
103 upperExponent - fSignificant.getMin()); in getInterval()
115 if (fSignificant.getMin() > 0) { in getInterval()
116 interval.expandToContainDigit(interval.getIntDigitCount() - fSignificant.getMin()); in getInterval()
120 if (fSignificant.getMin() > 0) { in getInterval()
122 value.getUpperExponent() - fSignificant.getMin()); in getInterval()
Dsignificantdigitinterval.h73 int32_t getMin() const { in getMin() function
Dsmallintformatter.h36 int32_t getMin() const { return fMin; } in getMin() function
Dsmallintformatter.cpp2605 return (positiveValue < gMaxFastInt && range.getMin() <= 4); in canFormat()
/external/parameter-framework/upstream/parameter/
DEnumParameterType.cpp120 int32_t CEnumParameterType::getMin() const in getMin() 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()
DEnumParameterType.h84 int32_t getMin() const;
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
DNumberIsTooSmallException.java87 public Number getMin() { in getMin() method in NumberIsTooSmallException
/external/r8/src/main/java/com/android/tools/r8/utils/
DLongInterval.java27 public long getMin() { in getMin() method in LongInterval
/external/r8/src/test/java/com/android/tools/r8/shaking/
DProguardConfigurationParserTest.java191 assertEquals(1, rule.getReturnValue().getValueRange().getMin()); in parseAssumeNoSideEffectsWithReturnValue()
199 assertEquals(2, rule.getReturnValue().getValueRange().getMin()); in parseAssumeNoSideEffectsWithReturnValue()
231 assertEquals(1, rule.getReturnValue().getValueRange().getMin()); in parseAssumeValuesWithReturnValue()
239 assertEquals(2, rule.getReturnValue().getValueRange().getMin()); in parseAssumeValuesWithReturnValue()
/external/r8/src/main/java/com/android/tools/r8/ir/code/
DCmp.java162 result = Integer.signum(Long.compare(leftRange.getMin(), rightRange.getMin())); in fold()

12