/frameworks/rs/driver/runtime/arch/ |
D | generic.c | 484 extern int8_t __attribute__((overloadable)) min(int8_t v1, int8_t v2) { in min() function 488 extern char2 __attribute__((overloadable)) min(char2 v1, char2 v2) { in min() function 495 extern char3 __attribute__((overloadable)) min(char3 v1, char3 v2) { in min() function 503 extern char4 __attribute__((overloadable)) min(char4 v1, char4 v2) { in min() function 512 extern int16_t __attribute__((overloadable)) min(int16_t v1, int16_t v2) { in min() function 516 extern short2 __attribute__((overloadable)) min(short2 v1, short2 v2) { in min() function 523 extern short3 __attribute__((overloadable)) min(short3 v1, short3 v2) { in min() function 531 extern short4 __attribute__((overloadable)) min(short4 v1, short4 v2) { in min() function 540 extern int32_t __attribute__((overloadable)) min(int32_t v1, int32_t v2) { in min() function 544 extern int2 __attribute__((overloadable)) min(int2 v1, int2 v2) { in min() function [all …]
|
/frameworks/native/services/surfaceflinger/ |
D | clz.h | 28 static inline T min(T a, T b) { in min() function 32 static inline T min(T a, T b, T c) { in min() function 36 static inline T min(T a, T b, T c, T d) { in min() function
|
/frameworks/base/graphics/java/android/graphics/ |
D | TableMaskFilter.java | 35 public static TableMaskFilter CreateClipTable(int min, int max) { in CreateClipTable() 44 private static native int nativeNewClip(int min, int max); in nativeNewClip()
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
D | UT_bug_char.java | 40 private byte min(byte v1, byte v2) { in min() method in UT_bug_char 43 private byte[] min(byte[] v1, byte[] v2) { in min() method in UT_bug_char
|
D | UT_math_agree.java | 149 private float min(float v1, float v2) { in min() method in UT_math_agree 152 private float[] min(float[] v1, float[] v2) { in min() method in UT_math_agree 159 private byte min(byte v1, byte v2) { in min() method in UT_math_agree 162 private byte[] min(byte[] v1, byte[] v2) { in min() method in UT_math_agree 169 private short min(short v1, short v2) { in min() method in UT_math_agree 172 private short[] min(short[] v1, short[] v2) { in min() method in UT_math_agree 179 private int min(int v1, int v2) { in min() method in UT_math_agree 182 private int[] min(int[] v1, int[] v2) { in min() method in UT_math_agree 189 private long min(long v1, long v2) { in min() method in UT_math_agree 192 private long[] min(long[] v1, long[] v2) { in min() method in UT_math_agree
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
D | UT_bug_char.java | 40 private byte min(byte v1, byte v2) { in min() method in UT_bug_char 43 private byte[] min(byte[] v1, byte[] v2) { in min() method in UT_bug_char
|
D | UT_math_agree.java | 149 private float min(float v1, float v2) { in min() method in UT_math_agree 152 private float[] min(float[] v1, float[] v2) { in min() method in UT_math_agree 159 private byte min(byte v1, byte v2) { in min() method in UT_math_agree 162 private byte[] min(byte[] v1, byte[] v2) { in min() method in UT_math_agree 169 private short min(short v1, short v2) { in min() method in UT_math_agree 172 private short[] min(short[] v1, short[] v2) { in min() method in UT_math_agree 179 private int min(int v1, int v2) { in min() method in UT_math_agree 182 private int[] min(int[] v1, int[] v2) { in min() method in UT_math_agree 189 private long min(long v1, long v2) { in min() method in UT_math_agree 192 private long[] min(long[] v1, long[] v2) { in min() method in UT_math_agree
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
D | imgprocutil.h | 27 inline int clamp(int min, int val, int max) { in clamp()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | find_min_max.cpp | 142 register int min, max; in FindMaxMin() local
|
D | post_proc.h | 35 #define UPDATE_PV_MAXPV_MIN(p,max,min) if ((p) > max) max=(p); else if ((p) < min) min = (p); argument
|
/frameworks/base/core/java/android/util/ |
D | MathUtils.java | 78 public static float min(float a, float b) { in min() method in MathUtils 82 public static float min(int a, int b) { in min() method in MathUtils 86 public static float min(float a, float b, float c) { in min() method in MathUtils 90 public static float min(int a, int b, int c) { in min() method in MathUtils
|
/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
D | EqualizerTest.java | 239 …public EqualizerParam(Equalizer equalizer, int min, int max, SeekBar seekBar, TextView textView, S… in EqualizerParam() 264 …public BandLevelParam(Equalizer equalizer, int band, short min, short max, SeekBar seekBar, TextVi… in BandLevelParam() 290 …public PresetParam(Equalizer equalizer, short min, short max, SeekBar seekBar, TextView textView) { in PresetParam()
|
D | EffectParameter.java | 35 public EffectParameter (int min, int max, SeekBar seekBar, TextView textView, String unit) { in EffectParameter()
|
/frameworks/ex/variablespeed/jni/ |
D | macros.h | 22 inline float min(float a, float b) { in min() function
|
/frameworks/base/libs/hwui/ |
D | Texture.cpp | 59 void Texture::setFilterMinMag(GLenum min, GLenum mag, bool bindTexture, bool force, in setFilterMinMag()
|
/frameworks/base/core/jni/ |
D | TimeUtils.h | 69 inline void set(int sec, int min, int hour, int mday, int mon, int year, in set()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/common/ |
D | Utils.java | 99 public static int clamp(int x, int min, int max) { in clamp() 106 public static float clamp(float x, float min, float max) { in clamp() 113 public static long clamp(long x, long min, long max) { in clamp()
|
/frameworks/base/core/java/android/hardware/ |
D | ConsumerIrManager.java | 105 public CarrierFrequencyRange(int min, int max) { in CarrierFrequencyRange()
|
/frameworks/rs/cpp/ |
D | Sampler.cpp | 52 sp<Sampler> Sampler::create(sp<RS> rs, RsSamplerValue min, RsSamplerValue mag, RsSamplerValue wrapS… in create()
|
/frameworks/base/core/java/android/speech/tts/ |
D | BlockingAudioTrack.java | 341 private static final long clip(long value, long min, long max) { in clip() 353 private static float clip(float value, float min, float max) { in clip()
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/ |
D | CameraFunctionalTest.java | 136 int min = params.getMinExposureCompensation(); in testFunctionalCameraExposureCompensation() local
|
/frameworks/native/services/sensorservice/ |
D | SensorFusion.cpp | 85 template <typename T> inline T min(T a, T b) { return a<b ? a : b; } in min() function
|
/frameworks/av/media/libeffects/testlibs/ |
D | AudioFormatAdapter.h | 24 #define min(x,y) (((x) < (y)) ? (x) : (y)) macro
|
/frameworks/rs/cpu_ref/ |
D | rsCpuRuntimeMathFuncs.cpp | 90 float __attribute__((overloadable)) rsRand(float min, float max) { in rsRand()
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
D | set_sign.cpp | 252 Word16 val, min; in set_sign() local
|