Lines Matching defs:mask
46 // the mask being used was 32 bits and should have been 64 bits.
165 uint_type mask; // Mask for bits to extract or keep.
170 mask = ~mask_int[m_left][m_right];
173 dst_p[dst_i] = (sc_digit)(dst_p[dst_i] & mask);
206 uint_type mask; // Mask for bits to extract or keep.
214 mask = ~mask_int[m_left][m_right];
215 val = (m_obj_p->m_val & mask) >> m_right;
219 mask = ~(~UINT_ZERO << left_shift);
220 dst_p[dst_i] = (sc_digit)((dst_p[dst_i] & mask) |
268 uint_type mask = mask_int[m_left][m_right];
269 val &= mask;
270 val |= (v << m_right) & ~mask;
562 uint_type mask = ~UINT_ZERO;
563 uint_type val = m_val & (mask >> m_ulen);
567 mask >>= n;
568 val = ((val & (mask << n)) >> n) ^ (val & mask);
579 uint_type mask; // Mask for bits to extract or keep.
585 mask = ~(~UINT_ZERO << left_shift);
586 dst_p[dst_i] = (sc_digit)(dst_p[dst_i] & mask);
615 uint_type mask; // Mask for bits to extract or keep.
628 mask = ~(~UINT_ZERO << m_len);
629 val &= mask;
633 mask = (~UINT_ZERO << left_shift);
634 dst_p[dst_i] = (sc_digit)((dst_p[dst_i] & ~mask) |