HomeSort by relevance Sort by last modified time
    Searched refs:getArraySize (Results 1 - 25 of 34) sorted by null

1 2

  /external/javassist/src/main/javassist/compiler/ast/
NewExpr.java 62 public ASTList getArraySize() { return getArguments(); }
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
VariableInfo.cpp 85 for (int i = 0; i < type.getArraySize(); ++i) {
106 varInfo.size = type.getArraySize();
Types.h 184 totalSize *= std::max(getArraySize(), getMaxArraySize());
193 int getArraySize() const { return arraySize; }
ParseHelper.cpp 526 if (type->isArray() && type->getArraySize() != function.getParamCount()) {
781 if (variable->getType().getArraySize() > 0) {
    [all...]
OutputHLSL.cpp 93 int arraySize = type.isArray() ? type.getArraySize() : 1;
146 semanticIndex += type.isArray() ? type.getArraySize() : 1;
    [all...]
OutputGLSL.cpp 45 out << "[" << type.getArraySize() << "]";
glslang.y 249 if ($1->getType().getArraySize() == 0) {
257 } else if ( $3->getAsConstantUnion()->getUnionArrayPointer()->getIConst() >= $1->getType().getArraySize()) {
265 if ($1->isArray() && $1->getType().getArraySize() == 0) {
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineLoadStoreAlloca.cpp 30 if (AI.getArraySize()->getType() != IntPtrTy) {
31 Value *V = Builder->CreateIntCast(AI.getArraySize(),
40 if (const ConstantInt *C = dyn_cast<ConstantInt>(AI.getArraySize())) {
67 } else if (isa<UndefValue>(AI.getArraySize())) {
InstCombineCasts.cpp 123 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale);
129 Value *Off = ConstantInt::get(AI.getArraySize()->getType(),
    [all...]
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 143 !isa<ConstantInt>(AI->getArraySize()))
490 if (isa<ConstantInt>(AI->getArraySize()))
MemCpyOptimizer.cpp 589 ConstantInt *srcArraySize = dyn_cast<ConstantInt>(srcAlloca->getArraySize());
604 ConstantInt *destArraySize = dyn_cast<ConstantInt>(A->getArraySize());
    [all...]
DeadStoreElimination.cpp 263 if (ConstantInt *C = dyn_cast<ConstantInt>(A->getArraySize()))
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 54 if (isa<ConstantInt>(AI->getArraySize()))
248 if (isa<ConstantInt>(AI->getArraySize()))
LowerInvoke.cpp 304 isa<ConstantInt>(cast<AllocaInst>(AfterAllocaInsertPt)->getArraySize()))
352 if (isa<ConstantInt>(AI->getArraySize()) && BB == F->begin())
InlineFunction.cpp     [all...]
  /external/llvm/lib/CodeGen/
SjLjEHPrepare.cpp 268 isa<ConstantInt>(cast<AllocaInst>(AfterAllocaInsertPt)->getArraySize()))
316 if (isa<ConstantInt>(AI->getArraySize()) && BB == F->begin())
    [all...]
  /frameworks/base/core/java/android/content/res/
AssetManager.java 704 /*package*/ native final int getArraySize(int resource);
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 80 if (const ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
  /external/clang/lib/CodeGen/
CGExprCXX.cpp 532 numElements = CGF.EmitScalarExpr(e->getArraySize());
542 = e->getArraySize()->getType()->isSignedIntegerOrEnumerationType();
    [all...]
  /external/javassist/src/main/javassist/compiler/
MemberCodeGen.java 312 ASTList size = expr.getArraySize();
    [all...]
TypeChecker.java 157 ASTList size = expr.getArraySize();
    [all...]
  /external/llvm/lib/Analysis/
Lint.cpp 501 if (isa<ConstantInt>(I.getArraySize()))
  /external/clang/include/clang/AST/
ExprCXX.h     [all...]
  /external/llvm/include/llvm/
Instructions.h 82 /// getArraySize - Get the number of elements allocated. For a simple
85 const Value *getArraySize() const { return getOperand(0); }
86 Value *getArraySize() { return getOperand(0); }
    [all...]
  /external/llvm/lib/VMCore/
AsmWriter.cpp     [all...]

Completed in 2888 milliseconds

1 2