Lines Matching refs:NumV2Elements
9121 int NumV2Elements = count_if(Mask, [](int M) { return M >= 4; }); in lowerVectorShuffleWithSHUFPS() local
9123 if (NumV2Elements == 1) { in lowerVectorShuffleWithSHUFPS()
9158 } else if (NumV2Elements == 2) { in lowerVectorShuffleWithSHUFPS()
9212 int NumV2Elements = count_if(Mask, [](int M) { return M >= 4; }); in lowerV4F32VectorShuffle() local
9214 if (NumV2Elements == 0) { in lowerV4F32VectorShuffle()
9246 if (NumV2Elements == 1 && Mask[0] >= 4) in lowerV4F32VectorShuffle()
9300 int NumV2Elements = count_if(Mask, [](int M) { return M >= 4; }); in lowerV4I32VectorShuffle() local
9302 if (NumV2Elements == 0) { in lowerV4I32VectorShuffle()
9330 if (NumV2Elements == 1) in lowerV4I32VectorShuffle()
10122 int NumV2Elements = count_if(Mask, [](int M) { return M >= 16; }); in lowerV16I8VectorShuffle() local
10125 if (NumV2Elements == 0) { in lowerV16I8VectorShuffle()
10277 if (NumV2Elements == 1) in lowerV16I8VectorShuffle()
10324 if (NumV2Elements > 0) in lowerV16I8VectorShuffle()
11654 int NumV2Elements = count_if(Mask, [NumElts](int M) { return M >= NumElts; }); in lower256BitVectorShuffle() local
11656 if (NumV2Elements == 1 && Mask[0] >= NumElts) in lower256BitVectorShuffle()
12180 int NumV1Elements = 0, NumUndefElements = 0, NumV2Elements = 0; in lowerVectorShuffle() local
12187 ++NumV2Elements; in lowerVectorShuffle()
12192 if (NumV2Elements > NumV1Elements) in lowerVectorShuffle()
12196 assert((NumV2Elements > 0 || V2IsUndef) && "V2 not undef, but not used"); in lowerVectorShuffle()
12203 if (NumV1Elements == NumV2Elements) { in lowerVectorShuffle()