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

12

/external/webkit/Source/WebCore/webaudio/
H A DAudioGain.h39 static PassRefPtr<AudioGain> create(const char* name, double defaultValue, double minValue, double maxValue) argument
41 return adoptRef(new AudioGain(name, defaultValue, minValue, maxValue));
45 AudioGain(const char* name, double defaultValue, double minValue, double maxValue) argument
46 : AudioParam(name, defaultValue, minValue, maxValue)
H A DAudioParam.h44 static PassRefPtr<AudioParam> create(const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) argument
46 return adoptRef(new AudioParam(name, defaultValue, minValue, maxValue, units));
49 AudioParam(const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) argument
54 , m_maxValue(maxValue)
68 float maxValue() const { return static_cast<float>(m_maxValue); } function in class:WebCore::AudioParam
/external/guava/guava/src/com/google/common/collect/
H A DDiscreteDomain.java28 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
52 * {@code value} is {@code maxValue()}
110 public C maxValue() { method in class:DiscreteDomain
H A DDiscreteDomains.java65 @Override public Integer maxValue() { method in class:DiscreteDomains.IntegerDomain
112 @Override public Long maxValue() { method in class:DiscreteDomains.LongDomain
/external/icu4c/common/
H A Dpropsvec.h163 int32_t maxValue; member in struct:UPVecToUTrie2Context
/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 DSkAlphaRuns.cpp75 U8CPU maxValue, int offsetX) {
110 alpha[0] = SkToU8(alpha[0] + maxValue);
74 add(int x, U8CPU startAlpha, int middleCount, U8CPU stopAlpha, U8CPU maxValue, int offsetX) argument
H A DSkScan_AntiPath.cpp459 U8CPU stopAlpha, U8CPU maxValue) {
482 alpha[0] = SkToU8(alpha[0] + maxValue);
489 uint32_t qval = quadplicate_byte(maxValue);
500 alpha[0] = SkToU8(alpha[0] + maxValue);
458 add_aa_span(uint8_t* alpha, U8CPU startAlpha, int middleCount, U8CPU stopAlpha, U8CPU maxValue) argument
/external/webkit/Source/WebKit/chromium/public/mac/
H A DWebThemeEngine.h67 int maxValue; member in struct:WebKit::WebThemeEngine::ScrollbarInfo
/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/icu4c/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/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/webkit/Source/WebCore/platform/
H A DLength.h119 int calcValue(int maxValue, bool roundPercentages = false) const argument
124 return calcMinValue(maxValue, roundPercentages);
126 return maxValue;
132 int calcMinValue(int maxValue, bool roundPercentages = false) const argument
139 return static_cast<int>(round(maxValue * percent() / 100.0f));
141 return static_cast<int>(static_cast<float>(maxValue * percent() / 100.0f));
148 float calcFloatValue(int maxValue) const
154 return static_cast<float>(maxValue * percent() / 100.0f);
156 return static_cast<float>(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.java816 int maxValue) {
818 assertTrue("maxValue is incorrect", replicatedMaxValue == maxValue);
814 removeMaxFromReplica( SortedMap<Integer, AtomicInteger> replica, int maxValue) argument
/external/freetype/src/truetype/
H A Dttgxvar.c589 FT_ULong maxValue; member in struct:fvar_axis_
659 FT_FRAME_ULONG ( maxValue ),
754 a->maximum = axis_rec.maxValue; /* A Fixed */
/external/webkit/Source/WebCore/platform/chromium/
H A DPlatformBridge.h392 int maxValue; member in struct:WebCore::PlatformBridge::ThemePaintScrollbarInfo
/external/aac/libAACenc/src/
H A Dqc_main.cpp141 UINT *RESTRICT maxValue);
1291 UINT *RESTRICT maxValue)
1307 maxValue[sfbOffs+sfb] = maxThisSfb;
1286 FDKaacEnc_calcMaxValueInSfb(INT sfbCnt, INT maxSfbPerGroup, INT sfbPerGroup, INT *RESTRICT sfbOffset, SHORT *RESTRICT quantSpectrum, UINT *RESTRICT maxValue) argument
/external/icu4c/tools/gennorm2/
H A Dn2builder.cpp1007 uint32_t maxValue=utrie2_get32(norm16Trie, lead); local
1008 utrie2_enumForLeadSurrogate(norm16Trie, lead, NULL, enumRangeMaxValue, &maxValue);
1009 if( maxValue>=(uint32_t)indexes[Normalizer2Impl::IX_LIMIT_NO_NO] &&
1010 maxValue>(uint32_t)indexes[Normalizer2Impl::IX_MIN_NO_NO]
1015 maxValue=(uint32_t)indexes[Normalizer2Impl::IX_LIMIT_NO_NO]-1;
1017 utrie2_set32ForLeadSurrogateCodeUnit(norm16Trie, lead, maxValue, errorCode);
/external/webkit/Source/WebCore/svg/animation/
H A DSVGSMILElement.cpp588 SMILTime SVGSMILElement::maxValue() const function in class:WebCore::SVGSMILElement
672 SMILTime maxValue = this->maxValue(); local
673 if (minValue > maxValue) {
677 maxValue = SMILTime::indefinite();
679 return resolvedBegin + min(maxValue, max(minValue, preliminaryActiveDuration));
/external/webkit/Tools/DumpRenderTree/gtk/
H A DAccessibilityUIElementGtk.cpp350 double AccessibilityUIElement::maxValue() function in class:AccessibilityUIElement
/external/webkit/Tools/DumpRenderTree/win/
H A DAccessibilityUIElementWin.cpp394 double AccessibilityUIElement::maxValue() function in class:AccessibilityUIElement
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2367 const APInt& maxValue = cast<ConstantInt>(BackCase.High)->getValue(); local
2368 APInt cmpRange = maxValue - minValue;
2372 << "High bound: " << maxValue << '\n'); local
2386 if (maxValue.ult(IntPtrBits)) {
2387 cmpRange = maxValue;
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.p2.touchpoint.eclipse_2.0.2.R36x_v20100823.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.databinding_1.3.100.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 676 milliseconds

12