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

1234567891011>>

/freebsd-11-stable/lib/msun/src/
H A Ds_fabs.c26 u_int32_t high; local
27 GET_HIGH_WORD(high,x);
28 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-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dudivmodti4.c33 if (n.s.high == 0) {
34 if (d.s.high == 0) {
49 // n.s.high != 0
51 if (d.s.high == 0) {
56 *rem = n.s.high % d.s.low;
57 return n.s.high / d.s.low;
59 // d.s.high != 0
65 r.s.high = n.s.high % d.s.high;
[all...]
H A Dudivmoddi4.c38 if (n.s.high == 0) {
39 if (d.s.high == 0) {
54 // n.s.high != 0
56 if (d.s.high == 0) {
61 *rem = n.s.high % d.s.low;
62 return n.s.high / d.s.low;
64 // d.s.high != 0
70 r.s.high = n.s.high % d.s.high;
[all...]
H A Dlshrti3.c27 result.s.high = 0;
28 result.s.low = input.s.high >> (b - bits_in_dword);
32 result.s.high = input.s.high >> b;
33 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dashrdi3.c25 // result.s.high = input.s.high < 0 ? -1 : 0
26 result.s.high = input.s.high >> (bits_in_word - 1);
27 result.s.low = input.s.high >> (b - bits_in_word);
31 result.s.high = input.s.high >> b;
32 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashrti3.c27 // result.s.high = input.s.high < 0 ? -1 : 0
28 result.s.high = input.s.high >> (bits_in_dword - 1);
29 result.s.low = input.s.high >> (b - bits_in_dword);
33 result.s.high = input.s.high >> b;
34 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
H A Dfixunsdfdi.c19 su_int high = a / 4294967296.f; // a / 0x1p32f;
20 su_int low = a - (double)high * 4294967296.f; // high * 0x1p32f;
21 return ((du_int)high << 32) | low;
H A Dcmpdi2.c24 if (x.s.high < y.s.high)
26 if (x.s.high > y.s.high)
H A Dcmpti2.c26 if (x.s.high < y.s.high)
28 if (x.s.high > y.s.high)
H A Ducmpdi2.c24 if (x.s.high < y.s.high)
26 if (x.s.high > y.s.high)
H A Ducmpti2.c26 if (x.s.high < y.s.high)
28 if (x.s.high > y.s.high)
H A Dclzti2.c24 const di_int f = -(x.s.high == 0);
25 return __builtin_clzll((x.s.high & ~f) | (x.s.low & f)) +
H A Dffsdi2.c22 if (x.s.high == 0)
24 return __builtin_ctz(x.s.high) + (1 + sizeof(si_int) * CHAR_BIT);
H A Dffsti2.c24 if (x.s.high == 0)
26 return __builtin_ctzll(x.s.high) + (1 + sizeof(di_int) * CHAR_BIT);
H A Dlshrdi3.c25 result.s.high = 0;
26 result.s.low = input.s.high >> (b - bits_in_word);
30 result.s.high = input.s.high >> b;
31 result.s.low = (input.s.high << (bits_in_word - b)) | (input.s.low >> b);
H A Dashlti3.c28 result.s.high = input.s.low << (b - bits_in_dword);
33 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
H A Dfixunssfdi.c20 su_int high = da / 4294967296.f; // da / 0x1p32f; local
21 su_int low = da - (double)high * 4294967296.f; // high * 0x1p32f;
22 return ((du_int)high << 32) | low;
H A Dint_types.h36 si_int high; member in struct:__anon1129::__anon1130
38 si_int high;
49 su_int high; member in struct:__anon1131::__anon1132
51 su_int high;
78 di_int high; member in struct:__anon1133::__anon1134
80 di_int high;
91 du_int high; member in struct:__anon1135::__anon1136
93 du_int high;
101 r.s.high = h;
108 r.s.high
130 udwords high; member in struct:__anon1139
[all...]
H A Dfixunsxfsi.c38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
39 if (e < 0 || (fb.u.high.s.low & 0x00008000))
43 return fb.u.low.s.high >> (31 - e);
/freebsd-11-stable/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-11-stable/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),
/freebsd-11-stable/sys/dev/sound/midi/
H A Dsequencer.h44 #define RANGE(var, low, high) (var) = \
45 ((var)<(low)?(low) : (var)>(high)?(high) : (var))
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dfloatunditf.c18 doublebits high = {.d = twop84}; local
21 high.x |= a >> 32; // 0x1.0p84 + high 32 bits of a
24 const double high_addend = high.d - twop84_plus_twop52;
/freebsd-11-stable/contrib/gdb/gdb/
H A Ddisasm.h31 int how_many, CORE_ADDR low, CORE_ADDR high);

Completed in 250 milliseconds

1234567891011>>