Lines Matching refs:NElts
1470 int NElts = M.size(); in commuteShuffle() local
1471 for (int i = 0; i != NElts; ++i) { in commuteShuffle()
1472 if (M[i] >= NElts) in commuteShuffle()
1473 M[i] -= NElts; in commuteShuffle()
1475 M[i] += NElts; in commuteShuffle()
1490 unsigned NElts = VT.getVectorNumElements(); in getVectorShuffle() local
1492 for (unsigned i = 0; i != NElts; ++i) { in getVectorShuffle()
1493 assert(Mask[i] < (int)(NElts * 2) && "Index out of range"); in getVectorShuffle()
1500 for (unsigned i = 0; i != NElts; ++i) in getVectorShuffle()
1501 if (MaskVec[i] >= (int)NElts) MaskVec[i] -= NElts; in getVectorShuffle()
1512 for (unsigned i = 0; i != NElts; ++i) { in getVectorShuffle()
1513 if (MaskVec[i] >= (int)NElts) { in getVectorShuffle()
1538 for (unsigned i = 0; i != NElts; ++i) { in getVectorShuffle()
1541 if (Identity && NElts) in getVectorShuffle()
1579 for (unsigned i = 0; i != NElts; ++i) in getVectorShuffle()
1589 int *MaskAlloc = OperandAllocator.Allocate<int>(NElts); in getVectorShuffle()
1590 memcpy(MaskAlloc, &MaskVec[0], NElts * sizeof(int)); in getVectorShuffle()