Searched refs:BITS_PER_DIGIT_TYPE (Results 1 - 3 of 3) sorted by relevance

/gem5/src/systemc/ext/dt/int/
H A Dsc_nbdefs.hh123 #define BITS_PER_DIGIT_TYPE 32 macro
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbdefs.h135 #define BITS_PER_DIGIT_TYPE 32 macro
H A Dsc_nbcommon.inc2495 int buf_ndigits = (length() - 1) / BITS_PER_DIGIT_TYPE + 1;
2539 buf[i / BITS_PER_DIGIT_TYPE] |=
2540 one_and_zeros(i % BITS_PER_DIGIT_TYPE); // Set.
2544 buf[i / BITS_PER_DIGIT_TYPE] &=
2545 ~(one_and_zeros(i % BITS_PER_DIGIT_TYPE)); // Clear.
2565 if ((buf[i / BITS_PER_DIGIT_TYPE] &
2566 one_and_zeros(i % BITS_PER_DIGIT_TYPE)) != 0) // Test.

Completed in 11 milliseconds