Searched defs:maxValue (Results 1 - 25 of 41) sorted by relevance

12

/external/icu/icu4c/source/common/
H A Dpropsvec.h163 int32_t maxValue; member in struct:UPVecToUTrie2Context
/external/guava/guava/src/com/google/common/collect/
H A DDiscreteDomain.java30 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
79 @Override public Integer maxValue() { method in class:DiscreteDomain.IntegerDomain
133 @Override public Long maxValue() { method in class:DiscreteDomain.LongDomain
201 * {@code value} is {@code maxValue()}
259 public C maxValue() { method in class:DiscreteDomain
/external/opencv/cv/src/
H A Dcvadapthresh.cpp46 int maxValue, int type, int size, double delta )
60 if( maxValue < 0 )
76 if( maxValue > 255 )
77 maxValue = 255;
81 tab[i] = (uchar)(i - 255 > -idelta ? maxValue : 0);
84 tab[i] = (uchar)(i - 255 <= -idelta ? maxValue : 0);
104 cvAdaptiveThreshold( const void *srcIm, void *dstIm, double maxValue, argument
134 CV_CALL( icvAdaptiveThreshold_MeanC( src, dst, method, cvRound(maxValue),type,
45 icvAdaptiveThreshold_MeanC( const CvMat* src, CvMat* dst, int method, int maxValue, int type, int size, double delta ) argument
/external/skia/src/core/
H A DSkAntiRun.h41 * middleCount pixels with value += maxValue
49 U8CPU maxValue, int offsetX) {
84 alpha[0] = SkToU8(alpha[0] + maxValue);
48 add(int x, U8CPU startAlpha, int middleCount, U8CPU stopAlpha, U8CPU maxValue, int offsetX) argument
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DISO8601Converter.java466 * @param maxValue the max value of the number to return
470 public int gatherInt(String errorMsg, int maxValue) throws XMPException argument
485 if (value > maxValue)
487 return maxValue;
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp106 int32_t maxValue=values[length-1]; // Assume minValue<=maxValue. local
108 // signed-int32_t overflow of maxValue-minValue.
109 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
113 ranges[0][1]=maxValue;
119 // See if we can split [minValue, maxValue] into 2..capacity ranges,
133 // the length of the [minValue..maxValue] range (maxLength).
156 ranges[num-1][1]=maxValue;
/external/parameter-framework/parameter/
H A DIntegerParameterType.cpp399 template <typename type> bool CIntegerParameterType::checkValueAgainstRange(const string& strValue, type value, type minValue, type maxValue, CParameterAccessContext& parameterAccessContext, bool bHexaValue) const argument
401 if (value < minValue || value > maxValue) {
412 strStream << ", 0x" << std::hex << std::uppercase << std::setw(getSize()*2) << std::setfill('0') << makeEncodable(maxValue);
416 strStream << minValue << ", " << maxValue; local
H A DEnumParameterType.cpp165 int64_t maxValue = getMaxValue<uint64_t>(); local
166 int64_t minValue = -maxValue - 1;
168 if (!bConversionSucceeded || value < minValue || value > maxValue) {
179 strStream << ", 0x" << std::hex << std::uppercase << std::setw(getSize()*2) << std::setfill('0') << makeEncodable(maxValue);
183 strStream << minValue << ", " << maxValue; local
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DPreconditions.java144 public static void checkValueArg(int valueArg, int maxValue) { argument
145 if (valueArg > maxValue) {
146 if (maxValue == 0) {
153 valueArg, maxValue));
/external/aac/libSBRenc/src/
H A Dps_main.cpp558 FIXP_QMF maxValue = FL2FXCONST_DBL(0.f); local
606 maxValue = fixMax(maxValue,fixMax(maxVal[0][band],maxVal[1][band]));
612 *dmxScale = fixMin(DFRACT_BITS, CountLeadingBits(maxValue));
614 *dmxScale = fixMax(0,fixMin(FRACT_BITS, CountLeadingBits(FX_QMF2FX_DBL(maxValue))));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DFingerPrintGraph.java97 double maxValue = 0.0; field in class:FingerPrintGraph
223 double max = kind == TIME_LOG ? Math.log(this.maxValue) : this.maxValue;
413 int n = (int) (this.maxValue / gridValue);
429 n = (int) (this.maxValue / gridValue);
431 int gridWidth = (int) (this.graphWidth * gridValue / this.maxValue);
463 double max = Math.log(this.maxValue);
576 this.maxValue = 0.0;
583 if (value < 1000000 && value > this.maxValue) {
584 this.maxValue
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java847 int maxValue) {
849 assertTrue("maxValue is incorrect", replicatedMaxValue == maxValue);
845 removeMaxFromReplica( SortedMap<Integer, AtomicInteger> replica, int maxValue) argument
/external/skia/src/effects/
H A DSkColorMatrix.cpp20 SkScalar maxValue = row[4] / 255; local
24 maxValue += row[i];
28 return (maxValue > 1) || (minValue < 0);
/external/mesa3d/src/mesa/main/
H A Dimage.c781 GLint maxValue)
785 if (*dstX1 > maxValue) {
787 ASSERT(*dstX0 < maxValue); /* X0 should be inside right edge */
788 t = (GLfloat) (maxValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0);
791 *dstX1 = maxValue;
795 else if (*dstX0 > maxValue) {
797 ASSERT(*dstX1 < maxValue); /* X1 should be inside right edge */
798 t = (GLfloat) (maxValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1);
801 *dstX0 = maxValue;
779 clip_right_or_top(GLint *srcX0, GLint *srcX1, GLint *dstX0, GLint *dstX1, GLint maxValue) argument
/external/pdfium/third_party/freetype/src/truetype/
H A Dttgxvar.c582 FT_ULong maxValue; member in struct:fvar_axis_
652 FT_FRAME_ULONG ( maxValue ),
747 a->maximum = axis_rec.maxValue; /* A Fixed */
/external/aac/libAACenc/src/
H A Dqc_main.cpp141 UINT *RESTRICT maxValue);
1297 UINT *RESTRICT maxValue)
1313 maxValue[sfbOffs+sfb] = maxThisSfb;
1292 FDKaacEnc_calcMaxValueInSfb(INT sfbCnt, INT maxSfbPerGroup, INT sfbPerGroup, INT *RESTRICT sfbOffset, SHORT *RESTRICT quantSpectrum, UINT *RESTRICT maxValue) argument
/external/deqp/modules/gles2/performance/
H A Des2pShaderControlStatementTests.cpp325 float maxValue = (float)getViewportWidth()*0.5f; local
327 Vec4(maxValue, 0.0f, 0.0f, 0.0f),
329 Vec4(maxValue, 0.0f, 0.0f, 0.0f)));
601 float maxValue = (float)getViewportWidth()*0.5f; local
603 Vec4(maxValue, 0.0f, 0.0f, 0.0f),
605 Vec4(maxValue, 0.0f, 0.0f, 0.0f)));
/external/deqp/modules/gles3/performance/
H A Des3pShaderControlStatementTests.cpp329 float maxValue = (float)getViewportWidth()*0.5f; local
331 Vec4(maxValue, 0.0f, 0.0f, 0.0f),
333 Vec4(maxValue, 0.0f, 0.0f, 0.0f)));
609 float maxValue = (float)getViewportWidth()*0.5f; local
611 Vec4(maxValue, 0.0f, 0.0f, 0.0f),
613 Vec4(maxValue, 0.0f, 0.0f, 0.0f)));
/external/deqp/modules/gles31/functional/
H A Des31fAtomicCounterTests.cpp674 deUint32 maxValue = 0; local
683 maxValue = std::max(maxValue, values[valueNdx]);
687 counts.resize(maxValue - minValue + 1, 0);
721 deUint32 maxValue = 0; local
728 maxValue = std::max(maxValue, increments[valueNdx]);
737 maxValue = std::max(maxValue, decrements[valueNdx]);
742 maxValue
[all...]
H A Des31fShaderCommonFunctionTests.cpp72 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
73 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); } argument
74 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); } argument
75 template<> inline deUint32 randomScalar (de::Random& rnd, deUint32 minValue, deUint32 maxValue) { return minValue + rnd.getUint32() % (maxValue - minValue + 1); } argument
78 inline tcu::Vector<T, Size> randomVector (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue) argument
82 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx]);
87 static void fillRandomVectors (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue, voi argument
95 fillRandomScalars(de::Random& rnd, T minValue, T maxValue, void* dst, int numValues, int offset = 0) argument
[all...]
/external/deqp/modules/glshared/
H A DglsLongStressCase.hpp67 Value maxValue; member in struct:deqp::gls::VarSpec
79 maxValue.f[0] = maxValue_;
87 vecToArr(maxValue_, maxValue.f);
95 matToArr(maxValue_, maxValue.f);
102 maxValue.i[0] = maxValue_;
110 vecToArr(maxValue_, maxValue.i);
147 tcu::Vec4 maxValue; member in struct:deqp::gls::TextureSpec
176 , maxValue (maxValue_)
H A DglsStateQueryUtil.cpp1174 void verifyIntegerMax (tcu::ResultCollector& result, QueriedState& state, int maxValue) argument
1180 if (maxValue < 0 && state.getBoolAccess() != true)
1191 if (state.getIntAccess() > maxValue)
1194 buf << "Expected less or equal to " << maxValue << ", got " << state.getIntAccess();
1202 if (state.getInt64Access() > maxValue)
1205 buf << "Expected less or equal to " << maxValue << ", got " << state.getInt64Access();
1213 if (state.getFloatAccess() > deInt32ToFloatRoundToPosInf(maxValue) || deIsNaN(state.getFloatAccess()))
1216 buf << "Expected less or equal to " << maxValue << ", got " << state.getFloatAccess();
1376 void verifyFloatMax (tcu::ResultCollector& result, QueriedState& state, float maxValue) argument
1382 if (maxValue < 0.
1859 verifyStateIntegerMax(tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, int maxValue, QueryType type) argument
1936 verifyStateFloatMax(tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, float maxValue, QueryType type) argument
[all...]
/external/freetype/src/truetype/
H A Dttgxvar.c680 FT_Fixed maxValue; member in struct:fvar_axis_
750 FT_FRAME_LONG ( maxValue ),
873 a->maximum = axis_rec.maxValue;
/external/deqp/modules/gles3/functional/
H A Des3fFragmentOutputTests.cpp480 string valueRangeToString (int numValidChannels, const tcu::Vector<Type, 4>& minValue, const tcu::Vector<Type, 4>& maxValue) argument
492 stream << minValue[i] << " -> " << maxValue[i]; local
H A Des3fShaderCommonFunctionTests.cpp68 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
69 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); } argument
70 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); } argument
71 template<> inline deUint32 randomScalar (de::Random& rnd, deUint32 minValue, deUint32 maxValue) { return minValue + rnd.getUint32() % (maxValue - minValue + 1); } argument
74 inline tcu::Vector<T, Size> randomVector (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue) argument
78 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx]);
83 static void fillRandomVectors (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue, voi argument
91 fillRandomScalars(de::Random& rnd, T minValue, T maxValue, void* dst, int numValues, int offset = 0) argument
[all...]

Completed in 757 milliseconds

12