HomeSort by relevance Sort by last modified time
    Searched refs:maxValue (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/webkit/Source/WebCore/webaudio/
AudioGain.h 39 static PassRefPtr<AudioGain> create(const char* name, double defaultValue, double minValue, double maxValue)
41 return adoptRef(new AudioGain(name, defaultValue, minValue, maxValue));
45 AudioGain(const char* name, double defaultValue, double minValue, double maxValue)
46 : AudioParam(name, defaultValue, minValue, maxValue)
AudioParam.h 44 static PassRefPtr<AudioParam> create(const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0)
46 return adoptRef(new AudioParam(name, defaultValue, minValue, maxValue, units));
49 AudioParam(const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0)
54 , m_maxValue(maxValue)
68 float maxValue() const { return static_cast<float>(m_maxValue); }
AudioParam.idl 35 readonly attribute float maxValue;
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
PKIFailureInfo.java 97 private static int maxValue;
114 if (maxValue == 0) {
116 if (cur.value > maxValue) {
117 maxValue = cur.value;
120 return maxValue;
  /external/opencv/cv/src/
cvadapthresh.cpp 46 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,
134 CV_CALL( icvAdaptiveThreshold_MeanC( src, dst, method, cvRound(maxValue),type,
  /external/webkit/Source/WebCore/platform/
Length.h 119 int calcValue(int maxValue, bool roundPercentages = false) const
124 return calcMinValue(maxValue, roundPercentages);
126 return maxValue;
132 int calcMinValue(int maxValue, bool roundPercentages = false) const
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/webkit/Source/WebKit/chromium/public/mac/
WebThemeEngine.h 67 int maxValue;
  /external/guava/guava/src/com/google/common/collect/
DiscreteDomain.java 28 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
52 * {@code value} is {@code maxValue()}
110 public C maxValue() {
DiscreteDomains.java 65 @Override public Integer maxValue() {
112 @Override public Long maxValue() {
  /external/icu4c/tools/toolutil/
denseranges.cpp 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;
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/smali/smali/src/main/java/org/jf/smali/
LiteralTools.java 72 byte maxValue = (byte)(Byte.MAX_VALUE / (radix / 2));
80 if (result > maxValue) {
142 short maxValue = (short)(Short.MAX_VALUE / (radix / 2));
150 if (result > maxValue) {
206 int maxValue = Integer.MAX_VALUE / (radix / 2);
214 if (result > maxValue) {
276 long maxValue = Long.MAX_VALUE / (radix / 2);
284 if (result > maxValue) {
  /external/llvm/utils/lit/lit/
Util.py 99 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/skia/src/core/
SkAntiRun.h 41 * middleCount pixels with value += maxValue
49 U8CPU maxValue, int offsetX);
SkAlphaRuns.cpp 75 U8CPU maxValue, int offsetX) {
110 alpha[0] = SkToU8(alpha[0] + maxValue);
  /external/chromium/webkit/glue/
webthemeengine_impl_mac.cc 41 trackInfo.max = scrollbarInfo.maxValue;
  /external/icu4c/common/
propsvec.h 163 int32_t maxValue;
  /external/webkit/Tools/DumpRenderTree/chromium/
WebThemeEngineDRTMac.mm 131 trackInfo.max = scrollbarInfo.maxValue;
162 double value = double(scrollbarInfo.currentValue) / double(scrollbarInfo.maxValue);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
FingerPrintGraph.java 97 double maxValue = 0.0;
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 = value
    [all...]
  /packages/apps/Camera/src/com/android/camera/
CameraSettings.java 207 int maxValue = (int) FloatMath.floor(max * step);
209 CharSequence entries[] = new CharSequence[maxValue - minValue + 1];
210 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1];
211 for (int i = minValue; i <= maxValue; ++i) {
212 entryValues[maxValue - i] = Integer.toString(Math.round(i / step));
215 entries[maxValue - i] = builder.append(i).toString();
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraSettings.java 206 int maxValue = (int) Math.floor(max * step);
208 CharSequence entries[] = new CharSequence[maxValue - minValue + 1];
209 CharSequence entryValues[] = new CharSequence[maxValue - minValue + 1];
210 for (int i = minValue; i <= maxValue; ++i) {
211 entryValues[maxValue - i] = Integer.toString(Math.round(i / step));
214 entries[maxValue - i] = builder.append(i).toString();
  /frameworks/base/services/java/com/android/server/
DeviceStorageMonitorService.java 280 long maxValue = Settings.Secure.getInt(
285 return value < maxValue ? value : maxValue;
  /external/srec/portable/include/
ptrd.h 305 * @param maxValue Maximum semaphore value
311 unsigned int maxValue,
  /frameworks/av/media/libstagefright/yuv/
YUVImage.cpp 367 uint8_t clamp(uint8_t v, uint8_t minValue, uint8_t maxValue) {
368 CHECK(maxValue >= minValue);
371 else if (v > maxValue) return maxValue;
  /cts/tests/tests/database/src/android/database/cts/
CursorJoinerTest.java 174 * This function accepts integer maxValue to determine max length of number.
179 * @param maxValue
182 private String getOrderNumberString(int value, int maxValue) {
184 int maxLength = Integer.toString(maxValue).length();
  /external/aac/libSBRenc/src/
ps_main.cpp 558 FIXP_QMF maxValue = FL2FXCONST_DBL(0.f);
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))));

Completed in 379 milliseconds

1 2 3