Searched defs:min (Results 26 - 50 of 97) sorted by relevance

1234

/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.c431 extern int8_t __attribute__((overloadable)) min(int8_t v1, int8_t v2) { function
435 extern char2 __attribute__((overloadable)) min(char2 v1, char2 v2) { function
442 extern char3 __attribute__((overloadable)) min(char3 v1, char3 v2) { function
450 extern char4 __attribute__((overloadable)) min(char4 v1, char4 v2) { function
459 extern int16_t __attribute__((overloadable)) min(int16_t v1, int16_t v2) { function
463 extern short2 __attribute__((overloadable)) min(short2 v1, short2 v2) { function
470 extern short3 __attribute__((overloadable)) min(short3 v1, short3 v2) { function
478 extern short4 __attribute__((overloadable)) min(short4 v1, short4 v2) { function
487 extern int32_t __attribute__((overloadable)) min(int32_t v1, int32_t v2) { function
491 extern int2 __attribute__((overloadable)) min(int function
498 extern int3 __attribute__((overloadable)) min(int3 v1, int3 v2) { function
506 extern int4 __attribute__((overloadable)) min(int4 v1, int4 v2) { function
515 extern uchar __attribute__((overloadable)) min(uchar v1, uchar v2) { function
519 extern uchar2 __attribute__((overloadable)) min(uchar2 v1, uchar2 v2) { function
526 extern uchar3 __attribute__((overloadable)) min(uchar3 v1, uchar3 v2) { function
534 extern uchar4 __attribute__((overloadable)) min(uchar4 v1, uchar4 v2) { function
543 extern ushort __attribute__((overloadable)) min(ushort v1, ushort v2) { function
547 extern ushort2 __attribute__((overloadable)) min(ushort2 v1, ushort2 v2) { function
554 extern ushort3 __attribute__((overloadable)) min(ushort3 v1, ushort3 v2) { function
562 extern ushort4 __attribute__((overloadable)) min(ushort4 v1, ushort4 v2) { function
571 extern uint __attribute__((overloadable)) min(uint v1, uint v2) { function
575 extern uint2 __attribute__((overloadable)) min(uint2 v1, uint2 v2) { function
582 extern uint3 __attribute__((overloadable)) min(uint3 v1, uint3 v2) { function
590 extern uint4 __attribute__((overloadable)) min(uint4 v1, uint4 v2) { function
599 extern float __attribute__((overloadable)) min(float v1, float v2) { function
603 extern float2 __attribute__((overloadable)) min(float2 v1, float2 v2) { function
607 extern float2 __attribute__((overloadable)) min(float2 v1, float v2) { function
611 extern float3 __attribute__((overloadable)) min(float3 v1, float3 v2) { function
615 extern float3 __attribute__((overloadable)) min(float3 v1, float v2) { function
619 extern float4 __attribute__((overloadable)) min(float4 v1, float4 v2) { function
623 extern float4 __attribute__((overloadable)) min(float4 v1, float v2) { function
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_DeblockingLuma_unsafe_s.s89 min RN 2 label
205 UQSUB8 min, p_1, tC0
208 USUB8 t4, P1a, min
209 SEL P1a, P1a, min
214 UQSUB8 min, q_1, tC0
217 USUB8 t0, Q1a, min
218 SEL Q1a, Q1a, min
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_inter_prediction.c924 i32 max,min,med; local
928 max = min = med = a;
933 else if (b < min)
935 min = b;
941 else if (c < min)
943 med = min;
/frameworks/av/services/audioflinger/
H A DBufferProviders.cpp40 static inline T min(const T& a, const T& b) function in namespace:android
102 size_t count = min(mLocalBufferFrameCount, mBuffer.frameCount - mConsumed);
103 count = min(count, pBuffer->frameCount);
411 dstAvailable = min(mLocalBufferFrameCount - mRemaining, outputDesired);
499 size_t remaining = min(*srcFrames, *dstFrames - count);
/frameworks/base/core/java/android/speech/tts/
H A DBlockingAudioTrack.java335 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.java78 public static float min(float a, float b) { method in class:MathUtils
82 public static float min(int a, int b) { method in class:MathUtils
86 public static float min(float a, float b, float c) { method in class:MathUtils
90 public static float min(int a, int b, int c) { method in class:MathUtils
/frameworks/base/core/java/android/widget/
H A DDayPickerPagerAdapter.java78 public void setRange(@NonNull Calendar min, @NonNull Calendar max) { argument
79 mMinDate.setTimeInMillis(min.getTimeInMillis());
H A DYearPickerView.java110 public void setRange(Calendar min, Calendar max) { argument
111 mAdapter.setRange(min, max);
/frameworks/base/libs/hwui/
H A DGradientCache.cpp34 static inline T min(T a, T b) { function in namespace:android::uirenderer
159 info.width = min(width, uint32_t(mMaxTextureSize));
/frameworks/base/libs/hwui/utils/
H A DLinearAllocator.cpp82 #define min(x,y) (((x) < (y)) ? (x) : (y)) macro
158 mPageSize = min(MAX_PAGE_SIZE, mPageSize * 2);
/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, "");
H A DVirtualizerTest.java160 public VirtualizerParam(Virtualizer virtualizer, int min, int max, SeekBar seekBar, TextView textView) { argument
161 super (min, max, seekBar, textView, "o/oo");
/frameworks/compile/mclinker/lib/Target/AArch64/
H A DAArch64RelocationHelpers.h26 int64_t min = -(1 << (bits - 1)); local
27 if (signed_val > max || signed_val < min)
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCamera2Settings.java322 private int toIntConstrained(double original, int min, int max) { argument
323 original = Math.max(original, min);
324 original = Math.min(original, max);
/frameworks/native/include/input/
H A DInputDevice.h68 float min; member in struct:android::InputDeviceInfo::MotionRange
95 float min, float max, float flat, float fuzz, float resolution);
/frameworks/native/services/inputflinger/host/
H A DInputDriver.cpp101 input_usage_t usage, int32_t min, int32_t max, float resolution) { }
99 input_report_definition_declare_usage_int(input_host_t* host, input_report_definition_t* report, input_collection_id_t id, input_usage_t usage, int32_t min, int32_t max, float resolution) argument
/frameworks/rs/cpu_ref/
H A DrsCpuRuntimeMath.cpp103 float SC_randf2(float min, float max) { argument
106 r = r * (max - min) + min;
/frameworks/rs/driver/runtime/
H A Drs_core.c103 extern uint32_t __attribute__((overloadable)) min(uint32_t, uint32_t);
104 extern int32_t __attribute__((overloadable)) min(int32_t, int32_t);
112 uint32_t n = min(value, prev);
122 int32_t n = min(value, prev);
155 extern float __attribute__((overloadable)) rsRand(float min, float max);/* {
158 r = r * (max - min) + min;
175 extern int __attribute__((overloadable)) rsRand(int min, int max) { argument
176 return (int)rsRand((float)min, (float)max);
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
H A DUT_math_agree.java148 // min reference functions
149 private float min(float v1, float v2) { method in class:UT_math_agree
152 private float[] min(float[] v1, float[] v2) { method in class:UT_math_agree
156 rv[i] = min(v1[i], v2[i]);
159 private byte min(byte v1, byte v2) { method in class:UT_math_agree
162 private byte[] min(byte[] v1, byte[] v2) { method in class:UT_math_agree
166 rv[i] = min(v1[i], v2[i]);
169 private short min(short v1, short v2) { method in class:UT_math_agree
172 private short[] min(short[] v1, short[] v2) { method in class:UT_math_agree
176 rv[i] = min(v
179 private int min(int v1, int v2) { method in class:UT_math_agree
182 private int[] min(int[] v1, int[] v2) { method in class:UT_math_agree
189 private long min(long v1, long v2) { method in class:UT_math_agree
192 private long[] min(long[] v1, long[] v2) { method in class:UT_math_agree
[all...]
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
H A DUT_math_agree.java148 // min reference functions
149 private float min(float v1, float v2) { method in class:UT_math_agree
152 private float[] min(float[] v1, float[] v2) { method in class:UT_math_agree
156 rv[i] = min(v1[i], v2[i]);
159 private byte min(byte v1, byte v2) { method in class:UT_math_agree
162 private byte[] min(byte[] v1, byte[] v2) { method in class:UT_math_agree
166 rv[i] = min(v1[i], v2[i]);
169 private short min(short v1, short v2) { method in class:UT_math_agree
172 private short[] min(short[] v1, short[] v2) { method in class:UT_math_agree
176 rv[i] = min(v
179 private int min(int v1, int v2) { method in class:UT_math_agree
182 private int[] min(int[] v1, int[] v2) { method in class:UT_math_agree
189 private long min(long v1, long v2) { method in class:UT_math_agree
192 private long[] min(long[] v1, long[] v2) { method in class:UT_math_agree
[all...]
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
H A DUT_math_agree.java148 // min reference functions
149 private float min(float v1, float v2) { method in class:UT_math_agree
152 private float[] min(float[] v1, float[] v2) { method in class:UT_math_agree
156 rv[i] = min(v1[i], v2[i]);
159 private byte min(byte v1, byte v2) { method in class:UT_math_agree
162 private byte[] min(byte[] v1, byte[] v2) { method in class:UT_math_agree
166 rv[i] = min(v1[i], v2[i]);
169 private short min(short v1, short v2) { method in class:UT_math_agree
172 private short[] min(short[] v1, short[] v2) { method in class:UT_math_agree
176 rv[i] = min(v
179 private int min(int v1, int v2) { method in class:UT_math_agree
182 private int[] min(int[] v1, int[] v2) { method in class:UT_math_agree
189 private long min(long v1, long v2) { method in class:UT_math_agree
192 private long[] min(long[] v1, long[] v2) { method in class:UT_math_agree
[all...]

Completed in 627 milliseconds

1234