Home
last modified time | relevance | path

Searched refs:cpp_num_part (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/libcpp/
H A Dexpr.cc24 #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);
888 cpp_num_part max; in cpp_interpret_integer()
911 max = ~(cpp_num_part) 0; in cpp_interpret_integer()
986 cpp_num_part add_high, add_low; in append_digit()
1175 result.low |= ~(~(cpp_num_part) 0 in eval_token()
1177 result.high = ~(cpp_num_part) 0; in eval_token()
1679 num.high &= ((cpp_num_part) 1 << precision) - 1; in num_trim()
1684 num.low &= ((cpp_num_part) 1 << precision) - 1; in num_trim()
[all …]
H A Dinit.cc612 size_t max_precision = 2 * CHAR_BIT * sizeof (cpp_num_part); in sanity_checks()
643 if (sizeof (cppchar_t) > sizeof (cpp_num_part)) in sanity_checks()
H A DChangeLog3828 * include/cpplib.h (cpp_num_part): Use uint64_t.
3848 * include/cpplib.h: typedef cpp_num_part to a 64bit type,
/netbsd-src/external/gpl3/gcc.old/dist/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);
865 cpp_num_part max; in cpp_interpret_integer()
888 max = ~(cpp_num_part) 0; in cpp_interpret_integer()
963 cpp_num_part add_high, add_low; in append_digit()
1149 result.low |= ~(~(cpp_num_part) 0 in eval_token()
1151 result.high = ~(cpp_num_part) 0; in eval_token()
1653 num.high &= ((cpp_num_part) 1 << precision) - 1; in num_trim()
1658 num.low &= ((cpp_num_part) 1 << precision) - 1; in num_trim()
[all …]
H A Dinit.c595 size_t max_precision = 2 * CHAR_BIT * sizeof (cpp_num_part); in sanity_checks()
626 if (sizeof (cppchar_t) > sizeof (cpp_num_part)) in sanity_checks()
/netbsd-src/external/gpl3/gcc.old/dist/libcpp/include/
H A Dcpplib.h1095 typedef uint64_t cpp_num_part; typedef
1099 cpp_num_part high;
1100 cpp_num_part low;
/netbsd-src/external/gpl3/gcc/dist/libcpp/include/
H A Dcpplib.h1204 typedef uint64_t cpp_num_part; typedef
1208 cpp_num_part high;
1209 cpp_num_part low;
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A DChangeLog-200219341 * cpphash.h (cpp_num_part): Move to cpplib.h.
19344 (cpp_num, cpp_num_part, CPP_N_CATEGORY, CPP_N_INVALID,
19762 * cppexp.c (cpp_num_part): Move typedef ...
19788 (cpp_num, cpp_num_part, PART_PRECISION, HALF_MASK, LOW_PART,