/external/deqp/framework/randomshaders/ |
D | rsgVariableValue.cpp | 63 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 …]
|
D | rsgUtils.cpp | 67 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 …]
|
D | rsgBinaryOps.cpp | 405 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 …]
|
D | rsgExpression.cpp | 178 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 …]
|
D | rsgFunctionGenerator.cpp | 72 valueRange.getMin() = entry->getValueRange().getMin().value(); in generate()
|
D | rsgVariableValue.hpp | 204 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
|
D | rsgShaderGenerator.cpp | 148 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()
|
D | rsgProgramGenerator.cpp | 94 input->getValueRange().getMin() = curSamplerNdx; in generate()
|
D | rsgBuiltinFunctions.hpp | 74 …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/ |
D | AggregateSummaryStatistics.java | 157 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()
|
D | StatisticalSummaryValues.java | 91 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()
|
D | SummaryStatistics.java | 140 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()
|
D | MultivariateSummaryStatistics.java | 285 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()
|
D | SynchronizedMultivariateSummaryStatistics.java | 136 public synchronized double[] getMin() { in getMin() method in SynchronizedMultivariateSummaryStatistics 137 return super.getMin(); in getMin()
|
D | SynchronizedSummaryStatistics.java | 129 public synchronized double getMin() { in getMin() method in SynchronizedSummaryStatistics 130 return super.getMin(); in getMin()
|
D | StatisticalSummary.java | 53 double getMin(); in getMin() method
|
D | StatisticalMultivariateSummary.java | 76 double[] getMin(); in getMin() method
|
D | DescriptiveStatistics.java | 265 public double getMin() { in getMin() method in DescriptiveStatistics 430 outBuffer.append("min: ").append(getMin()).append(endl); in toString()
|
/external/parameter-framework/upstream/parameter/ |
D | EnumParameterType.cpp | 122 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()
|
D | EnumParameterType.h | 85 int32_t getMin() const;
|
/external/llvm-project/llvm/lib/Support/ |
D | APFixedPoint.cpp | 123 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/ |
D | StatsTestUtil.java | 196 && 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/ |
D | NumberIsTooSmallException.java | 87 public Number getMin() { in getMin() method in NumberIsTooSmallException
|
/external/llvm-project/llvm/unittests/ADT/ |
D | APFixedPointTest.cpp | 146 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/ |
D | prepare_quantize_helper.h | 467 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()
|