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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/media/libndkaudio/
WaveTableGenerator.h 25 static float* genSinWave(int size, float maxValue);
26 static float* genSinWave(int size, float maxValue, float* tbl);
WaveTableGenerator.cpp 29 float* WaveTableGenerator::genSinWave(int size, float maxValue) {
30 return genSinWave(size, maxValue, new float[size]);
33 float* WaveTableGenerator::genSinWave(int size, float maxValue, float* tbl) {
37 tbl[index] = (float) sin(val) * maxValue;
  /cts/tests/app/src/android/app/cts/android/app/cts/tools/
UidImportanceListener.java 46 public int waitForValue(int minValue, int maxValue, long timeout) {
50 while (mLastValue < minValue || mLastValue > maxValue) {
54 + minValue + "-" + maxValue + ", last was " + mLastValue);
61 Log.d("XXXX", "waitForValue " + minValue + "-" + maxValue + ": " + mLastValue);
  /external/lzma/CPP/Windows/Control/
ProgressBar.h 17 LRESULT SetRange(unsigned short minValue, unsigned short maxValue) { return SendMessage(PBM_SETRANGE, 0, MAKELPARAM(minValue, maxValue)); }
18 DWORD SetRange32(int minValue, int maxValue) { return (DWORD)SendMessage(PBM_SETRANGE32, minValue, maxValue); }
  /frameworks/base/media/java/android/media/
AudioGain.java 73 int minValue, int maxValue, int defaultValue, int stepValue,
79 mMaxValue = maxValue;
111 public int 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,
  /developers/build/prebuilts/gradle/WearComplicationProvidersTestSuite/Wearable/src/main/java/com/example/android/wearable/wear/wearcomplicationproviderstestsuite/
RangedValueProviderService.java 58 float maxValue = MAX_VALUES[caseValue];
59 float value = (float) Math.random() * (maxValue - minValue) + minValue;
66 .setMaxValue(maxValue)
78 .setMaxValue(maxValue)
94 .setMaxValue(maxValue)
108 .setMaxValue(maxValue)
  /developers/samples/android/wearable/wear/WearComplicationProvidersTestSuite/Wearable/src/main/java/com/example/android/wearable/wear/wearcomplicationproviderstestsuite/
RangedValueProviderService.java 58 float maxValue = MAX_VALUES[caseValue];
59 float value = (float) Math.random() * (maxValue - minValue) + minValue;
66 .setMaxValue(maxValue)
78 .setMaxValue(maxValue)
94 .setMaxValue(maxValue)
108 .setMaxValue(maxValue)
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
PickerColumn.java 19 * labels. A PickerColumn has a minValue and maxValue to choose between. The Picker column has
39 * @param labelFormat String format to display label for value between minValue and maxValue.
55 * Set static labels for each value, minValue maps to labels[0], maxValue maps to
57 * @param labels Static labels for each value between minValue and maxValue.
64 * Returns static labels for each value, minValue maps to labels[0], maxValue maps to
75 * @param value Value between minValue and maxValue.
101 * Get total items count between minValue and maxValue.
102 * @return Total items count between minValue and maxValue.
134 * @param maxValue New maximum value to set.
136 public void setMaxValue(int maxValue) {
    [all...]
  /external/icu/icu4c/source/tools/toolutil/
denseranges.cpp 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;
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;
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioGain.h 40 void setMaxValueInMb(int maxValue) { mGain.max_value = maxValue; }
  /frameworks/base/libs/hwui/utils/
MathUtils.h 86 static inline T clamp(T a, T minValue, T maxValue) {
87 return std::min(std::max(a, minValue), maxValue);
  /external/swiftshader/third_party/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/desugar/java/com/google/devtools/common/options/
Converters.java 360 final int maxValue;
362 public RangeConverter(int minValue, int maxValue) {
364 this.maxValue = maxValue;
373 } else if (value < minValue || value > maxValue) {
374 throw new OptionsParsingException("'" + input + "' should be <= " + maxValue);
385 if (maxValue == Integer.MAX_VALUE) {
388 return "an integer, <= " + maxValue;
390 } else if (maxValue == Integer.MAX_VALUE) {
394 + (minValue < 0 ? "(" + minValue + ")" : minValue) + "-" + maxValue + " range"
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
Correlation.java 53 double maxValue = 0;
65 if (mDataAutocorrelated[i] > maxValue) {
66 maxValue = mDataAutocorrelated[i];
73 log(String.format(" Maxvalue %f, max Index : %d/%d (%d) minIndex=%d",maxValue, maxIndex,
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
Preconditions.java 144 public static void checkValueArg(int valueArg, int maxValue) {
145 if (valueArg > maxValue) {
146 if (maxValue == 0) {
153 valueArg, maxValue));
  /frameworks/base/core/java/com/android/internal/widget/
NumericTextView.java 133 * @param maxValue the maximum valid value (inclusive)
135 public final void setRange(int minValue, int maxValue) {
140 if (mMaxValue != maxValue) {
141 mMaxValue = maxValue;
142 mMaxCount = 1 + (int) (Math.log(maxValue) / LOG_RADIX);
  /packages/services/Car/vehicle-hal-support-lib/src/com/android/car/vehiclehal/test/
VehiclePropConfigBuilder.java 112 public VehiclePropConfigBuilder addAreaConfig(int areaId, int minValue, int maxValue) {
116 area.maxInt32Value = maxValue;
122 public VehiclePropConfigBuilder addAreaConfig(int areaId, float minValue, float maxValue) {
126 area.maxFloatValue = maxValue;
  /external/deqp/modules/glshared/
glsLongStressCase.hpp 67 Value maxValue;
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;
176 , maxValue (maxValue_)
  /external/smali/smali/src/main/java/org/jf/smali/
LiteralTools.java 75 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) {
  /developers/build/prebuilts/gradle/BatchStepSensor/Application/src/main/java/com/example/android/batchstepsensor/cardstream/
Card.java 470 public Builder setProgressMaxValue(int maxValue) {
475 mCard.mCardProgress.maxValue = maxValue;
596 progressBar.setMax(mCard.mCardProgress.maxValue);
641 private int maxValue = 100;
651 progressClone.maxValue = maxValue;
677 maxValue = max;
680 bar.setMax(maxValue);
  /development/samples/browseable/BatchStepSensor/src/com.example.android.batchstepsensor/cardstream/
Card.java 470 public Builder setProgressMaxValue(int maxValue) {
475 mCard.mCardProgress.maxValue = maxValue;
596 progressBar.setMax(mCard.mCardProgress.maxValue);
641 private int maxValue = 100;
651 progressClone.maxValue = maxValue;
677 maxValue = max;
680 bar.setMax(maxValue);
  /external/guava/guava/src/com/google/common/collect/
DiscreteDomain.java 30 * to their specifications. The methods {@link #minValue} and {@link #maxValue}
79 @Override public Integer maxValue() {
133 @Override public Long maxValue() {
201 * {@code value} is {@code maxValue()}
259 public C maxValue() {
  /frameworks/support/dynamic-animation/src/android/support/animation/
FlingAnimation.java 118 * @param maxValue maximum value of the property to be animated
122 public FlingAnimation setMaxValue(float maxValue) {
123 super.setMaxValue(maxValue);
  /external/parameter-framework/upstream/parameter/
IntegerParameterType.cpp 401 type minValue, type maxValue,
405 if (value < minValue || value > maxValue) {
418 stream << maxValue;
422 stream << minValue << ", " << maxValue;

Completed in 507 milliseconds

1 2 3 4 5 6 7 8 91011>>