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

1234567891011>>

/external/skia/src/gpu/
H A DGrTBSearch.h22 int high = count - 1; local
24 while (high > low) {
25 int index = (low + high) >> 1;
29 high = index;
34 if (EQ(array[high], target)) {
35 return high;
39 if (LT(array[high], target)) {
40 high += 1;
42 return ~high;
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Decc_sizes.c26 void ecc_sizes(int *low, int *high) argument
30 LTC_ARGCHKVD(high != NULL);
33 *high = 0;
38 if (ltc_ecc_sets[i].size > *high) {
39 *high = ltc_ecc_sets[i].size;
/external/stlport/src/
H A Dcollate.cpp32 string collate<char>::do_transform(const char* low, const char* high) const
33 { return string(low, high); }
35 long collate<char>::do_hash(const char* low, const char* high) const {
37 for ( ; low < high; ++low)
52 wstring collate<wchar_t>::do_transform(const wchar_t* low, const wchar_t* high) const
53 { return wstring(low, high); }
55 long collate<wchar_t>::do_hash(const wchar_t* low, const wchar_t* high) const {
57 for ( ; low < high; ++low)
/external/compiler-rt/lib/
H A Dcmpdi2.c29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
H A Dcmpti2.c31 if (x.s.high < y.s.high)
33 if (x.s.high > y.s.high)
H A Ducmpdi2.c29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
H A Ducmpti2.c31 if (x.s.high < y.s.high)
33 if (x.s.high > y.s.high)
H A Dfixunsxfsi.c38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
41 return fb.u.low.s.high >> (31 - e);
H A Dint_types.h36 si_int high; member in struct:__anon4897::__anon4898
38 si_int high;
51 su_int high; member in struct:__anon4899::__anon4900
53 su_int high;
71 di_int high; member in struct:__anon4901::__anon4902
73 di_int high;
86 du_int high; member in struct:__anon4903::__anon4904
88 du_int high;
96 r.s.high = h;
103 r.s.high
126 udwords high; member in struct:__anon4907
[all...]
H A Dlshrdi3.c32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_word);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dlshrti3.c32 result.s.high = 0;
33 result.s.low = input.s.high >> (b - bits_in_dword);
39 result.s.high = input.s.high >> b;
40 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dudivmoddi4.c36 if (n.s.high == 0)
38 if (d.s.high == 0)
56 /* n.s.high != 0 */
59 if (d.s.high == 0)
66 *rem = n.s.high % d.s.low;
67 return n.s.high / d.s.low;
69 /* d.s.high != 0 */
78 r.s.high = n.s.high % d.s.high;
[all...]
H A Dudivmodti4.c38 if (n.s.high == 0)
40 if (d.s.high == 0)
58 /* n.s.high != 0 */
61 if (d.s.high == 0)
68 *rem = n.s.high % d.s.low;
69 return n.s.high / d.s.low;
71 /* d.s.high != 0 */
80 r.s.high = n.s.high % d.s.high;
[all...]
H A Dashrdi3.c32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_word - 1);
34 result.s.low = input.s.high >> (b - bits_in_word);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashrti3.c32 /* result.s.high = input.s.high < 0 ? -1 : 0 */
33 result.s.high = input.s.high >> (bits_in_dword - 1);
34 result.s.low = input.s.high >> (b - bits_in_dword);
40 result.s.high = input.s.high >> b;
41 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dfixunsdfsi.c36 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
37 if (e < 0 || (fb.u.s.high & 0x80000000))
41 ((fb.u.s.high & 0x000FFFFF) << 11) |
H A Dfixdfdi.c33 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
36 di_int s = (si_int)(fb.u.s.high & 0x80000000) >> 31;
38 r.s.high = (fb.u.s.high & 0x000FFFFF) | 0x00100000;
H A Dfixunsdfdi.c36 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
37 if (e < 0 || (fb.u.s.high & 0x80000000))
40 r.s.high = (fb.u.s.high & 0x000FFFFF) | 0x00100000;
H A Dclzdi2.c26 const si_int f = -(x.s.high == 0);
27 return __builtin_clz((x.s.high & ~f) | (x.s.low & f)) +
H A Dclzti2.c28 const di_int f = -(x.s.high == 0);
29 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
H A Dffsdi2.c28 if (x.s.high == 0)
30 return __builtin_ctz(x.s.high) + (1 + sizeof(si_int) * CHAR_BIT);
H A Dffsti2.c30 if (x.s.high == 0)
32 return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
H A Dfixunsxfdi.c38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
/external/clang/test/CodeGen/
H A D2002-09-18-UnionProblem.c5 char high, low; member in struct:DWstruct
18 rr.s.high = n1;
22 rr.s.high = bm;
/external/webkit/Source/WebCore/platform/graphics/gpu/
H A DPODInterval.h84 PODInterval(const T& low, const T& high) argument
86 , m_high(high)
88 , m_maxHigh(high)
93 PODInterval(const T& low, const T& high, const UserData data) argument
95 , m_high(high)
97 , m_maxHigh(high)
102 const T& high() const { return m_high; } function in class:WebCore::PODInterval
105 bool overlaps(const T& low, const T& high) const
107 if (this->high() < low)
109 if (high < thi
[all...]

Completed in 181 milliseconds

1234567891011>>