Searched refs:m_mant (Results 1 - 6 of 6) sorted by relevance

/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dscfx_rep.cpp100 : m_mant( min_mant ), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
107 : m_mant( min_mant ), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
112 m_mant.clear();
117 m_mant[2] = a;
122 m_mant[2] = -a;
131 : m_mant( min_mant ), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
136 m_mant.clear();
139 m_mant[2] = a;
147 : m_mant( min_mant ), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
152 m_mant
[all...]
H A Dscfx_rep.h298 scfx_mant m_mant; // mantissa (bits of the value). member in class:sc_dt::scfx_rep
315 m_mant.clear();
325 m_mant.resize_to( min_mant );
333 m_mant.resize_to( min_mant );
343 : m_mant( min_mant ), m_wp( 2 ), m_sign( 1 ), m_state( normal ),
365 m_mant = f.m_mant;
415 return m_mant.size();
434 if( m_mant[i] )
502 m_mant
[all...]
H A Dscfx_mant.h384 scfx_mant* m_mant; member in class:sc_dt::scfx_mant_ref
422 delete m_mant;
428 : m_mant( 0 ), m_not_const( false )
433 : m_mant( const_cast<scfx_mant*>( &mant ) ), m_not_const( false )
438 : m_mant( mant ), m_not_const( true )
447 m_mant = const_cast<scfx_mant*>( &mant );
459 m_mant = mant;
475 return *m_mant;
482 return (*m_mant)[i];
/gem5/src/systemc/dt/fx/
H A Dscfx_rep.cc100 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
106 scfx_rep::scfx_rep(int a) : m_mant(min_mant), m_wp(), m_sign(), m_state(),
110 m_mant.clear();
114 m_mant[2] = a;
117 m_mant[2] = -a;
125 scfx_rep::scfx_rep(unsigned int a) : m_mant(min_mant), m_wp(), m_sign(),
129 m_mant.clear();
132 m_mant[2] = a;
140 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
144 m_mant
[all...]
/gem5/src/systemc/ext/dt/fx/
H A Dscfx_rep.hh276 scfx_mant m_mant; // mantissa (bits of the value). member in class:sc_dt::scfx_rep
291 m_mant.clear();
300 m_mant.resize_to(min_mant);
307 m_mant.resize_to(min_mant);
314 m_mant(min_mant), m_wp(2), m_sign(1), m_state(normal),
328 m_mant = f.m_mant;
370 inline int scfx_rep::size() const { return m_mant.size(); }
381 if (m_mant[i])
422 m_mant
[all...]
H A Dscfx_mant.hh326 scfx_mant *m_mant; member in class:sc_dt::scfx_mant_ref
359 delete m_mant;
363 inline scfx_mant_ref::scfx_mant_ref() : m_mant(0), m_not_const(false) {}
366 m_mant(const_cast<scfx_mant *>(& mant)), m_not_const(false)
370 m_mant(mant), m_not_const(true)
378 m_mant = const_cast<scfx_mant *>(&mant);
389 m_mant = mant;
403 return *m_mant;
409 return (*m_mant)[i];

Completed in 14 milliseconds