HomeSort by relevance Sort by last modified time
    Searched refs:ArraySize (Results 1 - 25 of 27) 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/openfst/src/extensions/ngram/
bitmap-index.cc 129 secondary_index_.reserve(ArraySize());
135 for (uint32 block_begin = 0; block_begin < ArraySize();
139 if (block_end > ArraySize()) block_end = ArraySize();
142 if (j == ArraySize() - 1) {
  /external/openfst/src/include/fst/extensions/ngram/
bitmap-index.h 66 size_t ArraySize() const {
165 return (ArraySize() + kSecondaryBlockSize - 1) / kSecondaryBlockSize;
  /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 = ArraySizeVal.castAs<DefinedOrUnknownSVal>();
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/Analysis/
MemoryBuiltins.cpp 230 Value *ArraySize = computeArraySize(CI, TD, TLI);
232 if (ConstantInt *ConstSize = dyn_cast_or_null<ConstantInt>(ArraySize))
457 Value *ArraySize = I.getArraySize();
458 if (const ConstantInt *C = dyn_cast<ConstantInt>(ArraySize)) {
694 Value *ArraySize = I.getArraySize();
695 Value *Size = ConstantInt::get(ArraySize->getType(),
697 Size = Builder.CreateMul(Size, ArraySize);
  /external/llvm/lib/IR/
Instructions.cpp 374 Value *ArraySize, Function *MallocF,
381 // malloc(type, arraySize) becomes:
382 // bitcast (i8 *malloc(typeSize*arraySize)) to type*
383 if (!ArraySize)
384 ArraySize = ConstantInt::get(IntPtrTy, 1);
385 else if (ArraySize->getType() != IntPtrTy) {
387 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false,
390 ArraySize = CastInst::CreateIntegerCast(ArraySize, IntPtrTy, false
    [all...]
  /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 308 unsigned ArraySize);
slang_rs_reflection.cpp     [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp     [all...]
  /external/llvm/include/llvm/IR/
Instructions.h 64 explicit AllocaInst(Type *Ty, Value *ArraySize = 0,
66 AllocaInst(Type *Ty, Value *ArraySize,
72 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
74 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align,
    [all...]
IRBuilder.h     [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 99 uint64_t &ArraySize, QualType &Type) {
107 ArraySize = CAT->getSize().getZExtValue();
112 ArraySize = 2;
116 ArraySize = 0;
120 ArraySize = 0;
    [all...]
  /external/clang/include/clang/AST/
Type.h     [all...]

Completed in 1235 milliseconds

1 2