Searched refs:mantissa0_size (Results 1 - 2 of 2) sorted by relevance

/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dscfx_rep.cpp85 static const int mantissa0_size = SCFX_IEEE_DOUBLE_M_SIZE - bits_in_int; member in namespace:sc_dt
229 m_mant[1] = id.mantissa0() | ( 1 << mantissa0_size );
827 int shift = mantissa0_size - msb;
835 m0 = m_mant[m_msw] & ~( 1 << mantissa0_size );
845 m0 = ( m_mant[m_msw] >> -shift ) & ~( 1 << mantissa0_size ); local
855 m0 = ( m_mant[m_msw] << shift ) & ~( 1 << mantissa0_size );
871 m0 |= ( 1 << mantissa0_size );
/gem5/src/systemc/dt/fx/
H A Dscfx_rep.cc86 static const int mantissa0_size = SCFX_IEEE_DOUBLE_M_SIZE - bits_in_int; member in namespace:sc_dt
213 m_mant[1] = id.mantissa0() | (1 << mantissa0_size);
761 int shift = mantissa0_size - msb;
768 m0 = m_mant[m_msw] & ~(1 << mantissa0_size);
775 m0 = (m_mant[m_msw] >> -shift) & ~(1 << mantissa0_size); local
782 m0 = (m_mant[m_msw] << shift) & ~(1 << mantissa0_size);
794 m0 |= (1 << mantissa0_size);

Completed in 16 milliseconds