Searched defs:minValue (Results 1 - 25 of 31) 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/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/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) {
410 strStream << "0x" << std::hex << std::uppercase << std::setw(getSize()*2) << std::setfill('0') << makeEncodable(minValue);
416 strStream << minValue << ", " << maxValue;
H A DEnumParameterType.cpp166 int64_t minValue = -maxValue - 1; local
168 if (!bConversionSucceeded || value < minValue || value > maxValue) {
177 strStream << "0x" << std::hex << std::uppercase << std::setw(getSize()*2) << std::setfill('0') << makeEncodable(minValue);
183 strStream << minValue << ", " << maxValue;
/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/deqp/modules/gles31/functional/
H A Des31fIntegerStateQueryTests.cpp66 MaxSamplesCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType);
75 MaxSamplesCase::MaxSamplesCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType) argument
78 , m_minValue (minValue)
167 MinimumValueCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType);
176 MinimumValueCase::MinimumValueCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType) argument
179 , m_minValue (minValue)
199 AlignmentCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType);
208 AlignmentCase::AlignmentCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, QueryType verifierType) argument
211 , m_minValue (minValue)
345 FramebufferMinimumValueCase (Context& context, const char* name, const char* desc, glw::GLenum target, int minValue, gl
355 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/pdfium/third_party/freetype/src/truetype/
H A Dttgxvar.c580 FT_ULong minValue; member in struct:fvar_axis_
650 FT_FRAME_ULONG ( minValue ),
745 a->minimum = axis_rec.minValue; /* A Fixed */
/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...]
H A DglsVertexArrayTests.cpp317 inline T minValue (void);
320 inline GLValue::Float minValue (void) function in namespace:deqp::gls
326 inline GLValue::Short minValue (void) function in namespace:deqp::gls
332 inline GLValue::Ushort minValue (void) function in namespace:deqp::gls
338 inline GLValue::Byte minValue (void) function in namespace:deqp::gls
344 inline GLValue::Ubyte minValue (void) function in namespace:deqp::gls
350 inline GLValue::Fixed minValue (void) function in namespace:deqp::gls
356 inline GLValue::Int minValue (void) function in namespace:deqp::gls
362 inline GLValue::Uint minValue (void) function in namespace:deqp::gls
368 inline GLValue::Half minValue (voi function in namespace:deqp::gls
374 inline GLValue::Double minValue (void) function in namespace:deqp::gls
[all...]
H A DglsDrawTest.cpp763 inline T minValue (void);
766 inline GLValue::Float minValue (void) function in namespace:deqp::gls::__anon3758
772 inline GLValue::Double minValue (void) function in namespace:deqp::gls::__anon3758
778 inline GLValue::Short minValue (void) function in namespace:deqp::gls::__anon3758
784 inline GLValue::Ushort minValue (void) function in namespace:deqp::gls::__anon3758
790 inline GLValue::Byte minValue (void) function in namespace:deqp::gls::__anon3758
796 inline GLValue::Ubyte minValue (void) function in namespace:deqp::gls::__anon3758
802 inline GLValue::Fixed minValue (void) function in namespace:deqp::gls::__anon3758
808 inline GLValue::Int minValue (void) function in namespace:deqp::gls::__anon3758
814 inline GLValue::Uint minValue (voi function in namespace:deqp::gls::__anon3758
820 inline GLValue::Half minValue (void) function in namespace:deqp::gls::__anon3758
[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/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)
/external/icu/icu4c/source/common/
H A Ducnvmbcs.cpp875 uint16_t minValue; local
886 minValue=0xf00;
889 minValue=0x800;
902 if(*stage3++>=minValue) {
3642 uint16_t value, minValue; local
3662 minValue=0x800;
3665 minValue=0xc00;
3737 if(value>=minValue) {
3819 uint16_t value, minValue; local
3839 minValue
5016 uint16_t value, minValue; local
[all...]

Completed in 842 milliseconds

12