| /external/llvm/runtime/libprofile/ |
| BasicBlockTracing.c | 53 unsigned ArraySize; 58 ArraySize = BufferSize / sizeof (unsigned); 59 ArrayStart = malloc (ArraySize * sizeof (unsigned)); 60 ArrayEnd = ArrayStart + ArraySize;
|
| /external/llvm/lib/Analysis/ |
| MemoryBuiltins.cpp | 121 Value *ArraySize = computeArraySize(CI, TD); 123 if (ArraySize && 124 ArraySize != ConstantInt::get(CI->getArgOperand(0)->getType(), 1))
|
| /external/clang/lib/StaticAnalyzer/Checkers/ |
| VLASizeChecker.cpp | 123 DefinedOrUnknownSVal ArraySize = cast<DefinedOrUnknownSVal>(ArraySizeVal); 125 svalBuilder.evalEQ(state, Extent, ArraySize);
|
| /external/chromium/net/disk_cache/ |
| bitmap.h | 40 int ArraySize() const { return array_size_; } 56 // ArraySize(); 60 // ArraySize()
|
| bitmap_unittest.cc | 11 EXPECT_EQ(1, map32.ArraySize()); 14 EXPECT_EQ(2, map64.ArraySize()); 21 EXPECT_EQ(0, map.ArraySize()); 31 EXPECT_EQ(3, bitmap.ArraySize());
|
| sparse_control.cc | 546 int len = children_map_.ArraySize() * 4;
|
| /external/webkit/Source/JavaScriptCore/wtf/ |
| FastAllocBase.h | 216 union ArraySize { 260 ArraySize<T> a = { static_cast<AllocAlignmentInteger*>(p) }; 280 ArraySize<T> a = { static_cast<AllocAlignmentInteger*>(p) }; 346 ArraySize<T> a; 395 ArraySize<T> a;
|
| /external/llvm/lib/Support/ |
| SmallPtrSet.cpp | 105 unsigned ArraySize = CurArraySize; 126 Bucket = (Bucket + ProbeAmt++) & (ArraySize-1);
|
| /external/clang/lib/Sema/ |
| SemaType.cpp | [all...] |
| SemaExprCXX.cpp | [all...] |
| TreeTransform.h | [all...] |
| SemaDeclCXX.cpp | [all...] |
| /external/llvm/lib/VMCore/ |
| Instructions.cpp | 274 Value *ArraySize, Function *MallocF, 281 // malloc(type, arraySize) becomes: 282 // bitcast (i8 *malloc(typeSize*arraySize)) to type* 283 if (!ArraySize) 284 ArraySize = ConstantInt::get(IntPtrTy, 1); 285 else if (ArraySize->getType() != IntPtrTy) { 287 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false, 290 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false [all...] |
| /external/llvm/lib/Transforms/Scalar/ |
| LoopIdiomRecognize.cpp | 431 unsigned ArraySize = 16/Size; 432 ArrayType *AT = ArrayType::get(V->getType(), ArraySize); 433 return ConstantArray::get(AT, std::vector<Constant*>(ArraySize, C));
|
| /frameworks/compile/slang/ |
| slang_rs_reflection.h | 279 unsigned ArraySize);
|
| slang_rs_reflection.cpp | [all...] |
| /external/llvm/include/llvm/ |
| Instructions.h | 44 explicit AllocaInst(Type *Ty, Value *ArraySize = 0, 46 AllocaInst(Type *Ty, Value *ArraySize, 52 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, 54 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, [all...] |
| /external/sqlite/dist/ |
| shell.c.orig | 450 #define ArraySize(X) (int)(sizeof(X)/sizeof(X[0])) 674 if( i<ArraySize(p->colWidth) ){ 685 if( i<ArraySize(p->actualWidth) ){ 695 if( i<ArraySize(p->actualWidth) ){ 709 if( i<ArraySize(p->actualWidth) ){ [all...] |
| shell.c | 455 #define ArraySize(X) (int)(sizeof(X)/sizeof(X[0])) 679 if( i<ArraySize(p->colWidth) ){ 690 if( i<ArraySize(p->actualWidth) ){ 700 if( i<ArraySize(p->actualWidth) ){ 714 if( i<ArraySize(p->actualWidth) ){ [all...] |
| sqlite3.c | [all...] |
| sqlite3.c.orig | [all...] |
| /external/llvm/include/llvm/Support/ |
| IRBuilder.h | 747 AllocaInst *CreateAlloca(Type *Ty, Value *ArraySize = 0, 749 return Insert(new AllocaInst(Ty, ArraySize), Name); [all...] |
| /external/clang/include/clang/Sema/ |
| Sema.h | 772 Expr *ArraySize, unsigned Quals, 774 QualType BuildExtVectorType(QualType T, Expr *ArraySize, [all...] |
| /external/clang/include/clang/AST/ |
| Type.h | [all...] |
| /external/clang/lib/CodeGen/ |
| TargetInfo.cpp | [all...] |