HomeSort by relevance Sort by last modified time
    Searched refs:getNumElements (Results 26 - 50 of 136) sorted by null

12 3 4 5 6

  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 56 cast<ArrayType>(Array->getType()->getElementType())->getNumElements();
154 for (unsigned i = 0, e = InitList->getType()->getNumElements();
  /external/llvm/lib/Linker/
LinkModules.cpp 180 if (DATy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
183 if (DVTy->getNumElements() != cast<ArrayType>(SrcTy)->getNumElements())
220 Elements.resize(SrcSTy->getNumElements());
290 cast<ArrayType>(Ty)->getNumElements());
293 cast<VectorType>(Ty)->getNumElements());
681 uint64_t NewSize = DstTy->getNumElements() + SrcTy->getNumElements();
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
  /external/llvm/lib/VMCore/
DebugInfo.cpp 308 unsigned DIArray::getNumElements() const {
793 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i) {
799 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
802 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
805 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
884 for (unsigned i = 0, e = DA.getNumElements(); i != e; ++i) {
    [all...]
Verifier.cpp 438 Assert1(STy && STy->getNumElements() == 2 &&
    [all...]
ConstantFold.cpp 52 unsigned NumElts = DstTy->getNumElements();
113 if (STy->getNumElements() == 0) break;
335 Constant *N = ConstantInt::get(DestTy, ATy->getNumElements());
342 unsigned NumElems = STy->getNumElements();
410 unsigned NumElems = STy->getNumElements();
468 unsigned NumElems = STy->getNumElements();
630 STy->getNumElements() == 2 &&
    [all...]
ValueTypes.cpp 85 return cast<VectorType>(LLVMTy)->getNumElements();
225 VTy->getNumElements());
Constants.cpp 136 C = ConstantVector::getSplat(VTy->getNumElements(), C);
153 return ConstantVector::getSplat(VTy->getNumElements(),
178 return Elt < CDS->getNumElements() ? CDS->getElementAsConstant(Elt) : 0;
401 return ConstantVector::getSplat(VTy->getNumElements(),
413 return ConstantVector::getSplat(VTy->getNumElements(),
438 return ConstantVector::getSplat(VTy->getNumElements(), C);
463 return ConstantVector::getSplat(VTy->getNumElements(), C);
509 return ConstantVector::getSplat(VTy->getNumElements(), C);
523 return ConstantVector::getSplat(VTy->getNumElements(), C);
542 return ConstantVector::getSplat(VTy->getNumElements(), C)
    [all...]
Instructions.cpp 72 if (ET->getNumElements() != VT->getNumElements())
    [all...]
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 179 TempValues.reserve(VTp->getNumElements());
180 for (unsigned i = 0; i < VTp->getNumElements(); ++i)
421 Ran->Rand() % cast<VectorType>(Val0->getType())->getNumElements()),
434 unsigned Width = cast<VectorType>(Val0->getType())->getNumElements();
464 Ran->Rand() % cast<VectorType>(Val0->getType())->getNumElements()),
482 DestTy = pickVectorType(VecTy->getNumElements());
570 unsigned NumElem = cast<VectorType>(Val0->getType())->getNumElements();
  /external/llvm/lib/CodeGen/
Analysis.cpp 58 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i) {
95 for (unsigned i = 0, e = ATy->getNumElements(); i != e; ++i)
333 for (unsigned i = 0, e =cast<StructType>(RetVal->getType())->getNumElements();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapCreationTester.java 138 Arrays.asList(entries).subList(1, getNumElements());
SetNavigationTester.java 54 getSubjectGenerator().getCollectionSize().getNumElements()));
  /external/llvm/lib/Target/
TargetData.cpp 48 NumElements = ST->getNumElements();
372 Align *= cast<VectorType>(Ty)->getNumElements();
427 int NumElts = Ty->getNumElements();
473 return getTypeAllocSizeInBits(ATy->getElementType())*ATy->getNumElements();
  /external/llvm/lib/Transforms/Scalar/
ScalarReplAggregates.cpp     [all...]
SCCP.cpp 242 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
302 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
399 assert(i < cast<StructType>(V->getType())->getNumElements() &&
736 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
800 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
    [all...]
  /frameworks/compile/slang/
slang_rs_export_func.cpp 140 if (ERT->getFields().size() != ParamTy->getNumElements())
slang_rs_export_type.cpp 135 unsigned numElements = EVT->getNumElements();
291 if (EVT->getNumElements() < 2 || EVT->getNumElements() > 4)
515 EVT->getNumElements() == 3) {
    [all...]
  /external/mesa3d/src/pixelflinger2/
llvm_helper.h 98 assert(type->getNumElements() <= 4);
99 for (unsigned i = 0; i < type->getNumElements(); i++)
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 164 if (maxElements > 0 && STy->getNumElements() > maxElements) {
173 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
195 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
531 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
665 for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
    [all...]
MergeFunctions.cpp 244 if (STy1->getNumElements() != STy2->getNumElements())
250 for (unsigned i = 0, e = STy1->getNumElements(); i != e; ++i) {
277 return ATy1->getNumElements() == ATy2->getNumElements() &&
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 413 for (unsigned i = 0, N = Fields.getNumElements(); i < N; ++i) {
574 for (unsigned i = 0, e = TParams.getNumElements(); i != e; ++i) {
688 for (unsigned i = 0, e = Args.getNumElements(); i != e; ++i) {
765 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
788 for (unsigned i = 1, N = Elements.getNumElements(); i < N; ++i) {
816 unsigned N = Elements.getNumElements();
    [all...]
DwarfDebug.cpp 134 for (unsigned i = 0, N = Elements.getNumElements(); i < N; ++i) {
327 for (unsigned i = 1, N = Args.getNumElements(); i < N; ++i) {
743 for (unsigned i = 0, e = GVs.getNumElements(); i != e; ++i)
746 for (unsigned i = 0, e = SPs.getNumElements(); i != e; ++i)
749 for (unsigned i = 0, e = EnumTypes.getNumElements(); i != e; ++i)
752 for (unsigned i = 0, e = RetainedTypes.getNumElements(); i != e; ++i)
782 for (unsigned i = 0, e = Subprograms.getNumElements(); i != e; ++i) {
788 if (Variables.getNumElements() == 0) continue;
799 for (unsigned vi = 0, ve = Variables.getNumElements(); vi != ve; ++vi) {
    [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp 388 numElem = VTy->getNumElements();
394 numElem += VTy->getNumElements();
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
AbstractMapTester.java 160 return getNumElements();

Completed in 444 milliseconds

12 3 4 5 6