HomeSort by relevance Sort by last modified time
    Searched defs:NumElems (Results 1 - 25 of 27) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
LegalizeVectorOps.cpp 350 unsigned NumElems = VT.getVectorNumElements();
355 SmallVector<SDValue, 8> Ops(NumElems);
356 for (unsigned i = 0; i < NumElems; ++i) {
368 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
LegalizeIntegerTypes.cpp     [all...]
SelectionDAG.cpp 200 unsigned NumElems = N->getNumOperands();
201 if (NumElems == 1)
203 for (unsigned i = 1; i < NumElems; ++i) {
    [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 109 unsigned NumElems = 2;
111 EVT NVT = EVT::getVectorVT(*DAG.getContext(), ElemVT, NumElems);
119 NumElems *= 2;
121 NVT = EVT::getVectorVT(*DAG.getContext(), ElemVT, NumElems);
128 for (unsigned i = 0; i < NumElems; ++i)
LegalizeVectorOps.cpp     [all...]
LegalizeIntegerTypes.cpp     [all...]
DAGCombiner.cpp     [all...]
  /external/llvm/lib/IR/
Attributes.cpp 55 unsigned NumElems = Num & std::numeric_limits<unsigned>::max();
59 if (NumElems != AllocSizeNumElemsNotPresent)
60 NumElemsArg = NumElems;
362 Optional<unsigned> NumElems;
363 std::tie(ElemSize, NumElems) = getAllocSizeArgs();
367 if (NumElems.hasValue()) {
369 Result += utostr(*NumElems);
    [all...]
ConstantFold.cpp 361 unsigned NumElems = STy->getNumElements();
363 if (NumElems == 0)
369 for (unsigned i = 1; i != NumElems; ++i)
376 Constant *N = ConstantInt::get(DestTy, NumElems);
428 unsigned NumElems = STy->getNumElements();
430 if (NumElems == 0)
436 for (unsigned i = 1; i != NumElems; ++i)
485 unsigned NumElems = STy->getNumElements();
487 if (NumElems == 0)
493 for (unsigned i = 1; i != NumElems; ++i
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Scalarizer.cpp 382 unsigned NumElems = VT->getNumElements();
386 assert(Op0.size() == NumElems && "Mismatched binary operation");
387 assert(Op1.size() == NumElems && "Mismatched binary operation");
389 Res.resize(NumElems);
390 for (unsigned Elem = 0; Elem < NumElems; ++Elem)
402 unsigned NumElems = VT->getNumElements();
406 assert(Op1.size() == NumElems && "Mismatched select");
407 assert(Op2.size() == NumElems && "Mismatched select");
409 Res.resize(NumElems);
413 assert(Op0.size() == NumElems && "Mismatched select")
    [all...]
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ConstantFold.cpp 344 unsigned NumElems = STy->getNumElements();
346 if (NumElems == 0)
352 for (unsigned i = 1; i != NumElems; ++i)
359 Constant *N = ConstantInt::get(DestTy, NumElems);
412 unsigned NumElems = STy->getNumElements();
414 if (NumElems == 0)
420 for (unsigned i = 1; i != NumElems; ++i)
470 unsigned NumElems = STy->getNumElements();
472 if (NumElems == 0)
478 for (unsigned i = 1; i != NumElems; ++i
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /external/llvm/utils/TableGen/
CodeGenDAGPatterns.cpp 541 unsigned NumElems = IVT.getVectorNumElements();
551 [NumElems](MVT VVT) {
552 return VVT.getVectorNumElements() >= NumElems;
565 unsigned NumElems = IVT.getVectorNumElements();
575 [NumElems](MVT VVT) {
576 return VVT.getVectorNumElements() <= NumElems;
607 unsigned NumElems = IVT.getVectorNumElements();
613 [NumElems](MVT VVT) {
614 return VVT.getVectorNumElements() != NumElems;
627 unsigned NumElems = IVT.getVectorNumElements()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 640 unsigned NumElems = numStructUnionElements(ILE->getType());
642 ++NumElems;
643 if (ILE->getNumInits() < NumElems)
644 ILE->resizeInits(SemaRef.Context, NumElems);
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64ISelLowering.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 1412 milliseconds

1 2