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

1234567891011>>

/freebsd-9.3-release/lib/msun/src/
H A Ds_fabs.c27 u_int32_t high; local
28 GET_HIGH_WORD(high,x);
29 SET_HIGH_WORD(x,high&0x7fffffff);
H A Ds_modf.c39 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
[all...]
/freebsd-9.3-release/contrib/compiler-rt/lib/
H A Dcmpti2.c31 if (x.s.high < y.s.high)
33 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:__anon875::__anon876
38 si_int high;
51 su_int high; member in struct:__anon877::__anon878
53 su_int high;
74 di_int high; member in struct:__anon879::__anon880
76 di_int high;
89 du_int high; member in struct:__anon881::__anon882
91 du_int high;
99 r.s.high = h;
106 r.s.high
129 udwords high; member in struct:__anon885
[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 Dcmpdi2.c29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
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 Ducmpdi2.c29 if (x.s.high < y.s.high)
31 if (x.s.high > y.s.high)
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.c33 result.s.high = input.s.low << (b - bits_in_word);
40 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
/freebsd-9.3-release/contrib/gcc/
H A Ddouble-int.c39 mask.high = (HOST_WIDE_INT) m;
44 mask.high = 0;
76 r.high = cst.high & mask.high;
95 snum = (unsigned HOST_WIDE_INT) cst.high;
100 r.high = cst.high | ~mask.high;
105 r.high
[all...]
/freebsd-9.3-release/contrib/gcclibs/libmudflap/
H A Dmf-heuristics.c99 uintptr_t high; member in struct:proc_self_map_entry
114 (entry[i].high >= ptr_high))
125 void *low, *high; local
133 if (sscanf (buf, "%p-%p %4c", &low, &high, flags) == 3)
136 (uintptr_t) high >= ptr_high)
143 entry[i].high = (uintptr_t) high;
151 i, (void *) low, (void *) high, buf);
153 __mfu_register ((void *) low, (size_t) (high-low),

Completed in 168 milliseconds

1234567891011>>