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

123

/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/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
/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) {
83 alpha[0] = SkToU8(alpha[0] + maxValue);
48 add(int x, U8CPU startAlpha, int middleCount, U8CPU stopAlpha, U8CPU maxValue, int offsetX) argument
H A DSkColorMatrixFilterRowMajor255.cpp186 SkScalar maxValue = row[4] / 255; local
190 maxValue += row[i];
194 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;
/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/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp256 int64_t maxValue; variable
260 maxValue = 1 << 8;
263 maxValue = 1 << 10;
266 maxValue = 1 << 16;
269 maxValue = 1 << 23;
272 maxValue = INT64_MAX;
276 bool isFarAway = -maxValue > sValue || sValue > maxValue - 1;
/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
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DPreconditions.java153 public static void checkValueArg(int valueArg, int maxValue) { argument
154 if (valueArg > maxValue) {
155 if (maxValue == 0) {
162 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/dng_sdk/source/
H A Ddng_utils.cpp434 uint32 maxValue,
440 DoZeroBytes (hist, (maxValue + 1) * (uint32) sizeof (uint32));
479 if (maxValue == 0x0FFFF && step2 == 1)
503 if (x <= maxValue)
430 HistogramArea(dng_host & , const dng_image &image, const dng_rect &area, uint32 *hist, uint32 maxValue, uint32 plane) argument
/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/xfa/src/fxbarcode/pdf417/
H A DBC_PDF417ScanningDecoder.cpp253 int32_t maxValue = -1; local
256 maxValue = maxValue > value ? maxValue : value;
258 return maxValue;
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
H A DScriptEditor.java103 private int readIntPref(String key, int defaultValue, int maxValue) { argument
110 val = Math.max(0, Math.min(val, maxValue));
/external/aac/libAACenc/src/
H A Dqc_main.cpp138 UINT *RESTRICT maxValue);
1300 UINT *RESTRICT maxValue)
1316 maxValue[sfbOffs+sfb] = maxThisSfb;
1295 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...]
/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...]

Completed in 707 milliseconds

123