Searched refs:low (Results 101 - 112 of 112) sorted by relevance

12345

/frameworks/rs/driver/
H A DrsdRuntimeMath.cpp104 static float SC_clamp_f32(float amount, float low, float high) { argument
105 return amount < low ? low : (amount > high ? high : amount);
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdRuntimeMath.cpp107 static float SC_clamp_f32(float amount, float low, float high) { argument
108 return amount < low ? low : (amount > high ? high : amount);
/frameworks/av/media/libmedia/
H A Dautodetect.cpp851 int low = 0; local
854 while (low < high) {
855 int i = (low + high) / 2;
860 low = i + 1;
/frameworks/compile/libbcc/runtime/test/Unit/
H A Dfloattixf_test.c38 at.s.high, at.s.low, x, expected);
H A Dfloatuntixf_test.c38 at.s.high, at.s.low, x, expected);
H A Dudivmodti4_test.c45 at.s.high, at.s.low, bt.s.high, bt.s.low, qt.s.high, qt.s.low,
46 rt.s.high, rt.s.low, expected_qt.s.high, expected_qt.s.low,
47 expected_rt.s.high, expected_rt.s.low);
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkPolicyManagerServiceTest.java978 final long low = expected - fuzzy;
980 if (actual < low || actual > high) {
981 fail("value " + actual + " is outside [" + low + "," + high + "]");
/frameworks/base/core/java/android/view/
H A DMotionEvent.java677 * The value is normalized to a range from -1.0 (high) to 1.0 (low).
2841 private static final float clamp(float value, float low, float high) { argument
2842 if (value < low) {
2843 return low;
/frameworks/base/services/java/com/android/server/
H A DNotificationManagerService.java876 private final static int clamp(int x, int low, int high) { argument
877 return (x < low) ? low : ((x > high) ? high : x);
963 // Notification will be blocked because the score is too low.
/frameworks/rs/scriptc/
H A Drs_cl.rsh800 * Clamp a value to a specified high and low bound.
803 * @param low Lower bound, must be scalar or matching vector.
804 * @param high High bound, must match type of low
806 _RS_RUNTIME float __attribute__((overloadable)) clamp(float amount, float low, float high);
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_cl.rsh800 * Clamp a value to a specified high and low bound.
803 * @param low Lower bound, must be scalar or matching vector.
804 * @param high High bound, must match type of low
806 _RS_RUNTIME float __attribute__((overloadable)) clamp(float amount, float low, float high);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode.cpp2765 Int low; local
2772 low = -range;
2775 if (diff_vector < low)

Completed in 544 milliseconds

12345