Searched refs:UINT64_32ONES (Results 1 - 7 of 7) sorted by relevance

/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbdefs.cpp76 const uint64 UINT64_32ONES = 0x00000000ffffffffULL; member in namespace:sc_dt
80 const uint64 UINT64_32ONES = 0x00000000ffffffffi64; member in namespace:sc_dt
H A Dsc_nbdefs.h189 extern const uint64 UINT64_32ONES;
195 extern const uint64 UINT64_32ONES;
H A Dsc_int_base.h849 { return (long) (m_val & UINT64_32ONES); }
852 { return (long) ((m_val >> 32) & UINT64_32ONES); }
H A Dsc_uint_base.h829 { return (long) (m_val & UINT64_32ONES); }
832 { return (long) ((m_val >> 32) & UINT64_32ONES); }
/gem5/src/systemc/ext/dt/int/
H A Dsc_nbdefs.hh177 static const uint64 UINT64_32ONES = 0x00000000ffffffffULL; member in namespace:sc_dt
H A Dsc_int_base.hh918 long long_low() const { return (long)(m_val & UINT64_32ONES); }
919 long long_high() const { return (long)((m_val >> 32) & UINT64_32ONES); }
H A Dsc_uint_base.hh843 long long_low() const { return (long)(m_val & UINT64_32ONES); }
844 long long_high() const { return (long)((m_val >> 32) & UINT64_32ONES); }

Completed in 25 milliseconds