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

1234567891011>>

/openbsd-current/gnu/usr.bin/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...]
/openbsd-current/gnu/usr.bin/binutils-2.17/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...]
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dsum.c5 int sum(int *list, int low, int high) argument
7 int sum(list, low, high)
8 int *list, low, high;
12 for (i = low; i <= high; i++)
H A Daverage.c17 void print_average(int *list, int low, int high) argument
19 void print_average(list, low, high)
20 int *list, low, high;
24 total = sum(list, low, high);
25 num_elements = high - low; /* note this is an off-by-one bug */
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.hp/gdb.compat/
H A Dsum.c5 int sum(int *list, int low, int high) argument
7 int sum(list, low, high)
8 int *list, low, high;
12 for (i = low; i <= high; i++)
H A Daverage.c17 void print_average(int *list, int low, int high) argument
19 void print_average(list, low, high)
20 int *list, low, high;
24 total = sum(list, low, high);
25 num_elements = high - low; /* note this is an off-by-one bug */
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/
H A D981001-1.c2 unsigned short low = 0x4000; variable
8 (high & 0x8000) != (low & 0x8000)
9 && ( low & 0x4000) == 0x4000
14 low |= 0x4000;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/
H A D20020607-1.c2 gcc 3.0.4 mistakenly set lhs.low to 0 at the beginning of the num_eq
10 long low; member in struct:cpp_num
14 #define num_eq(num1, num2) (num1.low == num2.low && num1.high == num2.high)
20 lhs.low = num_eq (lhs, rhs);
32 if (result.low)
36 if (!result.low)
/openbsd-current/gnu/llvm/compiler-rt/lib/builtins/
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 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 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 Dfloatundixf.c32 fb.u.high.s.low = (e + 16383); // exponent
33 fb.u.low.all = a << clz; // mantissa
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/unsorted/
H A Dbad.c4 struct {signed long low, high;} si; member in struct:longlong::__anon7074
5 struct {unsigned long low, high;} ui; member in struct:longlong::__anon7075
19 uu.si.low = -uu.si.low;
20 if (uu.si.low == 0)
/openbsd-current/sys/lib/libkern/
H A Dmulti3.c26 r.s.low = (a & lower_mask) * (b & lower_mask);
27 du_int t = r.s.low >> bits_in_dword_2;
28 r.s.low &= lower_mask;
30 r.s.low += (t & lower_mask) << bits_in_dword_2;
32 t = r.s.low >> bits_in_dword_2;
33 r.s.low &= lower_mask;
35 r.s.low += (t & lower_mask) << bits_in_dword_2;
51 r.all = __mulddi3(x.s.low, y.s.low);
52 r.s.high += x.s.high * y.s.low
[all...]
H A Dcrt_glue.h42 du_int low; member in struct:__anon1::__anon2
46 du_int low;
57 du_int low; member in struct:__anon3::__anon4
61 du_int low;
/openbsd-current/gnu/gcc/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...]
/openbsd-current/gnu/llvm/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;

Completed in 135 milliseconds

1234567891011>>