Lines Matching defs:m_len_r
132 m_len_r = right.concat_length(&right_xz);
133 m_len = left.concat_length(&left_xz) + m_len_r;
146 m_len_r = right.concat_length(&right_xz);
147 m_len = left.concat_length(&left_xz) + m_len_r;
177 bool lnz = m_left_p->concat_get_ctrl(dst_p, low_i + m_len_r);
185 bool lnz = m_left_p->concat_get_data(dst_p, low_i + m_len_r);
192 if (m_len_r >= 64) {
195 return (m_left_p->concat_get_uint64() << m_len_r) |
204 m_left_p->concat_set(src, low_i + m_len_r);
211 m_left_p->concat_set(src, low_i + m_len_r);
218 m_left_p->concat_set(src, low_i + m_len_r);
225 m_left_p->concat_set(src, low_i + m_len_r);
236 if (m_len_r < 64) {
238 result = (m_left_p->concat_get_uint64() << m_len_r) |
239 (result & ~(mask << m_len_r));
261 left_non_zero = m_left_p->concat_get_data(result_p->digit, m_len_r);
310 m_left_p->concat_set((int64)v, m_len_r);
318 m_left_p->concat_set((int64)v, m_len_r);
326 m_left_p->concat_set(v, m_len_r);
334 m_left_p->concat_set((uint64)v, m_len_r);
342 m_left_p->concat_set((uint64)v, m_len_r);
350 m_left_p->concat_set(v, m_len_r);
360 m_left_p->concat_set(temp, m_len_r);
368 m_left_p->concat_set(v, m_len_r);
376 m_left_p->concat_set(v, m_len_r);
386 m_left_p->concat_set(v, m_len_r);
396 m_left_p->concat_set(temp, m_len_r);
406 m_left_p->concat_set(data, m_len_r);
443 int m_len_r; // Length of m_rightt_p.
448 sc_concatref() : m_left_p(0), m_right_p(0), m_len(0), m_len_r(0), m_flags()