Home
last modified time | relevance | path

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

123

/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.cpp405 a.getMin() = dst.getMin().value(); in BinaryVecOp()
406 b.getMin() = dst.getMin().value(); in BinaryVecOp()
413 ComputeValueRange()(state.getRandom(), dst.getMin().asFloat(), dst.getMax().asFloat(), in BinaryVecOp()
414 a.getMin().asFloat(), a.getMax().asFloat(), in BinaryVecOp()
415 b.getMin().asFloat(), b.getMax().asFloat()); in BinaryVecOp()
417 ComputeValueRange()(state.getRandom(), dst.getMin().asInt(), dst.getMax().asInt(), in BinaryVecOp()
418 a.getMin().asInt(), a.getMax().asInt(), in BinaryVecOp()
419 b.getMin().asInt(), b.getMax().asInt()); in BinaryVecOp()
423 ComputeValueRange()(state.getRandom(), dst.getMin().asBool(), dst.getMax().asBool(), in BinaryVecOp()
424 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()
405 float minVal = valueRange.getMin().asFloat(); in getWeight()
437 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()
DrsgProgramGenerator.cpp94 input->getValueRange().getMin() = curSamplerNdx; in generate()
DrsgBuiltinFunctions.hpp74 …ComputeValueRange()(outRange.getMin().asFloat(), outRange.getMax().asFloat(), inRange.getMin().asF… in UnaryBuiltinVecFunc()
136 …float elemWeight = GetValueRangeWeight()(valueRange.component(elemNdx).getMin().asFloat(), valueRa… in getWeight()
/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()
DSynchronizedMultivariateSummaryStatistics.java136 public synchronized double[] getMin() { in getMin() method in SynchronizedMultivariateSummaryStatistics
137 return super.getMin(); in getMin()
DSynchronizedSummaryStatistics.java129 public synchronized double getMin() { in getMin() method in SynchronizedSummaryStatistics
130 return super.getMin(); in getMin()
DStatisticalSummary.java53 double getMin(); in getMin() method
DStatisticalMultivariateSummary.java76 double[] getMin(); in getMin() method
DDescriptiveStatistics.java265 public double getMin() { in getMin() method in DescriptiveStatistics
430 outBuffer.append("min: ").append(getMin()).append(endl); in toString()
/external/parameter-framework/upstream/parameter/
DEnumParameterType.cpp122 int32_t CEnumParameterType::getMin() const in getMin() function in CEnumParameterType
182 if (userValue < getMin() or userValue > getMax()) { in toBlackboard()
188 std::to_string(getMin()) + ", " + std::to_string(getMax()) + "] for " + getKind()); in toBlackboard()
DEnumParameterType.h85 int32_t getMin() const;
/external/llvm-project/llvm/lib/Support/
DAPFixedPoint.cpp123 APFixedPoint APFixedPoint::getMin(const FixedPointSemantics &Sema) { in getMin() function in llvm::APFixedPoint
145 APSInt MinInt = APFixedPoint::getMin(*this).getValue(); in fitsInFloatSemantics()
264 APSInt Min = APFixedPoint::getMin(CommonFXSema).getValue() in mul()
319 APSInt Min = APFixedPoint::getMin(CommonFXSema).getValue() in div()
355 APSInt Min = APFixedPoint::getMin(Sema).getValue().extOrTrunc(Wide); in shl()
558 APFloat FloatMin = getMin(DstFXSema).convertToFloat(*OpSema); in getFromFloatValue()
564 Res = getMin(DstFXSema).getValue(); in getFromFloatValue()
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/
DStatsTestUtil.java196 && expected.getMin() == Double.POSITIVE_INFINITY) { in assertDistributionDataEquals()
198 assertThat(actual.getMin()).isPositiveInfinity(); in assertDistributionDataEquals()
201 assertThat(actual.getMin()).isWithin(tolerance).of(expected.getMin()); in assertDistributionDataEquals()
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/
DNumberIsTooSmallException.java87 public Number getMin() { in getMin() method in NumberIsTooSmallException
/external/llvm-project/llvm/unittests/ADT/
DAPFixedPointTest.cpp146 ASSERT_EQ(APFixedPoint::getMin(Sema).getValue(), in CheckMin()
172 TEST(FixedPointTest, getMin) { in TEST() argument
223 ASSERT_EQ(APFixedPoint::getMin(Sema).getIntPart(), Expected); in CheckIntPartMin()
391 ASSERT_EQ(Fixed.convert(Dst), APFixedPoint::getMin(Dst)); in CheckSaturatedConversionMin()
667 (ExpectedOvf == MinSat ? APFixedPoint::getMin(Sema) in CheckFloatToFixedConversion()
/external/tensorflow/tensorflow/compiler/mlir/lite/transforms/
Dprepare_quantize_helper.h467 calibrated_type.getMin(), calibrated_type.getMax(), in processIntermediates()
471 qtype = quant::DownCastScale(qtype, calibrated_type.getMin(), in processIntermediates()
476 double max = std::max(std::abs(calibrated_type.getMin()), in processIntermediates()

123