Lines Matching defs:sel
1481 SubdwordSel() : sel((sdwa_sel)0) {}
1482 constexpr SubdwordSel(sdwa_sel sel_) : sel(sel_) {}
1484 : sel((sdwa_sel)((sign_extend ? sext : 0) | size << 2 | offset))
1486 constexpr operator sdwa_sel() const { return sel; }
1487 explicit operator bool() const { return sel != 0; }
1489 constexpr unsigned size() const { return (sel >> 2) & 0x7; }
1490 constexpr unsigned offset() const { return sel & 0x3; }
1491 constexpr bool sign_extend() const { return sel & sext; }
1504 sdwa_sel sel;
1518 SubdwordSel sel[2];