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

12345

/frameworks/compile/libbcc/runtime/lib/
H A Dashrdi3.c30 /* result.s.high = input.s.high < 0 ? -1 : 0 */
31 result.s.high = input.s.high >> (bits_in_word - 1);
32 result.s.low = input.s.high >> (b - bits_in_word);
38 result.s.high = input.s.high >> b;
39 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
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 Dfixunsdfsi.c34 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
35 if (e < 0 || (fb.u.s.high & 0x80000000))
39 ((fb.u.s.high & 0x000FFFFF) << 11) |
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 Dlshrdi3.c30 result.s.high = 0;
31 result.s.low = input.s.high >> (b - bits_in_word);
37 result.s.high = input.s.high >> b;
38 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 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 Dint_lib.h43 si_int high; member in struct:__anon1283::__anon1284
45 si_int high;
58 su_int high; member in struct:__anon1285::__anon1286
60 su_int high;
78 di_int high; member in struct:__anon1287::__anon1288
80 di_int high;
93 du_int high; member in struct:__anon1289::__anon1290
95 du_int high;
103 r.s.high = h;
110 r.s.high
133 udwords high; member in struct:__anon1293
[all...]
H A Dfixdfdi.c31 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
34 di_int s = (si_int)(fb.u.s.high & 0x80000000) >> 31;
36 r.s.high = (fb.u.s.high & 0x000FFFFF) | 0x00100000;
H A Dfixunsdfdi.c34 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
35 if (e < 0 || (fb.u.s.high & 0x80000000))
38 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))
H A Dashldi3.c31 result.s.high = input.s.low << (b - bits_in_word);
38 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
H A Dashlti3.c33 result.s.high = input.s.low << (b - bits_in_dword);
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
H A Dparitydi2.c26 return __paritysi2(x.s.high ^ x.s.low);
H A Dfixdfti.c33 int e = ((fb.u.s.high & 0x7FF00000) >> 20) - 1023;
36 ti_int s = (si_int)(fb.u.s.high & 0x80000000) >> 31;
/frameworks/compile/libbcc/runtime/lib/ppc/
H A Dfloatunditf.c19 doublebits high = { .d = twop84 }; local
22 high.x |= a >> 32; /* 0x1.0p84 + high 32 bits of a */
25 const double high_addend = high.d - twop84_plus_twop52;

Completed in 78 milliseconds

12345