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

1 2

  /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)
TargetData.cpp 427 int NumElts = Ty->getNumElements();
429 (StructLayout *)malloc(sizeof(StructLayout)+(NumElts-1) * sizeof(uint64_t));
  /external/llvm/lib/Target/X86/Utils/
X86ShuffleDecode.cpp 68 unsigned NumElts = VT.getVectorNumElements();
71 unsigned NumLaneElts = NumElts / NumLanes;
74 for (unsigned l = 0; l != NumElts; l += NumLaneElts) {
85 unsigned NumElts = VT.getVectorNumElements();
87 for (unsigned l = 0; l != NumElts; l += 8) {
101 unsigned NumElts = VT.getVectorNumElements();
103 for (unsigned l = 0; l != NumElts; l += 8) {
119 unsigned NumElts = VT.getVectorNumElements();
122 unsigned NumLaneElts = NumElts / NumLanes;
125 for (unsigned l = 0; l != NumElts; l += NumLaneElts)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineVectorOps.cpp 213 unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
216 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())));
221 for (unsigned i = 0; i != NumElts; ++i)
227 for (unsigned i = 0; i != NumElts; ++i)
229 i+NumElts));
264 Mask[InsertedIdx % NumElts] =
269 Mask[InsertedIdx % NumElts] =
271 ExtractedIdx+NumElts);
292 unsigned NumElts = cast<VectorType>(V->getType())->getNumElements();
295 Mask.assign(NumElts, UndefValue::get(Type::getInt32Ty(V->getContext())))
    [all...]
InstCombineCasts.cpp     [all...]
  /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);
262 return ((const Vec*)(const void *)Data)->NumElts;
286 return ((const Arr*)(const void *)Data)->NumElts;
352 ((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...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypesGeneric.cpp 310 unsigned NumElts = VecVT.getVectorNumElements();
321 NewElts.reserve(NumElts*2);
323 for (unsigned i = 0; i < NumElts; ++i) {
350 unsigned NumElts = VecVT.getVectorNumElements();
362 EVT NewVecVT = EVT::getVectorVT(*DAG.getContext(), NewEVT, NumElts*2);
387 unsigned NumElts = VT.getVectorNumElements();
388 SmallVector<SDValue, 16> Ops(NumElts);
391 for (unsigned i = 1; i < NumElts; ++i)
393 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElts);
LegalizeVectorOps.cpp 327 unsigned NumElts = VT.getVectorNumElements();
333 MVT NVT = MVT::getVectorVT(EltVT.getSimpleVT(), NumElts);
LegalizeDAG.cpp 623 unsigned NumElts = Vec.getValueType().getVectorNumElements();
628 for (unsigned i = 0; i != NumElts; ++i)
629 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
    [all...]
LegalizeTypes.cpp     [all...]
TargetLowering.cpp 653 unsigned NumElts = VT.getVectorNumElements();
660 if (!isPowerOf2_32(NumElts)) {
661 NumVectorRegs = NumElts;
662 NumElts = 1;
667 while (NumElts > 1 && !TLI->isTypeLegal(MVT::getVectorVT(EltTy, NumElts))) {
668 NumElts >>= 1;
674 MVT NewVT = MVT::getVectorVT(EltTy, NumElts);
    [all...]
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 508 unsigned NumElts = ReadVBR(6);
509 for (unsigned i = 0; i != NumElts; ++i)
522 unsigned NumElts = ReadVBR(6);
529 for (; NumElts; --NumElts)
533 unsigned NumElts = ReadVBR(6);
537 size_t NewEnd = NextChar+((NumElts+3)&~3);
542 Vals.append(NumElts, 0);
551 NextChar, NumElts);
552 *BlobLen = NumElts;
    [all...]
  /external/llvm/lib/Analysis/
ConstantFolding.cpp 356 uint64_t NumElts;
358 NumElts = AT->getNumElements();
360 NumElts = cast<VectorType>(C->getType())->getNumElements();
362 for (; Index != NumElts; ++Index) {
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 52 unsigned NumElts = DstTy->getNumElements();
53 if (NumElts != CV->getType()->getVectorNumElements())
60 for (unsigned i = 0; i != NumElts; ++i) {
    [all...]
Instructions.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 326 // ARRAY: [numelts, eltty]
335 // VECTOR [numelts, eltty]
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 373 // ARRAY: [numelts, eltty]
382 // VECTOR [numelts, eltty]
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 328 // ARRAY: [numelts, eltty]
337 // VECTOR [numelts, eltty]
846 unsigned NumElts = Str->getNumElements();
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 470 uint64_t NumElts = AT->getSize().getZExtValue();
471 for (uint64_t Elt = 0; Elt < NumElts; ++Elt)
519 unsigned NumElts = AT->getSize().getZExtValue();
521 for (unsigned Elt = 0; Elt < NumElts; ++Elt) {
    [all...]
CGExprConstant.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Transforms/IPO/
GlobalOpt.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
  /external/clang/lib/Sema/
SemaStmt.cpp 263 unsigned NumElts = elts.size();
271 for (; i != NumElts && isa<DeclStmt>(Elts[i]); ++i)
275 for (; i != NumElts && !isa<DeclStmt>(Elts[i]); ++i)
278 if (i != NumElts) {
284 for (unsigned i = 0; i != NumElts; ++i) {
286 if (isStmtExpr && i == NumElts - 1)
295 if (NumElts != 0 && !CurrentInstantiationScope &&
297 for (unsigned i = 0; i != NumElts - 1; ++i)
301 return Owned(new (Context) CompoundStmt(Context, Elts, NumElts, L, R));
    [all...]

Completed in 656 milliseconds

1 2