Home | History | Annotate | Download | only in PerfectShuffle

Lines Matching refs:getMaskElt

34 /// getMaskElt - Return element N of the specified mask.
35 static unsigned getMaskElt(unsigned Mask, unsigned Elt) {
74 return getMaskElt(Mask, 0)*9*9*9 + getMaskElt(Mask, 1)*9*9 +
75 getMaskElt(Mask, 2)*9 + getMaskElt(Mask, 3);
79 OS << "<" << (char)(getMaskElt(i, 0) == 8 ? 'u' : ('0'+getMaskElt(i, 0)))
80 << "," << (char)(getMaskElt(i, 1) == 8 ? 'u' : ('0'+getMaskElt(i, 1)))
81 << "," << (char)(getMaskElt(i, 2) == 8 ? 'u' : ('0'+getMaskElt(i, 2)))
82 << "," << (char)(getMaskElt(i, 3) == 8 ? 'u' : ('0'+getMaskElt(i, 3)))
134 ResElt = getMaskElt(LHSMask, SrcElt);
136 ResElt = getMaskElt(RHSMask, SrcElt-4);