Searched defs:high (Results 1 - 24 of 24) sorted by relevance

/frameworks/base/tools/incident_report/
H A Dformatter.cpp73 size_t high = PROTO_FORMAT_FIELDS_LENGTH - 1; local
75 while (low <= high) {
76 size_t mid = (low + high) >> 1;
83 high = mid - 1;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p2/src/
H A DomxVCM4P2_DecodePadMV_PVOP.c111 OMX_S16 high, low, range; local
149 high = ( 32 * scaleFactor) - 1;
230 if (pDstMVCurMB[iBlk].dx > high)
239 if (pDstMVCurMB[iBlk].dy > high)
/frameworks/base/cmds/incident/
H A Dmain.cpp101 size_t high = INCIDENT_SECTION_COUNT - 1; local
103 while (low <= high) {
104 size_t mid = (low + high) >> 1;
111 high = mid - 1;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DLevelListDrawable.java68 public void addLevel(int low, int high, Drawable drawable) { argument
70 mLevelListState.addLevel(low, high, drawable);
120 int high = a.getInt(
127 if (high < 0) {
147 mLevelListState.addLevel(low, high, dr);
197 public void addLevel(int low, int high, Drawable drawable) { argument
200 mHighs[pos] = high;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DAssertHelpers.java116 * Assert that {@code low <= value <= high}
118 public static void assertInRange(float value, float low, float high) { argument
124 value, high),
125 value <= high);
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicInlines.h85 static inline int4 clamp(int4 amount, int low, int high) { argument
87 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x);
88 r.y = amount.y < low ? low : (amount.y > high ? high : amount.y);
89 r.z = amount.z < low ? low : (amount.z > high ? high : amount.z);
90 r.w = amount.w < low ? low : (amount.w > high ? high : amount.w);
94 static inline float4 clamp(float4 amount, float low, float high) { argument
103 clamp(int2 amount, int low, int high) argument
110 clamp(float2 amount, float low, float high) argument
117 clamp(int amount, int low, int high) argument
121 clamp(float amount, float low, float high) argument
[all...]
/frameworks/av/include/media/
H A DInterpolator.h70 auto high = this->lower_bound(x); local
72 if (high == this->end()) {
76 if (high == this->begin()) {
77 return high->second;
80 auto low = high;
86 return high->first == x ? high->second : low->second;
88 return ((high->first - x) * low->second + (x - low->first) * high->second)
89 / (high
[all...]
/frameworks/av/media/libeffects/testlibs/
H A DAudioEqualizer.cpp173 uint32_t & high) const {
177 high = mpLowShelf->getFrequency();
180 high = mSampleRate * 500;
182 mpPeakingFilters[band - 1].getBandRange(low, high);
260 uint32_t high = mpHighShelf->getFrequency(); local
261 if (targetFreq >= high) {
268 high = freq;
274 // Now, low is right below the target and high is right above. See which one
277 high = Effects_log2(high);
[all...]
/frameworks/base/core/java/android/util/
H A DMathUtils.java37 public static int constrain(int amount, int low, int high) { argument
38 return amount < low ? low : (amount > high ? high : amount);
41 public static long constrain(long amount, long low, long high) { argument
42 return amount < low ? low : (amount > high ? high : amount);
45 public static float constrain(float amount, float low, float high) { argument
46 return amount < low ? low : (amount > high ? high : amount);
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DNotificationCompatImplBase.java458 public static float constrain(float amount, float low, float high) { argument
459 return amount < low ? low : (amount > high ? high : amount);
/frameworks/base/core/java/com/android/internal/graphics/
H A DColorUtils.java517 private static float constrain(float amount, float low, float high) { argument
518 return amount < low ? low : (amount > high ? high : amount);
521 private static int constrain(int amount, int low, int high) { argument
522 return amount < low ? low : (amount > high ? high : amount);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/shadowutil/
H A DSpotShadow.java296 private static void quicksortCircle(@NonNull float[] points, int low, int high, argument
298 int i = low, j = high;
299 int p = low + (high - low) / 2;
317 if (i < high) {
318 quicksortCircle(points, i, high, ctr);
328 * @param high highest index used to do quick sort
330 private static void quicksortX(@NonNull float[] points, int low, int high) { argument
331 int i = low, j = high;
332 int p = low + (high - low) / 2;
351 if (i < high) {
[all...]
/frameworks/support/core-utils/java/android/support/v4/graphics/
H A DColorUtils.java516 private static float constrain(float amount, float low, float high) { argument
517 return amount < low ? low : (amount > high ? high : amount);
520 private static int constrain(int amount, int low, int high) { argument
521 return amount < low ? low : (amount > high ? high : amount);
/frameworks/base/core/java/com/android/internal/util/
H A DNotificationColorUtil.java270 double low = 0, high = lab[0];
272 for (int i = 0; i < 15 && high - low > 0.00001; i++) {
273 final double l = (low + high) / 2;
282 high = l;
307 int low = startAlpha, high = 255;
308 for (int i = 0; i < 15 && high - low > 0; i++) {
309 final int alpha = (low + high) / 2;
312 high = alpha;
317 return Color.argb(high, r, g, b);
341 float low = hsl[2], high
835 constrain(int amount, int low, int high) argument
839 constrain(float amount, float low, float high) argument
[all...]
/frameworks/native/opengl/libs/ETC1/
H A Detc1.cpp201 etc1_uint32 high = (pIn[0] << 24) | (pIn[1] << 16) | (pIn[2] << 8) | pIn[3]; local
204 if (high & 2) {
206 int rBase = high >> 27;
207 int gBase = high >> 19;
208 int bBase = high >> 11;
210 r2 = convertDiff(rBase, high >> 24);
212 g2 = convertDiff(gBase, high >> 16);
214 b2 = convertDiff(bBase, high >> 8);
217 r1 = convert4To8(high >> 28);
218 r2 = convert4To8(high >> 2
234 etc1_uint32 high; member in struct:__anon1823
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSwitchCompat.java1417 private static float constrain(float amount, float low, float high) { argument
1418 return amount < low ? low : (amount > high ? high : amount);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dvlc_encode.cpp2766 Int high; local
2773 high = range - 1;
2777 else if (diff_vector > high)
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DParameters.h120 int32_t high; member in struct:android::camera2::Parameters::FpsRange
303 // Calculate the field of view of the high-resolution JPEG capture
/frameworks/base/libs/hwui/
H A DSpotShadow.cpp254 void SpotShadow::quicksortCirc(Vector2* points, int low, int high, argument
256 int i = low, j = high;
257 int p = low + (high - low) / 2;
274 if (i < high) quicksortCirc(points, i, high, center);
881 // The total pair number can be as high as umbraLength + penumbraLength.
930 // Since the umbra can be a faked one when the occluder is too high, the umbra should be lighter
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiScanner.java923 /** high signal threshold; more information at {@link ScanResult#level} */
924 public int high; /* maximum RSSI */ field in class:WifiScanner.BssidInfo
/frameworks/base/core/java/android/view/
H A DMotionEvent.java764 * The value is normalized to a range from -1.0 (high) to 1.0 (low).
3097 private static final float clamp(float value, float low, float high) { argument
3100 } else if (value > high) {
3101 return high;
/frameworks/base/services/core/java/com/android/server/notification/
H A DNotificationManagerService.java4192 static int clamp(int x, int low, int high) { argument
4193 return (x < low) ? low : ((x > high) ? high : x);
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 599 milliseconds