Lines Matching defs:m_lsw

100     m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
107 m_msw(), m_lsw(), m_r_flag(false)
111 m_wp = m_msw = m_lsw = 2;
126 m_state(), m_msw(), m_lsw(), m_r_flag(false)
130 m_wp = m_msw = m_lsw = 2;
140 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
160 m_lsw = 2;
169 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
174 m_wp = m_msw = m_lsw = 2;
184 m_lsw = 2;
195 m_lsw(0), m_r_flag(false)
219 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
242 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
259 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
294 m_mant(min_mant), m_wp(), m_sign(), m_state(), m_msw(), m_lsw(),
320 m_msw(a.m_msw), m_lsw(a.m_lsw), m_r_flag(false)
611 m_msw = m_lsw = 0;
769 if (m_msw > m_lsw) {
771 if (m_msw - 1 > m_lsw)
777 if (m_msw > m_lsw) {
783 if (m_msw > m_lsw) {
786 if (m_msw - 1 > m_lsw) {
846 while (shift < 64 && m_msw >= idx && idx >= m_lsw) {
883 for (i = int_part.m_lsw; i <= int_part.m_msw && i < int_part.m_wp; i++)
886 if (int_part.m_wp < int_part.m_lsw)
890 i >= frac_part.m_lsw && i >= frac_part.m_wp; i--)
1060 lsb = (b.m_lsw - b.m_wp) * bits_in_word +
1061 scfx_find_lsb(b.m_mant[b.m_lsw]);
1446 int len_lhs = lhs.m_msw - lhs.m_lsw + 1;
1447 int len_rhs = rhs.m_msw - rhs.m_lsw + 1;
1450 int new_wp = (lhs.m_wp - lhs.m_lsw) + (rhs.m_wp - rhs.m_lsw);
1459 half_word *s1 = lhs.m_mant.half_addr(lhs.m_lsw);
1460 half_word *s2 = rhs.m_mant.half_addr(rhs.m_lsw);
1562 sub_with_index(remainder.m_mant, remainder.m_msw, remainder.m_lsw,
1563 rhs.m_mant, rhs.m_msw, rhs.m_lsw);
1567 remainder.m_lsw = remainder.find_lsw();
1639 if (m_lsw == 0 && scfx_find_lsb(m_mant[m_lsw]) < shift_bits)
1685 while (a_i >= a.m_lsw && b_i >= b.m_lsw) {
1697 while (a_i >= a.m_lsw) {
1703 while (b_i >= b.m_lsw) {
2058 int lower_bound_lhs = lhs.m_lsw - lhs.m_wp;
2060 int lower_bound_rhs = rhs.m_lsw - rhs.m_wp;
2102 int lhs_size = lhs.m_msw - lhs.m_lsw + 1;
2103 int rhs_size = rhs.m_msw - rhs.m_lsw + 1;
2239 for (int j = m_lsw; j <= m_msw; j++) {
2559 os << "lsw = " << m_lsw << ::std::endl;
2592 int lsb = (m_lsw - m_wp) * bits_in_word +
2593 scfx_find_lsb(m_mant[m_lsw]);
2623 wl_effective = (m_msw - m_lsw + 1) * bits_in_word;
2629 int lsb = scfx_find_lsb(m_mant[m_lsw]);
2631 (m_lsw * bits_in_word + lsb) + 1;