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

/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp2894 unsigned SrcNumElts = SrcVT.getVectorNumElements(); local
2896 if (SrcNumElts == MaskNumElts) {
2903 if (SrcNumElts < MaskNumElts && MaskNumElts % SrcNumElts == 0) {
2907 if (SrcNumElts*2 == MaskNumElts) {
2909 if (isSequentialInRange(Mask, 0, SrcNumElts, 0) &&
2910 isSequentialInRange(Mask, SrcNumElts, SrcNumElts, SrcNumElts)) {
2917 if (isSequentialInRange(Mask, 0, SrcNumElts, SrcNumElt
[all...]
/external/llvm/lib/IR/
H A DConstantFold.cpp796 unsigned SrcNumElts = V1->getType()->getVectorNumElements(); local
807 if (unsigned(Elt) >= SrcNumElts*2)
809 else if (unsigned(Elt) >= SrcNumElts) {
813 ConstantInt::get(Ty, Elt - SrcNumElts));

Completed in 146 milliseconds