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

1 2

  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p9.cpp 10 const unsigned NumElements = 17;
14 int array[NumElements];
  /external/llvm/runtime/libprofile/
EdgeProfiling.c 20 static unsigned NumElements;
31 write_profiling_data(EdgeInfo, ArrayStart, NumElements);
39 unsigned *arrayStart, unsigned numElements) {
42 NumElements = numElements;
OptimalEdgeProfiling.c 20 static unsigned NumElements;
31 write_profiling_data(OptEdgeInfo, ArrayStart, NumElements);
39 unsigned *arrayStart, unsigned numElements) {
42 NumElements = numElements;
  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundChecker.cpp 57 DefinedOrUnknownSVal NumElements
61 ProgramStateRef StInBound = state->assumeInBound(Idx, NumElements, true);
62 ProgramStateRef StOutBound = state->assumeInBound(Idx, NumElements, false);
  /external/ceres-solver/include/ceres/
ordered_groups.h 153 int NumElements() const {
  /external/llvm/lib/Transforms/Instrumentation/
ProfilingUtils.cpp 52 unsigned NumElements = 0;
55 NumElements =
62 Args[3] = ConstantInt::get(Type::getInt32Ty(Context), NumElements);
  /external/llvm/include/llvm/ADT/
SmallPtrSet.h 60 unsigned NumElements;
75 unsigned size() const { return NumElements; }
80 if (!isSmall() && NumElements*4 < CurArraySize && CurArraySize > 32)
85 NumElements = 0;
112 *const *E = SmallArray+NumElements; APtr != E; ++APtr)
  /external/llvm/utils/TableGen/
TGValueTypes.cpp 61 unsigned NumElements;
64 : Type(TK_ExtendedVectorType), ElementType(elty), NumElements(num) {}
75 return NumElements;
  /external/llvm/include/llvm/IR/
DataLayout.h 410 unsigned NumElements;
432 assert(Idx < NumElements && "Invalid element idx!");
DerivedTypes.h 333 uint64_t NumElements;
342 static ArrayType *get(Type *ElementType, uint64_t NumElements);
348 uint64_t getNumElements() const { return NumElements; }
359 unsigned NumElements;
368 static VectorType *get(Type *ElementType, unsigned NumElements);
408 unsigned getNumElements() const { return NumElements; }
413 return NumElements * getElementType()->getPrimitiveSizeInBits();
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp     [all...]
LegalizeTypesGeneric.cpp 494 unsigned NumElements = Cond.getValueType().getVectorNumElements();
495 EVT VCondTy = EVT::getVectorVT(*DAG.getContext(), MVT::i1, NumElements / 2);
499 DAG.getConstant(NumElements / 2, TLI.getVectorIdxTy()));
  /frameworks/compile/slang/
slang_rs_reflection_cpp.cpp 889 unsigned NumElements =
892 for (unsigned i = 0; i < NumElements; i++) {
slang_rs_reflection.cpp 493 unsigned NumElements =
496 for (unsigned i = 0; i < NumElements; i++) {
    [all...]
  /external/llvm/lib/IR/
Type.cpp 101 unsigned NumElements = ATy->getNumElements();
102 return NumElements == 0 || ATy->getElementType()->isEmptyTy();
107 unsigned NumElements = STy->getNumElements();
108 for (unsigned i = 0; i < NumElements; ++i)
433 unsigned NumElements = Elements.size();
434 Type **Elts = getContext().pImpl->TypeAllocator.Allocate<Type*>(NumElements);
435 memcpy(Elts, Elements.data(), sizeof(Elements[0]) * NumElements);
438 NumContainedTys = NumElements;
680 NumElements = NumEl;
683 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) {
    [all...]
  /external/llvm/lib/Linker/
LinkModules.cpp     [all...]
  /external/llvm/lib/Target/R600/
R600ISelLowering.cpp     [all...]
SIISelLowering.cpp 173 unsigned NumElements = ParamType->getVectorNumElements();
175 for (unsigned j = 0; j != NumElements; ++j) {
246 unsigned NumElements = ParamType->getVectorNumElements();
250 for (unsigned j = 1; j != NumElements; ++j) {
257 NumElements = Arg.VT.getVectorNumElements() - NumElements;
258 for (unsigned j = 0; j != NumElements; ++j)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 117 Value *NumElements = // See if the array size is a decomposable linear expr.
128 Amt = NumElements;
132 Amt = AllocaBuilder.CreateMul(Amt, NumElements);
    [all...]
  /external/clang/include/clang/AST/
ExprObjC.h 134 unsigned NumElements;
142 explicit ObjCArrayLiteral(EmptyShell Empty, unsigned NumElements)
143 : Expr(ObjCArrayLiteralClass, Empty), NumElements(NumElements) {}
151 static ObjCArrayLiteral *CreateEmpty(ASTContext &C, unsigned NumElements);
170 unsigned getNumElements() const { return NumElements; }
174 assert((Index < NumElements) && "Arg access out of range!");
178 assert((Index < NumElements) && "Arg access out of range!");
189 (Stmt **)getElements() + NumElements);
245 unsigned NumElements : 31
    [all...]
  /external/clang/lib/AST/
RecordLayoutBuilder.cpp 417 uint64_t NumElements = Context.getConstantArrayElementCount(AT);
419 for (uint64_t I = 0; I != NumElements; ++I) {
519 uint64_t NumElements = Context.getConstantArrayElementCount(AT);
522 for (uint64_t I = 0; I != NumElements; ++I) {
    [all...]
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 555 llvm::Value *&numElements,
574 // We multiply the size of all dimensions for NumElements.
575 // e.g for 'int[2][3]', ElemType is 'int' and NumElements is 6.
576 numElements = CGF.EmitScalarExpr(e->getArraySize());
577 assert(isa<llvm::IntegerType>(numElements->getType()));
588 = cast<llvm::IntegerType>(numElements->getType());
609 dyn_cast<llvm::ConstantInt>(numElements)) {
618 // We want to do all this arithmetic in size_t. If numElements is
633 // Scale numElements by that. This might overflow, but we don't
636 numElements = llvm::ConstantInt::get(CGF.SizeTy
    [all...]
CGExprConstant.cpp 749 unsigned NumElements = AType->getNumElements();
753 unsigned NumInitableElts = std::min(NumInitElements, NumElements);
757 Elts.reserve(NumInitableElts + NumElements);
779 Elts.resize(NumElements, fillC);
784 Types.reserve(NumInitableElts + NumElements);
    [all...]
CGClass.cpp 496 uint64_t NumElements = Array->getSize().getZExtValue();
499 llvm::ConstantInt::get(Counter->getType(), NumElements);
    [all...]
CGObjC.cpp 98 uint64_t NumElements =
101 NumElements);
121 for (uint64_t i = 0; i < NumElements; i++) {
174 llvm::ConstantInt::get(CGM.getTypes().ConvertType(ArgQT), NumElements);
    [all...]

Completed in 290 milliseconds

1 2