Searched defs:NElts (Results 1 - 14 of 14) sorted by relevance

/external/llvm/lib/Target/X86/Utils/
H A DX86ShuffleDecode.cpp49 void DecodeMOVHLPSMask(unsigned NElts, SmallVectorImpl<int> &ShuffleMask) { argument
50 for (unsigned i = NElts/2; i != NElts; ++i)
51 ShuffleMask.push_back(NElts+i);
53 for (unsigned i = NElts/2; i != NElts; ++i)
58 void DecodeMOVLHPSMask(unsigned NElts, SmallVectorImpl<int> &ShuffleMask) { argument
59 for (unsigned i = 0; i != NElts/2; ++i)
62 for (unsigned i = 0; i != NElts/2; ++i)
63 ShuffleMask.push_back(NElts
[all...]
/external/llvm/include/llvm/ADT/
H A DSTLExtras.h289 auto NElts = End - Start; local
290 if (NElts <= 1) return;
291 qsort(&*Start, NElts, sizeof(*Start), get_array_pod_sort_comparator(*Start));
302 auto NElts = End - Start; local
303 if (NElts <= 1) return;
304 qsort(&*Start, NElts, sizeof(*Start),
/external/llvm/include/llvm/CodeGen/
H A DValueTypes.h292 unsigned NElts = getVectorNumElements(); local
293 return !(NElts & (NElts - 1));
300 unsigned NElts = getVectorNumElements(); local
301 unsigned Pow2NElts = 1 << Log2_32_Ceil(NElts);
H A DMachineValueType.h259 unsigned NElts = getVectorNumElements(); local
260 return !(NElts & (NElts - 1));
269 unsigned NElts = getVectorNumElements(); local
270 unsigned Pow2NElts = 1 << Log2_32_Ceil(NElts);
/external/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp1282 unsigned NElts = VT.getVectorNumElements(); local
1294 && SVT.getVectorNumElements() == NElts && isTypeLegal(SVT)
1312 && SVT.getVectorNumElements() > NElts && isTypeLegal(SVT)) {
1343 ValueTypeActions.setTypeAction(VT, NElts == 1 ? TypeScalarizeVector
/external/llvm/lib/Target/R600/
H A DR600ISelLowering.cpp1911 unsigned NElts = VT.getVectorNumElements(); local
1912 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
H A DSIISelLowering.cpp1285 unsigned NElts = SrcVT.getVectorNumElements(); local
1286 if (!SrcVT.isSimple() && NElts != 3)
1294 EVT FloatVT = EVT::getVectorVT(*DAG.getContext(), MVT::f32, NElts);
1330 unsigned ComponentsInElt = std::min(4u, NElts - 4 * EltIdx);
1341 assert(Ops.size() == NElts);
H A DAMDGPUISelLowering.cpp1554 unsigned NElts = VT.getVectorNumElements(); local
1555 IntVT = MVT::getVectorVT(MVT::i32, NElts);
1556 FltVT = MVT::getVectorVT(MVT::f32, NElts);
2261 unsigned NElts = VT.getVectorNumElements(); local
2263 DAG.ExtractVectorElements(Src, Args, 0, NElts);
2266 for (unsigned I = 0; I < NElts; ++I)
/external/llvm/lib/IR/
H A DConstants.cpp2148 unsigned NElts = Mask->getType()->getVectorNumElements(); local
2150 Type *ShufTy = VectorType::get(EltTy, NElts);
/external/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1936 unsigned NElts = BVN->getNumOperands(); local
1939 for (unsigned i = 1, e = NElts; i != e; ++i) {
2020 unsigned NElts = BVN->getNumOperands(); local
2058 for (unsigned i = 0, e = NElts; i != e; ++i) {
2077 unsigned EltSize = Size / NElts;
2082 for (unsigned i = 0, e = NElts; i != e; ++i) {
2085 unsigned OpIdx = NElts - i - 1;
2113 for (unsigned i = 0, e = NElts; i != e; ++i) {
2116 unsigned OpIdx = NElts - i - 1;
2148 unsigned NElts local
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp269 unsigned NElts = Vec->getType()->getVectorNumElements(); local
271 if (NElts != VL.size())
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp1479 unsigned NElts = VT.getVectorNumElements(); local
1481 for (unsigned i = 0; i != NElts; ++i) {
1482 assert(Mask[i] < (int)(NElts * 2) && "Index out of range");
1489 for (unsigned i = 0; i != NElts; ++i)
1490 if (MaskVec[i] >= (int)NElts) MaskVec[i] -= NElts;
1505 for (int i = 0; i < (int)NElts; ++i) {
1506 if (MaskVec[i] < Offset || MaskVec[i] >= (Offset + (int)NElts))
1523 BlendSplat(N2BV, NElts);
1529 for (unsigned i = 0; i != NElts;
[all...]
H A DDAGCombiner.cpp10879 unsigned NElts = VT.getVectorNumElements(); local
10880 Ops.append(NElts, DAG.getUNDEF(InVal.getValueType()));
/external/clang/lib/AST/
H A DExprConstant.cpp5534 unsigned NElts = VTy->getNumElements(); local
5557 SmallVector<APValue, 4> Elts(NElts, Val);
5575 for (unsigned i = 0; i < NElts; i++) {
5584 for (unsigned i = 0; i < NElts; i++) {

Completed in 729 milliseconds