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

1 2

  /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/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/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/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...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.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);
LegalizeDAG.cpp 630 unsigned NumElts = Vec.getValueType().getVectorNumElements();
635 for (unsigned i = 0; i != NumElts; ++i)
636 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
    [all...]
LegalizeVectorOps.cpp 352 unsigned NumElts = VT.getVectorNumElements();
358 MVT NVT = MVT::getVectorVT(EltVT.getSimpleVT(), 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/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...]
  /external/llvm/lib/Target/NVPTX/
NVPTXISelDAGToDAG.cpp     [all...]
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...]
  /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...]
InstCombineCasts.cpp     [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...]
Instructions.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 363 // ARRAY: [numelts, eltty]
372 // VECTOR [numelts, eltty]
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 319 // ARRAY: [numelts, eltty]
328 // VECTOR [numelts, eltty]
832 unsigned NumElts = Str->getNumElements();
836 --NumElts; // Don't encode the null, which isn't allowed by char6.
843 for (unsigned i = 0; i != NumElts; ++i) {
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 324 // ARRAY: [numelts, eltty]
333 // VECTOR [numelts, eltty]
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 510 uint64_t NumElts = AT->getSize().getZExtValue();
511 for (uint64_t Elt = 0; Elt < NumElts; ++Elt)
559 unsigned NumElts = AT->getSize().getZExtValue();
561 for (unsigned Elt = 0; Elt < NumElts; ++Elt) {
    [all...]
CGExprConstant.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 451 // ARRAY: [numelts, eltty]
460 // VECTOR [numelts, eltty]
    [all...]
  /external/llvm/lib/Target/ARM/
ARMISelDAGToDAG.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]

Completed in 375 milliseconds

1 2