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

123

/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmVariablePointersTests.cpp82 void fillRandomScalars (de::Random& rnd, T minValue, T maxValue, void* dst, int numValues, int offset = 0) argument
86 typedPtr[offset + ndx] = randomScalar<T>(rnd, minValue, maxValue);
H A DvktSpvAsmComputeShaderTestUtil.hpp67 static void fillRandomScalars (de::Random& rnd, deInt32 minValue, deInt32 maxValue, deInt32* dst, deInt32 numValues) argument
70 dst[i] = rnd.getInt(minValue, maxValue);
H A DvktSpvAsmGraphicsShaderTestUtil.hpp332 template<typename T> T randomScalar (de::Random& rnd, T minValue, T maxValue);
333 template<> inline float randomScalar (de::Random& rnd, float minValue, float maxValue) { return rnd.getFloat(minValue, maxValue); } argument
334 template<> inline deInt32 randomScalar (de::Random& rnd, deInt32 minValue, deInt32 maxValue) { return rnd.getInt(minValue, maxValue); } argument
/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.h21 LRESULT SetRange(unsigned short minValue, unsigned short maxValue) { return SendMsg(PBM_SETRANGE, 0, MAKELPARAM(minValue, maxValue)); } argument
22 DWORD SetRange32(int minValue, int maxValue) { return (DWORD)SendMsg(PBM_SETRANGE32, minValue, maxValue); } argument
25 INT GetRange(bool minValue, PPBRANGE range) { return (INT)SendMsg(PBM_GETRANGE, BoolToBOOL(minValue), (LPARAM)range); } argument
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowNumberPicker.java14 private int minValue; field in class:ShadowNumberPicker
41 public void setMinValue(int minValue) { argument
42 this.minValue = minValue;
52 return this.minValue;
/external/skia/src/sfnt/
H A DSkOTTable_fvar.h34 SK_OT_Fixed minValue; member in struct:SkOTTableFontVariations::VariationAxisRecord
/external/skqp/src/sfnt/
H A DSkOTTable_fvar.h34 SK_OT_Fixed minValue; member in struct:SkOTTableFontVariations::VariationAxisRecord
/external/harfbuzz_ng/src/
H A Dhb-ot-var-fvar-table.hh67 Fixed minValue; /* The minimum coordinate value for the axis. */ member in struct:OT::AxisRecord
118 info->min_value = MIN<float> (info->default_value, axis.minValue / 65536.);
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp66 int32_t minValue=0; local
69 if(value<gapStarts[i] && (minIndex<0 || gapStarts[i]<minValue)) {
70 minValue=gapStarts[i];
107 int32_t minValue=values[0]; local
108 int32_t maxValue=values[length-1]; // Assume minValue<=maxValue.
110 // signed-int32_t overflow of maxValue-minValue.
111 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
114 ranges[0][0]=minValue;
121 // See if we can split [minValue, maxValue] into 2..capacity ranges,
125 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/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
H A DNumberPickerPreference.java31 private int minValue; field in class:NumberPickerPreference
47 minValue = a.getInt(R.styleable.NumberPickerPreference_minValue, DEFAULT_minValue);
120 picker.setMinValue(getNumberPickerPreference().minValue);
/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)));
/external/desugar/java/com/google/devtools/common/options/
H A DConverters.java400 final int minValue; field in class:Converters.RangeConverter
403 public RangeConverter(int minValue, int maxValue) { argument
404 this.minValue = minValue;
412 if (value < minValue) {
413 throw new OptionsParsingException("'" + input + "' should be >= " + minValue);
414 } else if (value < minValue || value > maxValue) {
425 if (minValue == Integer.MIN_VALUE) {
432 return "an integer, >= " + minValue;
435 + (minValue <
[all...]
/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...]
/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/core/
H A DSkColorMatrixFilterRowMajor255.cpp103 SkScalar minValue = row[4] / 255; local
108 minValue += row[i];
110 return (maxValue > 1) || (minValue < 0);
/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/skqp/src/core/
H A DSkColorMatrixFilterRowMajor255.cpp103 SkScalar minValue = row[4] / 255; local
108 minValue += row[i];
110 return (maxValue > 1) || (minValue < 0);
/external/skqp/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.c840 GLint minValue)
844 if (*dstX0 < minValue) {
846 assert(*dstX1 > minValue); /* X1 should be inside left edge */
847 t = (GLfloat) (minValue - *dstX0) / (GLfloat) (*dstX1 - *dstX0);
850 *dstX0 = minValue;
854 else if (*dstX1 < minValue) {
856 assert(*dstX0 > minValue); /* X0 should be inside left edge */
857 t = (GLfloat) (minValue - *dstX1) / (GLfloat) (*dstX0 - *dstX1);
860 *dstX1 = minValue;
838 clip_left_or_bottom(GLint *srcX0, GLint *srcX1, GLint *dstX0, GLint *dstX1, GLint minValue) argument
/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_)

Completed in 699 milliseconds

123