/external/clang/test/Analysis/ |
D | test-variably-modified-types.c | 4 unsigned getArraySize(int *x) { in getArraySize() function 11 int mytype[getArraySize(x)]; in testVariablyModifiedTypes()
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
D | VariableInfo.cpp | 85 for (int i = 0; i < type.getArraySize(); ++i) { in getVariableInfo() 106 varInfo.size = type.getArraySize(); in getBuiltInVariableInfo()
|
D | Types.h | 184 totalSize *= std::max(getArraySize(), getMaxArraySize()); in getObjectSize() 193 int getArraySize() const { return arraySize; } in getArraySize() function
|
D | ParseHelper.cpp | 526 if (type->isArray() && type->getArraySize() != function.getParamCount()) { in constructorErrorCheck() 781 if (variable->getType().getArraySize() > 0) { in arrayErrorCheck() 1360 if (index >= node->getType().getArraySize()) { in addConstArrayNode()
|
D | OutputHLSL.cpp | 93 int arraySize = type.isArray() ? type.getArraySize() : 1; in vectorSize() 146 semanticIndex += type.isArray() ? type.getArraySize() : 1; in header() 1856 return "[" + str(type.getArraySize()) + "]"; in arrayString()
|
D | OutputGLSL.cpp | 45 out << "[" << type.getArraySize() << "]"; in arrayBrackets()
|
D | glslang.y | 249 if ($1->getType().getArraySize() == 0) { 257 … ( $3->getAsConstantUnion()->getUnionArrayPointer()->getIConst() >= $1->getType().getArraySize()) { 265 if ($1->isArray() && $1->getType().getArraySize() == 0) {
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXAllocaHoisting.cpp | 29 if (allocaInst && isa<ConstantInt>(allocaInst->getArraySize())) { in runOnFunction()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 177 if (AI.getArraySize()->getType() != IntPtrTy) { in visitAllocaInst() 178 Value *V = Builder->CreateIntCast(AI.getArraySize(), in visitAllocaInst() 187 if (const ConstantInt *C = dyn_cast<ConstantInt>(AI.getArraySize())) { in visitAllocaInst() 213 } else if (isa<UndefValue>(AI.getArraySize())) { in visitAllocaInst() 231 AI.setOperand(0, ConstantInt::get(AI.getArraySize()->getType(), 1)); in visitAllocaInst()
|
D | InstCombineCasts.cpp | 124 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale); in PromoteCastOfAllocation() 130 Value *Off = ConstantInt::get(AI.getArraySize()->getType(), in PromoteCastOfAllocation()
|
/external/javassist/src/main/javassist/compiler/ast/ |
D | NewExpr.java | 62 public ASTList getArraySize() { return getArguments(); } in getArraySize() method in NewExpr
|
/external/clang/lib/AST/ |
D | APValue.cpp | 160 MakeArray(RHS.getArrayInitializedElts(), RHS.getArraySize()); in APValue() 269 if (I != getArraySize() - 1) OS << ", "; in dump() 272 OS << getArraySize() - getArrayInitializedElts() << " x "; in dump()
|
/external/clang/include/clang/AST/ |
D | APValue.h | 274 return getArrayInitializedElts() != getArraySize(); in hasArrayFiller() 288 unsigned getArraySize() const { in getArraySize() function
|
/external/llvm/lib/Transforms/Scalar/ |
D | TailRecursionElimination.cpp | 143 !isa<ConstantInt>(AI->getArraySize())) in CheckForEscapingAllocas() 490 if (isa<ConstantInt>(AI->getArraySize())) in EliminateRecursiveTailCall()
|
D | MemCpyOptimizer.cpp | 589 ConstantInt *srcArraySize = dyn_cast<ConstantInt>(srcAlloca->getArraySize()); in performCallSlotOptzn() 604 ConstantInt *destArraySize = dyn_cast<ConstantInt>(A->getArraySize()); in performCallSlotOptzn()
|
/external/llvm/lib/CodeGen/ |
D | SjLjEHPrepare.cpp | 242 isa<ConstantInt>(cast<AllocaInst>(AfterAllocaInsPt)->getArraySize())) in lowerIncomingArguments() 302 if (isa<ConstantInt>(AI->getArraySize()) && BB == F.begin()) in lowerAcrossUnwindEdges()
|
/external/llvm/lib/Transforms/Utils/ |
D | CloneFunction.cpp | 57 if (isa<ConstantInt>(AI->getArraySize())) in CloneBasicBlock() 290 if (isa<ConstantInt>(AI->getArraySize())) in CloneBlock()
|
D | LowerInvoke.cpp | 289 isa<ConstantInt>(cast<AllocaInst>(AfterAllocaInsertPt)->getArraySize())) in splitLiveRangesLiveAcrossInvokes() 337 if (isa<ConstantInt>(AI->getArraySize()) && BB == F->begin()) in splitLiveRangesLiveAcrossInvokes()
|
D | InlineFunction.cpp | 636 if (!isa<Constant>(AI->getArraySize())) in InlineFunction() 645 isa<Constant>(cast<AllocaInst>(I)->getArraySize())) { in InlineFunction()
|
/external/llvm/lib/Analysis/ |
D | MemoryBuiltins.cpp | 426 Value *ArraySize = I.getArraySize(); in visitAllocaInst() 645 Value *ArraySize = I.getArraySize(); in visitAllocaInst()
|
D | Lint.cpp | 504 if (isa<ConstantInt>(I.getArraySize())) in visitAllocaInst()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FunctionLoweringInfo.cpp | 81 if (const ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) { in set()
|
/external/clang/lib/CodeGen/ |
D | CGExprCXX.cpp | 571 numElements = CGF.EmitScalarExpr(e->getArraySize()); in EmitCXXNewAllocSize() 581 = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType(); in EmitCXXNewAllocSize()
|
/external/javassist/src/main/javassist/compiler/ |
D | TypeChecker.java | 157 ASTList size = expr.getArraySize(); in atNewArrayExpr()
|
D | MemberCodeGen.java | 312 ASTList size = expr.getArraySize(); in atNewArrayExpr()
|