HomeSort by: relevance | last modified time | path
    Searched refs:EltCount (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
echo.cpp 121 unsigned EltCount = LLVMCountStructElementTypes(Src);
123 for (unsigned i = 0; i < EltCount; i++)
126 LLVMStructSetBody(S, Elts.data(), EltCount, LLVMIsPackedStruct(Src));
128 S = LLVMStructTypeInContext(Ctx, Elts.data(), EltCount,
304 unsigned EltCount = LLVMGetArrayLength(Ty);
306 for (unsigned i = 0; i < EltCount; i++)
308 return LLVMConstArray(LLVMGetElementType(Ty), Elts.data(), EltCount);
315 unsigned EltCount = LLVMGetArrayLength(Ty);
317 for (unsigned i = 0; i < EltCount; i++)
319 return LLVMConstArray(LLVMGetElementType(Ty), Elts.data(), EltCount);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
FoldingSet.cpp 314 void FoldingSetBase::reserve(unsigned EltCount, const FoldingSetInfo &Info) {
315 // This will give us somewhere between EltCount / 2 and
316 // EltCount buckets. This puts us in the load factor
318 if(EltCount < capacity())
320 GrowBucketCount(PowerOf2Floor(EltCount), Info);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
FoldingSet.h 199 /// EltCount-th node won't cause a rebucket operation. reserve is permitted
200 /// to allocate more space than requested by EltCount.
201 void reserve(unsigned EltCount, const FoldingSetInfo &Info);
439 /// EltCount-th node won't cause a rebucket operation. reserve is permitted
440 /// to allocate more space than requested by EltCount.
441 void reserve(unsigned EltCount) {
442 return FoldingSetBase::reserve(EltCount, Derived::getFoldingSetInfo());
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Constants.cpp 2445 auto EltCount = ElementCount::getFixed(0);
2447 EltCount = VecTy->getElementCount();
2451 EltCount = VecTy->getElementCount();
2453 if (EltCount.isNonZero())
2454 ReqTy = VectorType::get(ReqTy, EltCount);
2468 cast<VectorType>(Idx->getType())->getElementCount() == EltCount) &&
2473 } else if (GTI.isSequential() && EltCount.isNonZero() &&
2475 Idx = ConstantVector::getSplat(EltCount, Idx);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
Instructions.h 1091 ElementCount EltCount = PtrVTy->getElementCount();
1092 return VectorType::get(PtrTy, EltCount);
1096 ElementCount EltCount = IndexVTy->getElementCount();
1097 return VectorType::get(PtrTy, EltCount);
  /src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86ISelLowering.cpp 22074 APInt EltCount = APInt::getNullValue(NumElts);
22075 M = SrcOpMap.insert(std::make_pair(Src, EltCount)).first;
    [all...]

Completed in 44 milliseconds