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

1 2 3 4 5 6 7 8 910

  /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;
  /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,
  /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 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/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonAsmBackend.cpp 256 int64_t maxValue;
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;
  /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);
  /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 153 public static void checkValueArg(int valueArg, int maxValue) {
154 if (valueArg > maxValue) {
155 if (maxValue == 0) {
162 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);
  /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/llvm/utils/lit/lit/
util.py 117 maxValue = max([v for _,v in items])
120 power = int(math.ceil(math.log(maxValue, 10)))
123 N = int(math.ceil(maxValue / barH))
131 bin = min(int(N * v/maxValue), N-1)
142 pDigits = int(math.ceil(math.log(maxValue, 10)))
  /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() {
  /external/opencv3/modules/imgproc/perf/
perf_threshold.cpp 80 double maxValue = theRNG().uniform(1, 254);
89 TEST_CYCLE() adaptiveThreshold(src, dst, maxValue, adaptThreshMethod, adaptThreshType, blockSize, C);
  /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;
IntegerParameterType.h 95 type maxValue, CParameterAccessContext &parameterAccessContext,
  /external/skia/src/core/
SkAntiRun.h 41 * middleCount pixels with value += maxValue
49 U8CPU maxValue, int offsetX) {
83 alpha[0] = SkToU8(alpha[0] + maxValue);
  /external/icu/icu4c/source/common/
propsvec.h 163 int32_t 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...]

Completed in 800 milliseconds

1 2 3 4 5 6 7 8 910