Searched refs:maxValue (Results 1 - 25 of 103) sorted by relevance

12345

/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowNumberPicker.java15 private int maxValue; field in class:ShadowNumberPicker
46 public void setMaxValue(int maxValue) { argument
47 this.maxValue = maxValue;
57 return this.maxValue;
/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/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
/external/icu/icu4c/source/tools/toolutil/
H A Ddenseranges.cpp108 int32_t maxValue=values[length-1]; // Assume minValue<=maxValue. local
110 // signed-int32_t overflow of maxValue-minValue.
111 int64_t maxLength=(int64_t)maxValue-(int64_t)minValue+1;
115 ranges[0][1]=maxValue;
121 // See if we can split [minValue, maxValue] into 2..capacity ranges,
135 // the length of the [minValue..maxValue] range (maxLength).
158 ranges[num-1][1]=maxValue;
/external/swiftshader/third_party/LLVM/utils/lit/lit/
H A DUtil.py99 maxValue = max([v for _,v in items])
102 power = int(math.ceil(math.log(maxValue, 10)))
105 N = int(math.ceil(maxValue / barH))
113 bin = min(int(N * v/maxValue), N-1)
124 pDigits = int(math.ceil(math.log(maxValue, 10)))
/external/desugar/java/com/google/devtools/common/options/
H A DConverters.java401 final int maxValue; field in class:Converters.RangeConverter
403 public RangeConverter(int minValue, int maxValue) { argument
405 this.maxValue = maxValue;
414 } else if (value < minValue || value > maxValue) {
415 throw new OptionsParsingException("'" + input + "' should be <= " + maxValue);
426 if (maxValue == Integer.MAX_VALUE) {
429 return "an integer, <= " + maxValue;
431 } else if (maxValue == Integer.MAX_VALUE) {
435 + (minValue < 0 ? "(" + minValue + ")" : minValue) + "-" + maxValue
[all...]
/external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
H A DNumberPickerPreference.java30 private int maxValue; field in class:NumberPickerPreference
46 maxValue = a.getInt(R.styleable.NumberPickerPreference_maxValue, DEFAULT_maxValue);
119 picker.setMaxValue(getNumberPickerPreference().maxValue);
/external/skia/src/sfnt/
H A DSkOTTable_fvar.h36 SK_OT_Fixed maxValue; member in struct:SkOTTableFontVariations::VariationAxisRecord
/external/skqp/src/sfnt/
H A DSkOTTable_fvar.h36 SK_OT_Fixed maxValue; member in struct:SkOTTableFontVariations::VariationAxisRecord
/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/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_)
/external/smali/smali/src/main/java/org/jf/smali/
H A DLiteralTools.java75 byte maxValue = (byte)(Byte.MAX_VALUE / (radix / 2));
83 if (result > maxValue) {
145 short maxValue = (short)(Short.MAX_VALUE / (radix / 2));
153 if (result > maxValue) {
209 int maxValue = Integer.MAX_VALUE / (radix / 2);
217 if (result > maxValue) {
279 long maxValue = Long.MAX_VALUE / (radix / 2);
287 if (result > maxValue) {
/external/llvm/utils/lit/lit/
H A Dutil.py120 maxValue = max([v for _,v in items])
123 power = int(math.ceil(math.log(maxValue, 10)))
126 N = int(math.ceil(maxValue / barH))
134 bin = min(int(N * v/maxValue), N-1)
145 pDigits = int(math.ceil(math.log(maxValue, 10)))
/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/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
H A DCorrelation.java70 double maxValue = 0;
83 if (mDataAutocorrelated[i] > maxValue) {
84 maxValue = mDataAutocorrelated[i];
91 log(String.format(" Maxvalue %f, max Index : %d/%d (%d) minIndex = %d", maxValue, maxIndex,
/external/parameter-framework/upstream/parameter/
H A DIntegerParameterType.cpp401 type minValue, type maxValue,
405 if (value < minValue || value > maxValue) {
418 stream << maxValue; local
422 stream << minValue << ", " << maxValue; local
400 checkValueAgainstRange(const string &strValue, type value, type minValue, type maxValue, CParameterAccessContext &parameterAccessContext, bool bHexaValue) const argument
H A DIntegerParameterType.h95 type maxValue, CParameterAccessContext &parameterAccessContext,
/external/harfbuzz_ng/src/
H A Dhb-ot-var-fvar-table.hh69 Fixed maxValue; /* The maximum coordinate value for the axis. */ member in struct:OT::AxisRecord
119 info->max_value = MAX<float> (info->default_value, axis.maxValue / 65536.);
/external/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp596 int64_t maxValue; variable
600 maxValue = 1 << 8;
603 maxValue = 1 << 10;
606 maxValue = 1 << 16;
609 maxValue = 1 << 23;
612 maxValue = INT64_MAX;
616 bool isFarAway = -maxValue > sValue || sValue > maxValue - 1;
/external/skia/src/core/
H A DSkAntiRun.h46 * middleCount pixels with value += maxValue
54 U8CPU maxValue, int offsetX) {
88 alpha[0] = SkToU8(CatchOverflow(alpha[0] + maxValue));
53 add(int x, U8CPU startAlpha, int middleCount, U8CPU stopAlpha, U8CPU maxValue, int offsetX) argument
/external/skqp/src/core/
H A DSkAntiRun.h46 * middleCount pixels with value += maxValue
54 U8CPU maxValue, int offsetX) {
88 alpha[0] = SkToU8(CatchOverflow(alpha[0] + maxValue));
53 add(int x, U8CPU startAlpha, int middleCount, U8CPU stopAlpha, U8CPU maxValue, int offsetX) argument
/external/icu/icu4c/source/common/
H A Dpropsvec.h165 int32_t maxValue; member in struct:UPVecToUTrie2Context
/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/skqp/src/effects/
H A DSkColorMatrix.cpp20 SkScalar maxValue = row[4] / 255; local
24 maxValue += row[i];
28 return (maxValue > 1) || (minValue < 0);
/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;

Completed in 2732 milliseconds

12345