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

1 2

  /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/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/clang/lib/StaticAnalyzer/Checkers/
VLASizeChecker.cpp 148 DefinedOrUnknownSVal ArraySize = cast<DefinedOrUnknownSVal>(ArraySizeVal);
150 svalBuilder.evalEQ(state, Extent, ArraySize);
  /external/clang/lib/Sema/
SemaType.cpp     [all...]
SemaExprCXX.cpp     [all...]
TreeTransform.h     [all...]
  /external/llvm/lib/Support/
SmallPtrSet.cpp 107 unsigned ArraySize = CurArraySize;
128 Bucket = (Bucket + ProbeAmt++) & (ArraySize-1);
  /external/llvm/lib/VMCore/
Instructions.cpp 356 Value *ArraySize, Function *MallocF,
363 // malloc(type, arraySize) becomes:
364 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
365 if (!ArraySize)
366 ArraySize = ConstantInt::get(IntPtrTy, 1);
367 else if (ArraySize->getType() != IntPtrTy) {
369 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
372 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));
  /external/sqlite/dist/orig/
shell.c 470 #define ArraySize(X) (int)(sizeof(X)/sizeof(X[0]))
693 if( i<ArraySize(p->colWidth) ){
704 if( i<ArraySize(p->actualWidth) ){
714 if( i<ArraySize(p->actualWidth) ){
728 if( i<ArraySize(p->actualWidth) ){
    [all...]
sqlite3.c     [all...]
  /external/sqlite/dist/
shell.c 475 #define ArraySize(X) (int)(sizeof(X)/sizeof(X[0]))
698 if( i<ArraySize(p->colWidth) ){
709 if( i<ArraySize(p->actualWidth) ){
719 if( i<ArraySize(p->actualWidth) ){
733 if( i<ArraySize(p->actualWidth) ){
    [all...]
sqlite3.c     [all...]
  /frameworks/compile/slang/
slang_rs_reflection.h 292 unsigned ArraySize);
slang_rs_reflection.cpp     [all...]
  /external/llvm/include/llvm/
Instructions.h 61 explicit AllocaInst(Type *Ty, Value *ArraySize = 0,
63 AllocaInst(Type *Ty, Value *ArraySize,
69 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
71 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
    [all...]
  /external/llvm/include/llvm/Support/
IRBuilder.h 780 AllocaInst *CreateAlloca(Type *Ty, Value *ArraySize = 0,
782 return Insert(new AllocaInst(Ty, ArraySize), Name);
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 98 uint64_t &ArraySize, QualType &Type) {
106 ArraySize = CAT->getSize().getZExtValue();
111 ArraySize = 2;
115 ArraySize = 0;
119 ArraySize = 0;
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 894 Expr *ArraySize, unsigned Quals,
896 QualType BuildExtVectorType(QualType T, Expr *ArraySize
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]
  /external/clang/lib/CodeGen/
TargetInfo.cpp     [all...]

Completed in 1063 milliseconds

1 2