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

1 2

  /external/clang/test/Analysis/
test-variably-modified-types.c 4 unsigned getArraySize(int *x) {
11 int mytype[getArraySize(x)];
  /external/llvm/lib/Target/NVPTX/
NVPTXAllocaHoisting.cpp 29 if (allocaInst && isa<ConstantInt>(allocaInst->getArraySize())) {
  /frameworks/compile/slang/
slang_rs_export_var.h 60 inline size_t getArraySize() const { return mArraySize; }
  /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 158 if (AI.getArraySize()->getType() != IntPtrTy) {
159 Value *V = Builder->CreateIntCast(AI.getArraySize(),
168 if (const ConstantInt *C = dyn_cast<ConstantInt>(AI.getArraySize())) {
194 } else if (isa<UndefValue>(AI.getArraySize())) {
212 AI.setOperand(0, ConstantInt::get(AI.getArraySize()->getType(), 1));
InstCombineCasts.cpp 130 Amt = ConstantInt::get(AI.getArraySize()->getType(), Scale);
136 Value *Off = ConstantInt::get(AI.getArraySize()->getType(),
    [all...]
  /external/clang/lib/AST/
APValue.cpp 160 MakeArray(RHS.getArrayInitializedElts(), RHS.getArraySize());
269 if (I != getArraySize() - 1) OS << ", ";
272 OS << getArraySize() - getArrayInitializedElts() << " x ";
  /external/clang/include/clang/AST/
APValue.h 274 return getArrayInitializedElts() != getArraySize();
288 unsigned getArraySize() const {
  /external/llvm/lib/Transforms/Scalar/
TailRecursionElimination.cpp 155 !isa<ConstantInt>(AI->getArraySize()))
504 if (isa<ConstantInt>(AI->getArraySize()))
MemCpyOptimizer.cpp 598 ConstantInt *srcArraySize = dyn_cast<ConstantInt>(srcAlloca->getArraySize());
613 ConstantInt *destArraySize = dyn_cast<ConstantInt>(A->getArraySize());
    [all...]
  /external/llvm/lib/CodeGen/
StackProtector.cpp 228 dyn_cast<ConstantInt>(AI->getArraySize())) {
SjLjEHPrepare.cpp 242 isa<ConstantInt>(cast<AllocaInst>(AfterAllocaInsPt)->getArraySize()))
302 if (isa<ConstantInt>(AI->getArraySize()) && BB == F.begin())
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 57 if (isa<ConstantInt>(AI->getArraySize()))
292 if (isa<ConstantInt>(AI->getArraySize()))
LowerInvoke.cpp 289 isa<ConstantInt>(cast<AllocaInst>(AfterAllocaInsertPt)->getArraySize()))
337 if (isa<ConstantInt>(AI->getArraySize()) && BB == F->begin())
InlineFunction.cpp 636 if (!isa<Constant>(AI->getArraySize()))
645 isa<Constant>(cast<AllocaInst>(I)->getArraySize())) {
674 dyn_cast<ConstantInt>(AI->getArraySize())) {
    [all...]
  /frameworks/base/core/java/android/content/res/
AssetManager.java 710 /*package*/ native final int getArraySize(int resource);
  /external/llvm/lib/Analysis/
MemoryBuiltins.cpp 457 Value *ArraySize = I.getArraySize();
694 Value *ArraySize = I.getArraySize();
  /external/llvm/lib/CodeGen/SelectionDAG/
FunctionLoweringInfo.cpp 80 if (const ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
  /external/javassist/src/main/javassist/compiler/
MemberCodeGen.java 312 ASTList size = expr.getArraySize();
    [all...]

Completed in 663 milliseconds

1 2