Searched refs:cpp_num_part (Results 1 - 4 of 4) sorted by relevance

/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20040703-1.c4 #define PART_PRECISION (sizeof (cpp_num_part) * 8)
6 typedef unsigned int cpp_num_part; typedef
10 cpp_num_part high;
11 cpp_num_part low;
22 return (num.high & (cpp_num_part) 1 << (precision - 1)) == 0;
25 return (num.low & (cpp_num_part) 1 << (precision - 1)) == 0;
35 num.high &= ((cpp_num_part) 1 << precision) - 1;
40 num.low &= ((cpp_num_part) 1 << precision) - 1;
51 cpp_num_part sign_mask;
57 sign_mask = ~(cpp_num_part)
[all...]
/haiku-buildtools/gcc/libcpp/
H A Dexpr.c24 #define PART_PRECISION (sizeof (cpp_num_part) * CHAR_BIT)
25 #define HALF_MASK (~(cpp_num_part) 0 >> (PART_PRECISION / 2))
43 static cpp_num num_part_mul (cpp_num_part, cpp_num_part);
744 cpp_num_part max;
767 max = ~(cpp_num_part) 0;
842 cpp_num_part add_high, add_low;
1042 result.low |= ~(~(cpp_num_part) 0
1044 result.high = ~(cpp_num_part) 0;
1546 num.high &= ((cpp_num_part)
[all...]
H A Dinit.c540 size_t max_precision = 2 * CHAR_BIT * sizeof (cpp_num_part);
571 if (sizeof (cppchar_t) > sizeof (cpp_num_part))
/haiku-buildtools/gcc/libcpp/include/
H A Dcpplib.h848 typedef uint64_t cpp_num_part; typedef
852 cpp_num_part high;
853 cpp_num_part low;

Completed in 161 milliseconds