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

/gem5/src/systemc/ext/dt/int/
H A Dsc_nbdefs.hh135 #define BITS_PER_HALF_DIGIT (BITS_PER_DIGIT / 2) macro
136 #define HALF_DIGIT_RADIX (1ul << BITS_PER_HALF_DIGIT)
H A Dsc_nbutils.hh232 // more bits than BITS_PER_HALF_DIGIT due to, e.g., overflow in the
234 // make sure that the result contains BITS_PER_HALF_DIGIT if
236 inline sc_digit high_half(sc_digit d) { return (d >> BITS_PER_HALF_DIGIT); }
248 return ((h << BITS_PER_HALF_DIGIT) | l);
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbdefs.h147 #define BITS_PER_HALF_DIGIT (BITS_PER_DIGIT / 2) macro
148 #define HALF_DIGIT_RADIX (1ul << BITS_PER_HALF_DIGIT)
H A Dsc_nbutils.h355 // more bits than BITS_PER_HALF_DIGIT due to, e.g., overflow in the
357 // make sure that the result contains BITS_PER_HALF_DIGIT if
363 return (d >> BITS_PER_HALF_DIGIT);
379 return ((h << BITS_PER_HALF_DIGIT) | l);

Completed in 7 milliseconds