Searched refs:NumEltsGrowth (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp219 unsigned NumEltsGrowth = NumDestElts / NumMaskElts; local
221 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
223 if (NumEltsGrowth == 1)
229 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
233 NewMask.push_back(Idx * NumEltsGrowth + j);
236 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp170 unsigned NumEltsGrowth = NumDestElts / NumMaskElts; local
172 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
174 if (NumEltsGrowth == 1)
180 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
184 NewMask.push_back(Idx * NumEltsGrowth + j);
187 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");

Completed in 148 milliseconds