Searched refs:high (Results 1 - 25 of 112) 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:__anon1230::__anon1231
45 si_int high;
58 su_int high; member in struct:__anon1232::__anon1233
60 su_int high;
78 di_int high; member in struct:__anon1234::__anon1235
80 di_int high;
93 du_int high; member in struct:__anon1236::__anon1237
95 du_int high;
103 r.s.high = h;
110 r.s.high
133 udwords high; member in struct:__anon1240
[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));
/frameworks/rs/driver/
H A DrsdIntrinsicInlines.h86 static inline int4 clamp(int4 amount, int low, int high) { argument
88 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x);
89 r.y = amount.y < low ? low : (amount.y > high ? high : amount.y);
90 r.z = amount.z < low ? low : (amount.z > high ? high : amount.z);
91 r.w = amount.w < low ? low : (amount.w > high ? high : amount.w);
95 static inline float4 clamp(float4 amount, float low, float high) { argument
[all...]
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdIntrinsicInlines.h86 static inline int4 clamp(int4 amount, int low, int high) { argument
88 r.x = amount.x < low ? low : (amount.x > high ? high : amount.x);
89 r.y = amount.y < low ? low : (amount.y > high ? high : amount.y);
90 r.z = amount.z < low ? low : (amount.z > high ? high : amount.z);
91 r.w = amount.w < low ? low : (amount.w > high ? high : amount.w);
95 static inline float4 clamp(float4 amount, float low, float high) { argument
[all...]
/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 468 milliseconds

12345