HomeSort by: relevance | last modified time | path
    Searched defs:ElementCount (Results 1 - 14 of 14) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundChecker.cpp 58 DefinedOrUnknownSVal ElementCount = getDynamicElementCount(
61 ProgramStateRef StInBound = state->assumeInBound(Idx, ElementCount, true);
62 ProgramStateRef StOutBound = state->assumeInBound(Idx, ElementCount, false);
UndefResultChecker.cpp 54 DefinedOrUnknownSVal ElementCount = getDynamicElementCount(
56 ProgramStateRef StInBound = state->assumeInBound(Idx, ElementCount, true);
57 ProgramStateRef StOutBound = state->assumeInBound(Idx, ElementCount, false);
CheckPlacementNew.cpp 82 SVal ElementCount = C.getSVal(SizeExpr);
83 if (auto ElementCountNL = ElementCount.getAs<NonLoc>()) {
ExprInspectionChecker.cpp 316 DefinedOrUnknownSVal ElementCount =
321 Out << ElementCount;
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
DynamicExtent.cpp 52 SVal ElementCount =
55 return ElementCount.castAs<DefinedOrUnknownSVal>();
ExprEngineCallAndReturn.cpp 699 SVal ElementCount;
701 ElementCount = State->getSVal(SizeExpr, LCtx);
703 ElementCount = svalBuilder.makeIntVal(1, /*IsUnsigned=*/true);
709 svalBuilder.evalBinOp(State, BO_Mul, ElementCount, ElementSize,
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
MPIChecker.cpp 164 DefinedOrUnknownSVal ElementCount = getDynamicElementCount(
168 ElementCount.getAs<nonloc::ConcreteInt>()->getValue();
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/Utils/
TFUtils.h 70 size_t getElementCount() const { return ElementCount; }
90 size_t ElementCount = 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
TypeSize.h 159 /// UnivariateLinearPolyBase is a base class for ElementCount and TypeSize.
255 // | +----- ElementCount - Leaf class to represent an element count
380 class ElementCount;
381 template <> struct LinearPolyBaseTypeTraits<ElementCount> {
386 class ElementCount : public LinearPolySize<ElementCount> {
388 ElementCount() : LinearPolySize(LinearPolySize::getNull()) {}
390 ElementCount(const LinearPolySize<ElementCount> &V) : LinearPolySize(V) {}
504 template <> struct DenseMapInfo<ElementCount> {
    [all...]
  /src/sys/external/bsd/acpica/dist/namespace/
nsrepair2.c 680 UINT32 ElementCount;
687 ElementCount = PackageObject->Package.Count;
691 for (Index = 0; Index < ElementCount; Index++, TopObjectList++)
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Core.cpp 704 unsigned ElementCount, LLVMBool Packed) {
705 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
710 unsigned ElementCount, LLVMBool Packed) {
712 ElementCount, Packed);
729 unsigned ElementCount, LLVMBool Packed) {
730 ArrayRef<Type*> Tys(unwrap(ElementTypes), ElementCount);
779 LLVMTypeRef LLVMArrayType(LLVMTypeRef ElementType, unsigned ElementCount) {
780 return wrap(ArrayType::get(unwrap(ElementType), ElementCount));
787 LLVMTypeRef LLVMVectorType(LLVMTypeRef ElementType, unsigned ElementCount) {
788 return wrap(FixedVectorType::get(unwrap(ElementType), ElementCount));
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.cpp 769 unsigned ElementCount = Info.EC.getKnownMinValue();
774 unsigned FixedSize = ElementCount * SEW;
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTContext.cpp 3743 {getIntTypeForBitwidth(BITS, SIGNED), llvm::ElementCount::getScalable(ELTS), \
3747 {ELTTY, llvm::ElementCount::getScalable(ELTS), NUMVECTORS};
3854 llvm::ElementCount::getScalable(NumEls), NF};
3858 llvm::ElementCount::getScalable(NumEls), NF};
3861 return {BoolTy, llvm::ElementCount::getScalable(NumEls), 1};
6217 uint64_t ElementCount = 1;
6219 ElementCount *= CA->getSize().getZExtValue();
6223 return ElementCount;
  /src/sys/external/bsd/acpica/dist/include/
actbl2.h 3235 UINT32 ElementCount;

Completed in 78 milliseconds