Searched defs:minValue (Results 1 - 25 of 49) sorted by relevance

12

/external/guava/guava/src/com/google/common/collect/
H A DDiscreteDomain.java30 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
75 @Override public Integer minValue() { method in class:DiscreteDomain.IntegerDomain
129 @Override public Long minValue() { method in class:DiscreteDomain.LongDomain
212 * {@code value} is {@code minValue()}
244 public C minValue() { method in class:DiscreteDomain
/external/lzma/CPP/Windows/Control/
H A DProgressBar.h17 LRESULT SetRange(unsigned short minValue, unsigned short maxValue) { return SendMessage(PBM_SETRANGE, 0, MAKELPARAM(minValue, maxValue)); } argument
18 DWORD SetRange32(int minValue, int maxValue) { return (DWORD)SendMessage(PBM_SETRANGE32, minValue, maxValue); } argument
21 INT GetRange(bool minValue, PPBRANGE range) { return (INT)SendMessage(PBM_GETRANGE, BoolToBOOL(minValue), (LPARAM)range); } argument
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp64 int32_t minValue=0; local
67 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) {
68 minValue=gapStarts[i];
105 int32_t minValue=values[0]; local
106 int32_t maxValue=values[length-1]; // Assume minValue<=maxValue.
108 // signed-int32_t overflow of maxValue-minValue.
109 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
112 ranges[0][0]=minValue;
119 // See if we can split [minValue, maxValue] into 2..capacity ranges,
123 int32_t expectedValue=minValue;
[all...]
/external/parameter-framework/upstream/parameter/
H A DIntegerParameterType.cpp401 type minValue, type maxValue,
405 if (value < minValue || value > maxValue) {
416 stream << minValue; local
422 stream << minValue << ", " << maxValue;
400 checkValueAgainstRange(const string &strValue, type value, type minValue, type maxValue, CParameterAccessContext &parameterAccessContext, bool bHexaValue) const argument
/external/deqp/modules/gles3/functional/
H A Des3fInteger64StateQueryTests.cpp199 ConstantMinimumValue64TestCase (Context& context, StateVerifier* verifier, const char* name, const char* description, GLenum targetName, GLuint64 minValue) argument
202 , m_minValue (minValue)
294 GLuint64 minValue; member in struct:deqp::gles3::Functional::LimitedStateInteger64
306 FOR_EACH_VERIFIER(verifiers, addChild(new ConstantMinimumValue64TestCase(m_context, verifier, (std::string(implementationLimits[testNdx].name) + verifier->getTestNamePostfix()).c_str(), implementationLimits[testNdx].description, implementationLimits[testNdx].targetName, implementationLimits[testNdx].minValue)));
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];
H A Des3fIntegerStateQueryTests.cpp917 ConstantMinimumValueTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description, GLenum targetName, GLint minValue) argument
920 , m_minValue (minValue)
940 ConstantMaximumValueTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description, GLenum targetName, GLint minValue) argument
943 , m_minValue (minValue)
1839 ImplementationArrayTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description, GLenum testTargetName, GLenum testTargetLengthTargetName, int minValue) argument
1844 , m_minValue (minValue)
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[nd
83 fillRandomVectors(de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue, void* dst, int numValues, int offset = 0) argument
91 fillRandomScalars(de::Random& rnd, T minValue, T maxValue, void* dst, int numValues, int offset = 0) argument
[all...]
/external/opencv3/modules/features2d/test/
H A Dtest_nearestneighbors.cpp60 static const int minValue = 0; member in class:NearestNeighborTest
130 randu( desc, Scalar(minValue), Scalar(maxValue) );
/external/deqp/modules/gles31/functional/
H A Des31fIntegerStateQueryTests.cpp70 MaxSamplesCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType);
79 MaxSamplesCase::MaxSamplesCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType) argument
82 , m_minValue (minValue)
176 MinimumValueCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType);
177 MinimumValueCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType, glu::ApiType minVersion);
187 MinimumValueCase::MinimumValueCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType) argument
190 , m_minValue (minValue)
196 MinimumValueCase::MinimumValueCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType, glu::ApiType minVersion) argument
199 , m_minValue (minValue)
230 AlignmentCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryTyp
241 AlignmentCase(Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType) argument
250 AlignmentCase(Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType, glu::ApiType minVersion) argument
400 FramebufferMinimumValueCase(Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, glw::GLenum tiedTo, QueryType verifierType) argument
[all...]
H A Des31fAtomicCounterTests.cpp673 deUint32 minValue = (deUint32)-1; local
682 minValue = std::min(minValue, values[valueNdx]);
687 counts.resize(maxValue - minValue + 1, 0);
692 counts[values[valueNdx] - minValue]++;
700 log << TestLog::Message << "Value " << (minValue + countNdx) << " is not unique. Returned " << counts[countNdx] << " times." << TestLog::EndMessage;
720 deUint32 minValue = 0xFFFFFFFFu; local
727 minValue = std::min(minValue, increments[valueNdx]);
736 minValue
[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[nd
87 fillRandomVectors(de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue, void* dst, int numValues, int offset = 0) argument
95 fillRandomScalars(de::Random& rnd, T minValue, T maxValue, void* dst, int numValues, int offset = 0) argument
[all...]
/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.java98 double minValue = Double.MAX_VALUE; field in class:FingerPrintGraph
433 long value = 0; // TODO use minValue instead
466 long value = 0; // TODO use minValue instead
577 this.minValue = Double.MAX_VALUE;
586 if (value < this.minValue) {
587 this.minValue = value;
596 if (value < this.minValue) {
597 this.minValue = value;
600 this.minValue = 0; // do not use minValue fo
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMinMaxPriorityQueueTest.java839 int minValue) {
841 assertEquals(replicatedMinValue, (Integer) minValue);
837 removeMinFromReplica( SortedMap<Integer, AtomicInteger> replica, int minValue) argument
/external/skia/src/effects/
H A DSkColorMatrix.cpp21 SkScalar minValue = row[4] / 255; local
26 minValue += row[i];
28 return (maxValue > 1) || (minValue < 0);
/external/mesa3d/src/mesa/main/
H A Dimage.c814 GLint minValue)
818 if (*dstX0 < minValue) {
820 ASSERT(*dstX1 > minValue); /* X1 should be inside left edge */
821 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0);
824 *dstX0 = minValue;
828 else if (*dstX1 < minValue) {
830 ASSERT(*dstX0 > minValue); /* X0 should be inside left edge */
831 t = (GLfloat) (minValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1);
834 *dstX1 = minValue;
812 clip_left_or_bottom(GLint *srcX0, GLint *srcX1, GLint *dstX0, GLint *dstX1, GLint minValue) argument
/external/skia/src/core/
H A DSkColorMatrixFilterRowMajor255.cpp187 SkScalar minValue = row[4] / 255; local
192 minValue += row[i];
194 return (maxValue > 1) || (minValue < 0);
/external/deqp/modules/gles2/performance/
H A Des2pShaderControlStatementTests.cpp324 float minValue = 0.0f; local
326 m_attributes.push_back(AttribSpec("a_compareValue", Vec4(minValue, 0.0f, 0.0f, 0.0f),
328 Vec4(minValue, 0.0f, 0.0f, 0.0f),
600 float minValue = 0.0f; local
602 m_attributes.push_back(AttribSpec("a_bound", Vec4(minValue, 0.0f, 0.0f, 0.0f),
604 Vec4(minValue, 0.0f, 0.0f, 0.0f),
/external/deqp/modules/gles3/performance/
H A Des3pShaderControlStatementTests.cpp328 float minValue = 0.0f; local
330 m_attributes.push_back(AttribSpec("a_compareValue", Vec4(minValue, 0.0f, 0.0f, 0.0f),
332 Vec4(minValue, 0.0f, 0.0f, 0.0f),
608 float minValue = 0.0f; local
610 m_attributes.push_back(AttribSpec("a_bound", Vec4(minValue, 0.0f, 0.0f, 0.0f),
612 Vec4(minValue, 0.0f, 0.0f, 0.0f),
/external/deqp/modules/glshared/
H A DglsLongStressCase.hpp66 Value minValue; member in struct:deqp::gls::VarSpec
78 minValue.f[0] = minValue_;
86 vecToArr(minValue_, minValue.f);
94 matToArr(minValue_, minValue.f);
101 minValue.i[0] = minValue_;
109 vecToArr(minValue_, minValue.i);
146 tcu::Vec4 minValue; member in struct:deqp::gls::TextureSpec
175 , minValue (minValue_)
H A DglsStateQueryUtil.cpp1120 void verifyIntegerMin (tcu::ResultCollector& result, QueriedState& state, int minValue) argument
1126 if (minValue > 0 && state.getBoolAccess() != true)
1137 if (state.getIntAccess() < minValue)
1140 buf << "Expected greater or equal to " << minValue << ", got " << state.getIntAccess();
1148 if (state.getInt64Access() < minValue)
1151 buf << "Expected greater or equal to " << minValue << ", got " << state.getInt64Access();
1159 if (state.getFloatAccess() < deInt32ToFloatRoundToNegInf(minValue) || deIsNaN(state.getFloatAccess()))
1162 buf << "Expected greater or equal to " << minValue << ", got " << state.getFloatAccess();
1322 void verifyFloatMin (tcu::ResultCollector& result, QueriedState& state, float minValue) argument
1328 if (minValue > 0.
1849 verifyStateIntegerMin(tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, int minValue, QueryType type) argument
1926 verifyStateFloatMin(tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, float minValue, QueryType type) argument
1986 verifyStateIndexedIntegerMin(tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, int index, int minValue, QueryType type) argument
2016 verifyStateFramebufferIntegerMin(tcu::ResultCollector& result, glu::CallLogWrapper& gl, glw::GLenum target, glw::GLenum pname, int minValue, QueryType type) argument
[all...]
/external/freetype/src/truetype/
H A Dttgxvar.c678 FT_Fixed minValue; member in struct:fvar_axis_
748 FT_FRAME_LONG ( minValue ),
871 a->minimum = axis_rec.minValue;
/external/pdfium/third_party/freetype/src/truetype/
H A Dttgxvar.c678 FT_Fixed minValue; member in struct:fvar_axis_
749 FT_FRAME_LONG ( minValue ),
872 a->minimum = axis_rec.minValue;
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktShaderCommonFunctionTests.cpp77 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
78 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); } argument
79 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); } argument
82 inline tcu::Vector<T, Size> randomVector (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue) argument
86 res[ndx] = randomScalar<T>(rnd, minValue[ndx], maxValue[ndx]);
91 static void fillRandomVectors (de::Random& rnd, const tcu::Vector<T, Size>& minValue, const tcu::Vector<T, Size>& maxValue, void* dst, int numValues, int offset = 0) argument
95 access[offset + ndx] = randomVector<T, Size>(rnd, minValue, maxValue);
99 static void fillRandomScalars (de::Random& rnd, T minValue, argument
[all...]
/external/deqp/modules/gles2/functional/
H A Des2fIntegerStateQueryTests.cpp661 ConstantMinimumValueTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description, GLenum targetName, GLint minValue) argument
664 , m_minValue (minValue)
1528 ImplementationArrayTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description, GLenum testTargetName, GLenum testTargetLengthTargetName, int minValue) argument
1533 , m_minValue (minValue)

Completed in 1218 milliseconds

12