HomeSort by relevance Sort by last modified time
    Searched refs:NumElts (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/llvm/lib/Target/X86/Utils/
X86ShuffleDecode.cpp 66 unsigned NumElts = VT.getVectorNumElements();
70 unsigned NumLaneElts = NumElts / NumLanes;
72 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
76 if (Base >= NumLaneElts) Base += NumElts - NumLaneElts;
86 unsigned NumElts = VT.getVectorNumElements();
89 unsigned NumLaneElts = NumElts / NumLanes;
92 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
103 unsigned NumElts = VT.getVectorNumElements();
105 for (unsigned l = 0; l != NumElts; l += 8) {
119 unsigned NumElts = VT.getVectorNumElements()
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 141 unsigned NumElts = ReadVBR(6);
142 for (unsigned i = 0; i != NumElts; ++i)
162 unsigned NumElts = ReadVBR(6);
169 for (; NumElts; --NumElts)
176 unsigned NumElts = ReadVBR(6);
180 size_t NewEnd = GetCurrentBitNo()+((NumElts+3)&~3)*8;
199 unsigned NumElts = ReadVBR(6);
200 for (unsigned i = 0; i != NumElts; ++i)
231 unsigned NumElts = ReadVBR(6)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 297 unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
300 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
305 for (unsigned i = 0; i != NumElts; ++i)
311 for (unsigned i = 0; i != NumElts; ++i)
313 i+NumElts));
348 Mask[InsertedIdx % NumElts] =
353 Mask[InsertedIdx % NumElts] =
355 ExtractedIdx+NumElts);
376 unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
379 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())))
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelLowering.cpp 599 unsigned NumElts = ObjectVT.getVectorNumElements();
609 if (NumElts == 1) {
623 } else if (NumElts == 2) {
660 for (unsigned i = 0; i < NumElts; i += VecSize) {
675 if (i + 1 < NumElts) {
687 if (i + 2 < NumElts) {
697 if (i + 3 < NumElts) {
    [all...]
NVPTXISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Target/
TargetLoweringObjectFile.cpp 80 unsigned NumElts = CDS->getNumElements();
81 assert(NumElts != 0 && "Can't have an empty CDS");
83 if (CDS->getElementAsInteger(NumElts-1) != 0)
87 for (unsigned i = 0; i != NumElts-1; ++i)
  /external/clang/include/clang/AST/
APValue.h 82 unsigned NumElts;
83 Vec() : Elts(0), NumElts(0) {}
88 unsigned NumElts, ArrSize;
89 Arr(unsigned NumElts, unsigned ArrSize);
269 return ((const Vec*)(const void *)Data)->NumElts;
293 return ((const Arr*)(const void *)Data)->NumElts;
359 ((Vec*)(char*)Data)->NumElts = N;
DeclObjC.h 41 unsigned NumElts;
44 ObjCListBase() : List(0), NumElts(0) {}
45 unsigned size() const { return NumElts; }
46 bool empty() const { return NumElts == 0; }
66 iterator end() const { return (iterator)List+NumElts; }
69 assert(Idx < NumElts && "Invalid access");
    [all...]
ASTContext.h     [all...]
  /external/llvm/include/llvm/ADT/
SmallString.h 48 void assign(size_t NumElts, char Elt) {
49 this->SmallVectorImpl<char>::assign(NumElts, Elt);
SmallVector.h 470 void assign(unsigned NumElts, const T &Elt) {
472 if (this->capacity() < NumElts)
473 this->grow(NumElts);
474 this->setEnd(this->begin()+NumElts);
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeVectorTypes.cpp     [all...]
LegalizeTypesGeneric.cpp 342 unsigned NumElts = VecVT.getVectorNumElements();
353 NewElts.reserve(NumElts*2);
355 for (unsigned i = 0; i < NumElts; ++i) {
382 unsigned NumElts = VecVT.getVectorNumElements();
394 EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewEVT, NumElts*2);
420 unsigned NumElts = VT.getVectorNumElements();
421 SmallVector<SDValue, 16> Ops(NumElts);
424 for (unsigned i = 1; i < NumElts; ++i)
426 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElts);
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp 784 unsigned NumElts = VT.getVectorNumElements();
791 if (!isPowerOf2_32(NumElts)) {
792 NumVectorRegs = NumElts;
793 NumElts = 1;
798 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
799 NumElts >>= 1;
805 MVT NewVT = MVT::getVectorVT(EltTy, NumElts);
    [all...]
  /external/llvm/include/llvm/Target/
TargetLowering.h     [all...]
  /external/clang/lib/AST/
APValue.cpp 108 APValue::Arr::Arr(unsigned NumElts, unsigned Size) :
109 Elts(new APValue[NumElts + (NumElts != Size ? 1 : 0)]),
110 NumElts(NumElts), ArrSize(Size) {}
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp     [all...]
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp 52 unsigned NumElts = DstTy->getNumElements();
53 if (NumElts != CV->getType()->getVectorNumElements())
60 for (unsigned i = 0; i != NumElts; ++i) {
    [all...]
DataLayout.cpp 455 int NumElts = Ty->getNumElements();
457 (StructLayout *)malloc(sizeof(StructLayout)+(NumElts-1) * sizeof(uint64_t));
Constants.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 297 unsigned NumElts = elts.size();
305 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
309 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
312 if (i != NumElts) {
318 for (unsigned i = 0; i != NumElts; ++i) {
320 if (isStmtExpr && i == NumElts - 1)
329 if (NumElts != 0 && !CurrentInstantiationScope &&
331 for (unsigned i = 0; i != NumElts - 1; ++i)
336 llvm::makeArrayRef(Elts, NumElts),
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 345 uint64_t NumElts;
347 NumElts = AT->getNumElements();
349 NumElts = cast<VectorType>(C->getType())->getNumElements();
351 for (; Index != NumElts; ++Index) {
    [all...]

Completed in 1548 milliseconds

1 2 3