HomeSort by relevance Sort by last modified time
    Searched full:maxvalue (Results 1 - 25 of 204) sorted by null

1 2 3 4 5 6 7 8 9

  /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/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...]
  /cts/tests/tests/media/libndkaudio/
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;
WaveTableGenerator.h 25 static float* genSinWave(int size, float maxValue);
26 static float* genSinWave(int size, float maxValue, float* tbl);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/rsa/rsa/
randnum.py 60 def randint(maxvalue):
61 '''Returns a random integer x with 1 <= x <= maxvalue
63 May take a very long time in specific situations. If maxvalue needs N bits
64 to store, the closer maxvalue is to (2 ** N) - 1, the faster this function
68 bit_size = common.bit_size(maxvalue)
73 if value <= maxvalue:
78 # smaller than maxvalue, decrease the number of bits by 1. That'll
  /external/chromium-trace/catapult/tracing/tracing/extras/tquery/
filter_has_duration.html 18 this.maxValue = opt_maxValue;
30 if (this.minValue !== undefined && this.maxValue !== undefined) {
32 context.event.duration <= this.maxValue;
  /packages/inputmethods/LatinIME/java/res/xml/
prefs_screen_debug.xml 53 latin:maxValue="100" /> <!-- percent -->
58 latin:maxValue="100" /> <!-- percent -->
63 latin:maxValue="100" /> <!-- percent -->
68 latin:maxValue="100" /> <!-- percent -->
73 latin:maxValue="100" /> <!-- milliseconds -->
78 latin:maxValue="100" /> <!-- milliseconds -->
89 latin:maxValue="120" /> <!-- percentage -->
prefs_screen_advanced.xml 29 latin:maxValue="@integer/config_max_vibration_duration" />
33 latin:maxValue="100" /> <!-- percent -->
38 latin:maxValue="@integer/config_max_longpress_timeout"
  /external/clang/test/CodeGenObjC/
protocols.m 6 +(int) maxValue;
56 return [P1Object maxValue];
  /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/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/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);
  /frameworks/av/services/audiopolicy/common/managerdefinitions/include/
AudioGain.h 40 void setMaxValueInMb(int maxValue) { mGain.max_value = maxValue; }
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
tkSimpleDialog.py 176 minvalue = None, maxvalue = None,
185 self.maxvalue = maxvalue
232 if self.maxvalue is not None and result > self.maxvalue:
236 "Please try again." % self.maxvalue,
322 print askfloat("Spam", "Egg weight\n(in tons)", minvalue=1, maxvalue=100)
  /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/chromium-trace/catapult/netlog_viewer/netlog_viewer/
timeline_graph_view.js 536 * consideration. |maxValue| is the actual maximum value, and
538 * will be at least |maxValue|.
540 layoutLabels_: function(maxValue) {
542 this.layoutLabelsBasic_(maxValue, 0);
553 // Update |maxValue| to be in the right units.
554 maxValue = maxValue / 1024;
555 while (units[unit + 1] && maxValue >= 999) {
556 maxValue /= 1024;
561 this.layoutLabelsBasic_(maxValue, 1)
    [all...]
  /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;
  /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) {
  /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/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/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)))
  /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);

Completed in 2284 milliseconds

1 2 3 4 5 6 7 8 9