Lines Matching defs:mask
46 // the mask being used was 32 bits and should have been 64 bits.
168 uint_type mask; // Mask for bits to extract or keep.
174 mask = ~(~UINT_ZERO << left_shift);
175 dst_p[dst_i] = (sc_digit)((dst_p[dst_i] & mask));
191 uint_type mask; // Mask for bits to extract or keep.
199 mask = ~mask_int[m_left][m_right];
200 val = (m_obj_p->m_val & mask) >> m_right;
204 mask = ~(~UINT_ZERO << left_shift);
205 dst_p[dst_i] = (sc_digit)(((dst_p[dst_i] & mask)) |
253 uint_type mask = mask_int[m_left][m_right];
254 val &= mask;
255 val |= (v << m_right) & ~mask;
558 uint_type mask = ~UINT_ZERO;
563 mask >>= n;
564 val = ((val & (mask << n)) >> n) ^ (val & mask);
576 uint_type mask; // Mask for bits to extract or keep.
583 mask = ~(~UINT_ZERO << left_shift);
584 dst_p[dst_i] = (sc_digit)((dst_p[dst_i] & mask));
614 uint_type mask; // Mask for bits to extract or keep.
627 mask = ~(~UINT_ZERO << m_len);
628 val &= mask;
632 mask = ~(~UINT_ZERO << left_shift);
633 dst_p[dst_i] = (sc_digit)(((dst_p[dst_i] & mask)) |