HomeSort by relevance Sort by last modified time
    Searched refs:high (Results 1 - 25 of 661) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fabs.c 27 u_int32_t high; local
28 GET_HIGH_WORD(high,x);
29 SET_HIGH_WORD(x,high&0x7fffffff);
s_modf.c 39 if(j0<20) { /* integer part in high x */
46 u_int32_t high; local
48 GET_HIGH_WORD(high,x);
49 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
57 u_int32_t high; local
63 GET_HIGH_WORD(high,x);
64 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */
69 u_int32_t high; local
71 GET_HIGH_WORD(high,x);
72 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 *
    [all...]
  /external/skia/src/gpu/
GrTBSearch.h 22 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/
ecc_sizes.c 26 void ecc_sizes(int *low, int *high)
30 LTC_ARGCHKVD(high != NULL);
33 *high = 0;
38 if (ltc_ecc_sets[i].size > *high) {
39 *high = ltc_ecc_sets[i].size;
  /external/valgrind/main/none/tests/s390x/
cdsg.c 5 uint64_t high; member in struct:__anon17376
28 printf("before op1 = (%#lx, %#lx)\n", _op1.high, _op1.low);
29 printf("before op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
30 printf("before op3 = (%#lx, %#lx)\n", _op3.high, _op3.low);
44 printf("after op1 = (%#lx, %#lx)\n", _op1.high, _op1.low);
45 printf("after op2 = (%#lx, %#lx)\n", _op2.high, _op2.low);
46 printf("after op3 = (%#lx, %#lx)\n", _op3.high, _op3.low);
54 if (_op3.low != op3_before.low || _op3.high != op3_before.high) {
62 if (_op1.low != op1_before.low || _op1.high != op1_before.high)
    [all...]
cds.c 5 uint64_t high; member in struct:__anon17375
23 printf("before op1 = (%#lx, %#lx)\n", op1.high, op1.low);
25 printf("before op3 = (%#lx, %#lx)\n", op3.high, op3.low);
39 printf("after op1 = (%#lx, %#lx)\n", op1.high, op1.low);
41 printf("after op3 = (%#lx, %#lx)\n", op3.high, op3.low);
50 if (op3.low != op3_before.low || op3.high != op3_before.high) {
58 if (op1.low != op1_before.low || op1.high != op1_before.high) {
66 // higher 32 bits of op2 are the lower 32 bits of op3.high
    [all...]
  /external/compiler-rt/lib/
cmpti2.c 31 if (x.s.high < y.s.high)
33 if (x.s.high > y.s.high)
ucmpti2.c 31 if (x.s.high < y.s.high)
33 if (x.s.high > y.s.high)
fixunsxfsi.c 38 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);
int_types.h 36 si_int high; member in struct:__anon7097::__anon7098
38 si_int high;
51 su_int high; member in struct:__anon7099::__anon7100
53 su_int high;
71 di_int high; member in struct:__anon7101::__anon7102
73 di_int high;
86 du_int high; member in struct:__anon7103::__anon7104
88 du_int high;
96 r.s.high = h;
103 r.s.high = h
126 udwords high; member in struct:__anon7107
    [all...]
lshrdi3.c 32 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);
lshrti3.c 32 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);
udivmoddi4.c 36 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...]
udivmodti4.c 38 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...]
ashrdi3.c 32 /* 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);
ashrti3.c 32 /* 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);
fixunsdfsi.c 36 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) |
cmpdi2.c 29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
fixdfdi.c 33 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;
fixunsdfdi.c 36 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;
ucmpdi2.c 29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
clzdi2.c 26 const si_int f = -(x.s.high == 0);
27 return __builtin_clz((x.s.high & ~f) | (x.s.low & f)) +
  /external/clang/test/CodeGen/
2002-09-18-UnionProblem.c 5 char high, low; member in struct:DWstruct
18 rr.s.high = n1;
22 rr.s.high = bm;
  /external/webkit/Source/WebCore/platform/graphics/gpu/
PODInterval.h 84 PODInterval(const T& low, const T& high)
86 , m_high(high)
88 , m_maxHigh(high)
93 PODInterval(const T& low, const T& high, const UserData data)
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 < this->low()
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
CameraProfileTest.java 31 private void checkQuality(int low, int mid, int high) {
32 Log.v(TAG, "low = " + low + ", mid = " + mid + ", high = " + high);
35 assertTrue(high >= 0 && high <= 100);
36 assertTrue(low <= mid && mid <= high);
42 int high = CameraProfile.getJpegEncodingQualityParameter(CameraProfile.QUALITY_HIGH); local
43 checkQuality(low, mid, high);
51 int high = CameraProfile.getJpegEncodingQualityParameter(id, CameraProfile.QUALITY_HIGH); local
52 checkQuality(low, mid, high);
    [all...]

Completed in 194 milliseconds

1 2 3 4 5 6 7 8 91011>>