Searched refs:high (Results 1 - 25 of 36) sorted by relevance

12

/frameworks/rs/driver/runtime/arch/
H A Dclamp.c25 extern T __attribute__((overloadable)) clamp(T amount, T low, T high) { \
26 return amount < low ? low : (amount > high ? high : amount); \
45 extern T##2 __attribute__((overloadable)) clamp(T##2 amount, T##2 low, T##2 high) { \
47 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x); \
48 r.y = amount.y < low.y ? low.y : (amount.y > high.y ? high.y : amount.y); \
52 extern T##3 __attribute__((overloadable)) clamp(T##3 amount, T##3 low, T##3 high) { \
54 r.x = amount.x < low.x ? low.x : (amount.x > high
[all...]
H A Dgeneric.c20 extern short __attribute__((overloadable, always_inline)) rsClamp(short amount, short low, short high);
30 extern T __attribute__((overloadable)) clamp(T amount, T low, T high) { \
31 return amount < low ? low : (amount > high ? high : amount); \
34 extern T##2 __attribute__((overloadable)) clamp(T##2 amount, T##2 low, T##2 high) { \
36 r.x = amount.x < low.x ? low.x : (amount.x > high.x ? high.x : amount.x); \
37 r.y = amount.y < low.y ? low.y : (amount.y > high.y ? high.y : amount.y); \
41 extern T##3 __attribute__((overloadable)) clamp(T##3 amount, T##3 low, T##3 high) { \
[all...]
/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/media/libeffects/testlibs/
H A DAudioPeakingFilter.cpp103 void AudioPeakingFilter::getBandRange(uint32_t & low, uint32_t & high) const {
109 high = mNiquistFreq;
111 high = static_cast<uint32_t>((static_cast<uint64_t>(mNominalFrequency) * Effects_exp2(halfBW + (16 << 15))) >> 16);
112 if (CC_UNLIKELY(high > mNiquistFreq)) {
113 high = mNiquistFreq;
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...]
H A DAudioEqualizer.h29 // The EQ is composed of a low-shelf, zero or more peaking filters and a high
145 // For the low shelf, the low bound is 0 and the high bound is the band
147 // For the high shelf, the low bound is the band frequency and the high
150 void getBandRange(int band, uint32_t & low, uint32_t & high) const;
223 // The high-shelving filter.
H A DAudioPeakingFilter.h37 // All is left for this class to do is mapping between high-level parameters to
89 void getBandRange(uint32_t & low, uint32_t & high) const;
144 // A coefficient interpolator, used for mapping the high level parameters to
/frameworks/volley/tests/src/com/android/volley/
H A DRequestTest.java38 TestRequest high = new TestRequest(Priority.HIGH);
39 high.setSequence(sequence++);
44 assertTrue(low.compareTo(high) > 0);
45 assertTrue(high.compareTo(low) < 0);
48 assertTrue(immediate.compareTo(high) < 0);
/frameworks/base/core/java/android/util/
H A DMathUtils.java38 public static int constrain(int amount, int low, int high) { argument
39 return amount < low ? low : (amount > high ? high : amount);
42 public static long constrain(long amount, long low, long high) { argument
43 return amount < low ? low : (amount > high ? high : amount);
46 public static float constrain(float amount, float low, float high) { argument
47 return amount < low ? low : (amount > high ? high : amount);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DStaggeredGridDefault.java39 // find endmost row edge (.high is biggest, or .low is smallest in reversed flow)
45 (edgeRowIndex != -1 ? mRows[edgeRowIndex].high : Integer.MIN_VALUE);
60 mRows[edgeRowIndex].high;
64 mRows[rowIndex].high < edge) {
74 mRows[getMinHighRowIndex()].high >= toLimit) {
102 // find startmost row edge (.low is smallest, or .high is biggest in reversed flow)
107 (edgeRowIndex != -1 ? mRows[edgeRowIndex].high : Integer.MIN_VALUE) :
117 mRows[edgeRowIndex].high :
121 mRows[rowIndex].high < edge :
131 mRows[getMinHighRowIndex()].high >
[all...]
H A DStaggeredGrid.java92 public int high; field in class:StaggeredGrid.Row
224 if (mRows[i].high > mRows[maxHighRowIndex].high) {
234 if (mRows[i].high < mRows[minHighRowIndex].high) {
252 * Append items until the high edge reaches upTo.
H A DGridLayoutManager.java186 * low/high: coordinate quantities - do not reverse
745 mRows[i].high = 0;
752 mRows[i].high = Integer.MIN_VALUE;
772 mRows[row].low = mRows[row].high = low;
784 mRows[i].high = firstItemRowPosition;
790 mRows[i].low = mRows[i].high = firstItemRowPosition;
1164 final boolean rowIsEmpty = mRows[rowIndex].high == mRows[rowIndex].low;
1171 start = mRows[rowIndex].high + mMarginPrimary;
1178 mRows[rowIndex].low = mRows[rowOfLowPos].high + mMarginPrimary;
1184 mRows[rowIndex].high
[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:__anon1379
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java307 int high = start + len, low = start - 1, guess;
309 while (high - low > 1) {
310 guess = (high + low) / 2;
315 high = guess;
318 if (high == start + len)
320 else if (a[high] == key)
321 return high;
323 return ~high;
/frameworks/base/core/java/android/animation/
H A DPathKeyframes.java78 int high = numPoints - 1;
80 while (low <= high) {
81 int mid = (low + high) / 2;
85 high = mid - 1;
93 // now high is below the fraction and low is above the fraction
94 return interpolateInRange(fraction, high, low);
/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);
114 int high = a.getInt(
121 if (high < 0) {
141 mLevelListState.addLevel(low, high, dr);
191 public void addLevel(int low, int high, Drawable drawable) { argument
194 mHighs[pos] = high;
/frameworks/rs/scriptc/
H A Drs_math.rsh61 * Clamp the value amount between low and high.
65 * @param high
67 _RS_RUNTIME uint __attribute__((const, overloadable, always_inline)) rsClamp(uint amount, uint low, uint high);
72 _RS_RUNTIME int __attribute__((const, overloadable, always_inline)) rsClamp(int amount, int low, int high);
76 _RS_RUNTIME ushort __attribute__((const, overloadable, always_inline)) rsClamp(ushort amount, ushort low, ushort high);
80 _RS_RUNTIME short __attribute__((const, overloadable, always_inline)) rsClamp(short amount, short low, short high);
84 _RS_RUNTIME uchar __attribute__((const, overloadable, always_inline)) rsClamp(uchar amount, uchar low, uchar high);
88 _RS_RUNTIME char __attribute__((const, overloadable, always_inline)) rsClamp(char amount, char low, char high);
/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/libs/hwui/
H A DSpotShadow.h52 static void quicksortCirc(Vector2* points, int low, int high, const Vector2& center);
53 static void quicksortX(Vector2* points, int low, int high);
H A DSpotShadow.cpp248 void SpotShadow::quicksortCirc(Vector2* points, int low, int high, argument
250 int i = low, j = high;
251 int p = low + (high - low) / 2;
268 if (i < high) quicksortCirc(points, i, high, center);
276 * @param high end index
278 void SpotShadow::quicksortX(Vector2* points, int low, int high) { argument
279 int i = low, j = high;
280 int p = low + (high - low) / 2;
297 if (i < high) quicksort
[all...]
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSRTSource.cpp232 size_t high = mTextVector.size() - 1; local
235 while (low <= high) {
236 mid = low + (high - low)/2;
243 high = mid - 1;
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessList.java176 // These are the high-end OOM level limits. This is appropriate for a
242 int high = mOomMinFreeHigh[i];
244 // Increase the high min-free levels for cached processes for 64-bit
245 if (i == 4) high = (high*3)/2;
246 else if (i == 5) high = (high*7)/4;
248 mOomMinFree[i] = (int)(low + ((high-low)*scale));
/frameworks/base/core/java/android/view/
H A DGhostView.java244 int high = overlayViewGroup.getChildCount() - 1;
246 while (low <= high) {
247 int mid = (low + high) / 2;
254 high = mid - 1;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiScanner.java321 /** high signal threshold; more information at {@link ScanResult#level} */
322 public int high; /* maximum RSSI */ field in class:WifiScanner.BssidInfo
355 dest.writeInt(info.high);
379 info.high = in.readInt();
494 dest.writeInt(info.high);
514 info.high = in.readInt();
/frameworks/base/core/java/android/text/
H A DLayout.java1011 int high = getLineCount(), low = -1, guess;
1013 while (high - low > 1) {
1014 guess = (high + low) / 2;
1017 high = guess;
1034 int high = getLineCount(), low = -1, guess;
1036 while (high - low > 1) {
1037 guess = (high + low) / 2;
1040 high = guess;
1073 int high = there - 1 + 1, low = here + 1 - 1, guess;
1075 while (high
[all...]

Completed in 9554 milliseconds

12