Searched refs:low (Results 1 - 25 of 425) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/binutils/gas/
H A Dflonum-copy.c31 in_length = in->leader - in->low;
33 if (in->leader < in->low)
35 out->leader = out->low - 1; /* 0.0 case */
39 out_length = out->high - out->low;
50 memset ((char *) (out->low + in_length + 1), '\0',
54 memcpy ((void *) (out->low), (void *) (in->low),
57 out->leader = in->leader - in->low + out->low;
65 memcpy ((void *) (out->low), (voi
[all...]
H A Dflonum-mult.c89 int P; /* Scan product low-order -> high. */
102 size_of_a = a->leader - a->low;
103 size_of_b = b->leader - b->low;
105 size_of_product = product->high - product->low;
129 printf ("a:low[%d.]=%04x b:low[%d.]=%04x work_before=%08x\n",
130 A, a->low[A], B, b->low[B], work);
136 work += (unsigned long) a->low[A] * (unsigned long) b->low[
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dudivmodti4.c39 *rem = n.s.low % d.s.low;
40 return n.s.low / d.s.low;
46 *rem = n.s.low;
50 if (d.s.low == 0) {
56 *rem = n.s.high % d.s.low;
57 return n.s.high / d.s.low;
60 if (n.s.low == 0) {
66 r.s.low
[all...]
H A Dudivmoddi4.c44 *rem = n.s.low % d.s.low;
45 return n.s.low / d.s.low;
51 *rem = n.s.low;
55 if (d.s.low == 0) {
61 *rem = n.s.high % d.s.low;
62 return n.s.high / d.s.low;
65 if (n.s.low == 0) {
71 r.s.low
[all...]
H A Dashlti3.c27 result.s.low = 0;
28 result.s.high = input.s.low << (b - bits_in_dword);
32 result.s.low = input.s.low << b;
33 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_dword - b));
H A Dmulti3.c23 r.s.low = (a & lower_mask) * (b & lower_mask);
24 du_int t = r.s.low >> bits_in_dword_2;
25 r.s.low &= lower_mask;
27 r.s.low += (t & lower_mask) << bits_in_dword_2;
29 t = r.s.low >> bits_in_dword_2;
30 r.s.low &= lower_mask;
32 r.s.low += (t & lower_mask) << bits_in_dword_2;
46 r.all = __mulddi3(x.s.low, y.s.low);
47 r.s.high += x.s.high * y.s.low
[all...]
H A Dfixunsxfti.c31 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
32 if (e < 0 || (fb.u.high.s.low & 0x00008000))
36 tu_int r = fb.u.low.all;
H A Dcmpdi2.c28 if (x.s.low < y.s.low)
30 if (x.s.low > y.s.low)
H A Dcmpti2.c30 if (x.s.low < y.s.low)
32 if (x.s.low > y.s.low)
H A Ducmpdi2.c28 if (x.s.low < y.s.low)
30 if (x.s.low > y.s.low)
H A Ducmpti2.c30 if (x.s.low < y.s.low)
32 if (x.s.low > y.s.low)
H A Dmuldi3.c21 r.s.low = (a & lower_mask) * (b & lower_mask);
22 su_int t = r.s.low >> bits_in_word_2;
23 r.s.low &= lower_mask;
25 r.s.low += (t & lower_mask) << bits_in_word_2;
27 t = r.s.low >> bits_in_word_2;
28 r.s.low &= lower_mask;
30 r.s.low += (t & lower_mask) << bits_in_word_2;
44 r.all = __muldsi3(x.s.low, y.s.low);
45 r.s.high += x.s.high * y.s.low
[all...]
H A Dctzti2.c24 const di_int f = -(x.s.low == 0);
25 return __builtin_ctzll((x.s.high & f) | (x.s.low & ~f)) +
H A Dffsdi2.c21 if (x.s.low == 0) {
26 return __builtin_ctz(x.s.low) + 1;
H A Dffsti2.c23 if (x.s.low == 0) {
28 return __builtin_ctzll(x.s.low) + 1;
H A Dfloatundixf.c32 fb.u.high.s.low = (e + 16383); // exponent
33 fb.u.low.all = a << clz; // mantissa
H A Dashldi3.c25 result.s.low = 0;
26 result.s.high = input.s.low << (b - bits_in_word);
30 result.s.low = input.s.low << b;
31 result.s.high = (input.s.high << b) | (input.s.low >> (bits_in_word - b));
H A Dfixxfti.c32 int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
35 ti_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15);
36 ti_int r = fb.u.low.all;
H A Dint_types.h35 su_int low; member in struct:__anon1129::__anon1130
39 su_int low;
48 su_int low; member in struct:__anon1131::__anon1132
52 su_int low;
77 du_int low; member in struct:__anon1133::__anon1134
81 du_int low;
90 du_int low; member in struct:__anon1135::__anon1136
94 du_int low;
102 r.s.low = l;
109 r.s.low
129 udwords low; member in struct:__anon1139
[all...]
H A Dlshrti3.c28 result.s.low = input.s.high >> (b - bits_in_dword);
33 result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
/freebsd-11-stable/contrib/gcc/
H A Ddouble-int.c40 mask.low = ALL_ONES;
45 mask.low = ((unsigned HOST_WIDE_INT) 2 << (prec - 1)) - 1;
75 r.low = cst.low & mask.low;
91 snum = cst.low;
99 r.low = cst.low | ~mask.low;
104 r.low
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dfloatditf.c15 doublebits low = {.d = twop52}; local
16 low.x |= a & UINT64_C(0x00000000ffffffff); // 0x1.0p52 + low 32 bits of a.
21 // high_addend and low.d, and we wish to return their sum
29 result.s.hi = high_addend + low.d;
30 result.s.lo = (high_addend - result.s.hi) + low.d;
H A Dfloatunditf.c19 doublebits low = {.d = twop52}; local
22 low.x |= a & UINT64_C(0x00000000ffffffff); // 0x1.0p52 + low 32 bits of a
27 // high_addend and low.d, and we wish to return their sum
35 result.s.hi = high_addend + low.d;
36 result.s.lo = (high_addend - result.s.hi) + low.d;
/freebsd-11-stable/contrib/gcclibs/libmudflap/
H A Dmf-heuristics.c98 uintptr_t low; member in struct:proc_self_map_entry
113 (entry[i].low <= ptr) &&
125 void *low, *high; local
133 if (sscanf (buf, "%p-%p %4c", &low, &high, flags) == 3)
135 if ((uintptr_t) low <= ptr &&
142 entry[i].low = (uintptr_t) low;
151 i, (void *) low, (void *) high, buf);
153 __mfu_register ((void *) low, (size_t) (high-low),
[all...]
/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))

Completed in 107 milliseconds

1234567891011>>