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

/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dscfx_rep.cpp873 int subnormal_shift = SCFX_IEEE_DOUBLE_E_MIN - exp; local
875 if( subnormal_shift < bits_in_word )
877 m1 = m1 >> subnormal_shift
878 | m0 << ( bits_in_word - subnormal_shift );
879 m0 = m0 >> subnormal_shift;
883 m1 = m0 >> ( subnormal_shift - bits_in_word );
/gem5/src/systemc/dt/fx/
H A Dscfx_rep.cc796 int subnormal_shift = SCFX_IEEE_DOUBLE_E_MIN - exp; local
798 if (subnormal_shift < bits_in_word) {
799 m1 = m1 >> subnormal_shift |
800 m0 << (bits_in_word - subnormal_shift);
801 m0 = m0 >> subnormal_shift;
803 m1 = m0 >> (subnormal_shift - bits_in_word);

Completed in 16 milliseconds