/external/deqp/framework/randomshaders/ |
D | rsgVariableValue.cpp | 64 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 …]
|
D | rsgBinaryOps.cpp | 157 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 …]
|
D | rsgUtils.cpp | 68 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()
|
D | rsgExpression.cpp | 179 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 …]
|
D | rsgFunctionGenerator.cpp | 73 valueRange.getMax() = entry->getValueRange().getMax().value(); in generate()
|
D | rsgVariableValue.hpp | 205 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
|
D | rsgShaderGenerator.cpp | 149 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/ |
D | BitIntSet.java | 50 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/ |
D | AggregateSummaryStatistics.java | 134 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()
|
D | StatisticalSummaryValues.java | 77 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()
|
D | SummaryStatistics.java | 140 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()
|
D | MultivariateSummaryStatistics.java | 274 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()
|
D | SynchronizedMultivariateSummaryStatistics.java | 128 public synchronized double[] getMax() { in getMax() method in SynchronizedMultivariateSummaryStatistics 129 return super.getMax(); in getMax()
|
D | SynchronizedSummaryStatistics.java | 121 public synchronized double getMax() { in getMax() method in SynchronizedSummaryStatistics 122 return super.getMax(); in getMax()
|
D | StatisticalSummary.java | 48 double getMax(); in getMax() method
|
D | StatisticalMultivariateSummary.java | 67 double[] getMax(); in getMax() method
|
/external/parameter-framework/upstream/parameter/ |
D | EnumParameterType.cpp | 123 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/ |
D | ShadowRatingBar.java | 83 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/ |
D | StatisticsHandler.java | 211 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/ |
D | ProgressBarTest.java | 28 assertThat(progressBar.getMax(), equalTo(100)); in shouldInitMaxTo100() 35 assertThat(progressBar.getMax(), equalTo(max)); in testMax()
|
/external/skia/include/views/animated/ |
D | SkProgressBarView.h | 30 int getMax() const { return fMax; } in getMax() function
|
/external/icu/icu4c/source/i18n/ |
D | significantdigitinterval.h | 57 int32_t getMax() const { in getMax() function
|
D | smallintformatter.h | 33 int32_t getMax() const { return fMax; } in getMax() function
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/exception/ |
D | NumberIsTooLargeException.java | 86 public Number getMax() { in getMax() method in NumberIsTooLargeException
|
/external/jetty/src/java/org/eclipse/jetty/util/statistic/ |
D | CounterStatistic.java | 95 public long getMax() in getMax() method in CounterStatistic
|