Searched defs:max (Results 26 - 50 of 161) sorted by relevance

1234567

/frameworks/ex/common/java/com/android/common/
H A DOperationScheduler.java60 "OperationScheduler.Options[backoff=%.1f+%.1f+%.1f max=%.1f min=%.1f period=%.1f]",
67 "OperationScheduler.Options[backoff=%.1f+%.1f max=%.1f min=%.1f period=%.1f]",
90 * backoff=(fixed)+(incremental)[+(exponential)] max=(maxmoratorium) min=(mintrigger) [period=](interval)
97 * The default options: <code>backoff=0+5 max=86400 min=0 period=0</code><br>
124 } else if (param.startsWith("max=")) {
175 time = Math.max(time, moratoriumTimeMillis);
176 time = Math.max(time, lastSuccessTimeMillis + options.minTriggerMillis);
192 time = Math.max(time, lastErrorTimeMillis + backoff);
213 return Math.max(
224 * @param max tim
227 getTimeBefore(String name, long max) argument
[all...]
/frameworks/native/libs/input/
H A DInputDevice.cpp178 void InputDeviceInfo::addMotionRange(int32_t axis, uint32_t source, float min, float max, argument
180 MotionRange range = { axis, source, min, max, flat, fuzz, resolution };
/frameworks/rs/driver/runtime/arch/
H A Dgeneric.c231 extern char __attribute__((overloadable)) max(char v1, char v2) { function
235 extern char2 __attribute__((overloadable)) max(char2 v1, char2 v2) { function
242 extern char3 __attribute__((overloadable)) max(char3 v1, char3 v2) { function
250 extern char4 __attribute__((overloadable)) max(char4 v1, char4 v2) { function
259 extern short __attribute__((overloadable)) max(short v1, short v2) { function
263 extern short2 __attribute__((overloadable)) max(short2 v1, short2 v2) { function
270 extern short3 __attribute__((overloadable)) max(short3 v1, short3 v2) { function
278 extern short4 __attribute__((overloadable)) max(short4 v1, short4 v2) { function
287 extern int __attribute__((overloadable)) max(int v1, int v2) { function
291 extern int2 __attribute__((overloadable)) max(int function
298 extern int3 __attribute__((overloadable)) max(int3 v1, int3 v2) { function
306 extern int4 __attribute__((overloadable)) max(int4 v1, int4 v2) { function
315 extern uchar __attribute__((overloadable)) max(uchar v1, uchar v2) { function
319 extern uchar2 __attribute__((overloadable)) max(uchar2 v1, uchar2 v2) { function
326 extern uchar3 __attribute__((overloadable)) max(uchar3 v1, uchar3 v2) { function
334 extern uchar4 __attribute__((overloadable)) max(uchar4 v1, uchar4 v2) { function
343 extern ushort __attribute__((overloadable)) max(ushort v1, ushort v2) { function
347 extern ushort2 __attribute__((overloadable)) max(ushort2 v1, ushort2 v2) { function
354 extern ushort3 __attribute__((overloadable)) max(ushort3 v1, ushort3 v2) { function
362 extern ushort4 __attribute__((overloadable)) max(ushort4 v1, ushort4 v2) { function
371 extern uint __attribute__((overloadable)) max(uint v1, uint v2) { function
375 extern uint2 __attribute__((overloadable)) max(uint2 v1, uint2 v2) { function
382 extern uint3 __attribute__((overloadable)) max(uint3 v1, uint3 v2) { function
390 extern uint4 __attribute__((overloadable)) max(uint4 v1, uint4 v2) { function
399 extern float __attribute__((overloadable)) max(float v1, float v2) { function
403 extern float2 __attribute__((overloadable)) max(float2 v1, float2 v2) { function
407 extern float2 __attribute__((overloadable)) max(float2 v1, float v2) { function
411 extern float3 __attribute__((overloadable)) max(float3 v1, float3 v2) { function
415 extern float3 __attribute__((overloadable)) max(float3 v1, float v2) { function
419 extern float4 __attribute__((overloadable)) max(float4 v1, float4 v2) { function
423 extern float4 __attribute__((overloadable)) max(float4 v1, float v2) { function
[all...]
/frameworks/av/media/libmedia/
H A Dmediarecorder.cpp412 // of the only currently supported parameters, "max-duration" and
413 // "max-filesize" are _not_ fatal.
458 status_t MediaRecorder::getMaxAmplitude(int* max) argument
470 status_t ret = mMediaRecorder->getMaxAmplitude(max);
/frameworks/av/media/libmediaplayerservice/
H A DMediaRecorderClient.cpp219 status_t MediaRecorderClient::getMaxAmplitude(int* max) argument
227 return mRecorder->getMaxAmplitude(max);
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dblock_switch.c176 enMax = max(enMax, enM1);
243 * returns: the max value
248 Word32 max; local
252 max = 0;
257 if (in[i+1] > max) {
258 max = in[i+1];
264 return(max);
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dp_ol_wgh.cpp422 rmax = pointer to max(<s[i]*s[j]>), (Word32)
430 rmax contains the newly calculated max(<s[i]*s[j]>)
435 p_max = lag of the max correlation found (Word16)
482 Word32 max, t0;
491 max = MIN_32;
509 if (L_sub (t0, max) >= 0)
511 max = t0;
530 vadSt->L_Rmax = L_add(vadSt->L_Rmax, t0); // Save max correlation
531 vadSt->L_R0 = L_add(vadSt->L_R0, t1); // Save max energy
590 Word32 max; local
[all...]
H A Dpitch_ol.cpp100 rmax = pointer to max(<s[i]*s[j]>), (Word32)
107 rmax contains the newly calculated max(<s[i]*s[j]>)
111 p_max = lag of the max correlation found (Word16)
142 p_max = lag of the max correlation found (Word16)
184 Word32 *rmax, // o : max(<s[i]*s[j]>)
205 Word32 max, t0;
209 max = MIN_32;
214 if (L_sub (corr[-i], max) >= 0)
216 max = corr[-i];
234 *rmax = max;
325 Word32 max; local
[all...]
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Dpvamrwbdecoder.cpp328 int32 max; local
944 max = 1;
955 max |= tmp ^(tmp >> 15); /* |= tmp ^sign(tmp) */
959 /* tmp = scaling possible according to max value of excitation */
960 tmp = add_int16(norm_s(max), Q_new) - 1;
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dpitch_f4.c81 Word16 max, t0, step, temp; local
99 max = corr[t0_min];
103 if (corr[i] >= max)
105 max = corr[i];
132 max = Interpol_4(&corr[t0], fraction);
137 if(temp > max)
139 max = temp;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_DeblockingLuma_unsafe_s.s88 max RN 12 label
197 UQADD8 max, p_1, tC0
206 USUB8 t4, P1a, max
207 SEL P1a, max, P1a
213 UQADD8 max, q_1, tC0
215 USUB8 t0, Q1a, max
216 SEL Q1a, max, Q1a
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_inter_prediction.c924 i32 max,min,med; local
928 max = min = med = a;
929 if (b > max)
931 max = b;
937 if (c > max)
939 med = max;
/frameworks/base/core/java/android/app/
H A DProgressDialog.java138 int max = mProgress.getMax();
141 mProgressNumber.setText(String.format(format, progress, max));
146 double percent = (double) progress / (double) max;
252 public void setMax(int max) { argument
254 mProgress.setMax(max);
257 mMax = max;
/frameworks/base/core/java/android/preference/
H A DSeekBarPreference.java110 public void setMax(int max) { argument
111 if (max != mMax) {
112 mMax = max;
194 myState.max = mMax;
210 mMax = myState.max;
222 int max; field in class:SeekBarPreference.SavedState
229 max = source.readInt();
238 dest.writeInt(max);
/frameworks/base/core/java/android/speech/tts/
H A DBlockingAudioTrack.java215 int bufferSizeInBytes = Math.max(MIN_AUDIO_BUFFER_SIZE, minBufferSizeInBytes);
335 private static final long clip(long value, long min, long max) { argument
336 return value < min ? min : (value < max ? value : max);
339 private static final float clip(float value, float min, float max) { argument
340 return value < min ? min : (value < max ? value : max);
/frameworks/base/core/java/android/util/
H A DMathUtils.java62 public static float max(float a, float b) { method in class:MathUtils
66 public static float max(int a, int b) { method in class:MathUtils
70 public static float max(float a, float b, float c) { method in class:MathUtils
74 public static float max(int a, int b, int c) { method in class:MathUtils
/frameworks/base/core/java/android/widget/
H A DDayPickerPagerAdapter.java77 public void setRange(@NonNull Calendar min, @NonNull Calendar max) { argument
79 mMaxDate.setTimeInMillis(max.getTimeInMillis());
H A DRatingBar.java323 public synchronized void setMax(int max) { argument
324 // Disallow max progress = 0
325 if (max <= 0) {
329 super.setMax(max);
H A DYearPickerView.java103 public void setRange(Calendar min, Calendar max) { argument
104 mAdapter.setRange(min, max);
/frameworks/base/core/jni/
H A Dandroid_app_admin_SecurityLog.cpp61 size_t max = sizeof(buf) - sizeof(len) - 2; // Type byte, final newline local
62 if (len > max) len = max;
80 const size_t max = sizeof(buf) - 1; // leave room for final newline local
87 if (pos + 1 + sizeof(jint) > max) break;
90 if (pos + 1 + sizeof(len) + len > max) len = max - pos - 1 - sizeof(len);
98 if (pos + 1 + sizeof(intVal) > max) break;
104 if (pos + 1 + sizeof(longVal) > max) break;
110 if (pos + 1 + sizeof(floatVal) > max) brea
[all...]
H A Dandroid_util_EventLog.cpp94 size_t max = sizeof(buf) - sizeof(len) - 2; // Type byte, final newline local
95 if (len > max) len = max;
117 const size_t max = sizeof(buf) - 1; // leave room for final newline local
124 if (pos + 1 + sizeof(jint) > max) break;
127 if (pos + 1 + sizeof(len) + len > max) len = max - pos - 1 - sizeof(len);
135 if (pos + 1 + sizeof(intVal) > max) break;
141 if (pos + 1 + sizeof(longVal) > max) break;
147 if (pos + 1 + sizeof(floatVal) > max) brea
[all...]
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
H A DBassBoostTest.java163 public BassBoostParam(BassBoost bassboost, int min, int max, SeekBar seekBar, TextView textView) { argument
164 super (min, max, seekBar, textView, "o/oo");
H A DEnvReverbTest.java274 public EnvReverbParam(EnvironmentalReverb reverb, int min, int max, SeekBar seekBar, TextView textView, String unit) { argument
275 super (min, max, seekBar, textView, unit);
H A DEqualizerTest.java239 public EqualizerParam(Equalizer equalizer, int min, int max, SeekBar seekBar, TextView textView, String unit) { argument
240 super (min, max, seekBar, textView, unit);
264 public BandLevelParam(Equalizer equalizer, int band, short min, short max, SeekBar seekBar, TextView textView) { argument
265 super (equalizer, min, max, seekBar, textView, "mB");
290 public PresetParam(Equalizer equalizer, short min, short max, SeekBar seekBar, TextView textView) { argument
291 super (equalizer, min, max, seekBar, textView, "");
H A DPresetReverbTest.java173 public PresetParam(PresetReverb presetrvb, short min, short max, SeekBar seekBar, TextView textView) { argument
174 super (min, max, seekBar, textView, "");

Completed in 361 milliseconds

1234567