Searched defs:ArraySize (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/net/disk_cache/blockfile/
H A Dbitmap.h40 int ArraySize() const { return array_size_; } function in class:disk_cache::Bitmap
56 // ArraySize();
60 // ArraySize()
/external/clang/lib/StaticAnalyzer/Checkers/
H A DVLASizeChecker.cpp149 DefinedOrUnknownSVal ArraySize = ArraySizeVal.castAs<DefinedOrUnknownSVal>(); local
151 svalBuilder.evalEQ(state, Extent, ArraySize);
/external/openfst/src/include/fst/extensions/ngram/
H A Dbitmap-index.h66 size_t ArraySize() const { function in class:fst::BitmapIndex
165 return (ArraySize() + kSecondaryBlockSize - 1) / kSecondaryBlockSize;
/external/llvm/lib/Analysis/
H A DMemoryBuiltins.cpp242 Value *ArraySize = computeArraySize(CI, DL, TLI); local
244 if (ConstantInt *ConstSize = dyn_cast_or_null<ConstantInt>(ArraySize))
452 Value *ArraySize = I.getArraySize();
453 if (const ConstantInt *C = dyn_cast<ConstantInt>(ArraySize)) {
684 Value *ArraySize = I.getArraySize(); local
685 Value *Size = ConstantInt::get(ArraySize->getType(),
687 Size = Builder.CreateMul(Size, ArraySize);
/external/llvm/lib/Transforms/Scalar/
H A DLoopIdiomRecognize.cpp934 unsigned ArraySize = 16/Size; local
935 ArrayType *AT = ArrayType::get(V->getType(), ArraySize);
936 return ConstantArray::get(AT, std::vector<Constant*>(ArraySize, C));
/external/chromium_org/third_party/sqlite/src/src/
H A Dshell.c452 #define ArraySize(X) (int)(sizeof(X)/sizeof(X[0])) macro
676 if( i<ArraySize(p->colWidth) ){
687 if( i<ArraySize(p->actualWidth) ){
697 if( i<ArraySize(p->actualWidth) ){
711 if( i<ArraySize(p->actualWidth) ){
1464 while( zLine[i] && nArg<ArraySize(azArg) ){
1626 memset(p->colWidth,0,ArraySize(p->colWidth));
1917 "%.*s", (int)ArraySize(p->nullvalue)-1, azArg[1]);
1941 strncpy(mainPrompt,azArg[1],(int)ArraySize(mainPrompt)-1);
1944 strncpy(continuePrompt,azArg[2],(int)ArraySize(continuePromp
[all...]
H A DsqliteInt.h541 #define ArraySize(X) ((int)(sizeof(X)/sizeof(X[0]))) macro
/external/clang/lib/AST/
H A DExprConstant.cpp117 uint64_t &ArraySize, QualType &Type) {
125 ArraySize = CAT->getSize().getZExtValue();
130 ArraySize = 2;
134 ArraySize = 0;
138 ArraySize = 0;
115 findMostDerivedSubobject(ASTContext &Ctx, QualType Base, ArrayRef<APValue::LValuePathEntry> Path, uint64_t &ArraySize, QualType &Type) argument
/external/llvm/lib/IR/
H A DInstructions.cpp374 Value *ArraySize, Function *MallocF,
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,
394 if (!IsConstantOne(ArraySize)) {
396 AllocSize = ArraySize; // Operan
371 createMalloc(Instruction *InsertBefore, BasicBlock *InsertAtEnd, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function *MallocF, const Twine &Name) argument
456 CreateMalloc(Instruction *InsertBefore, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function * MallocF, const Twine &Name) argument
473 CreateMalloc(BasicBlock *InsertAtEnd, Type *IntPtrTy, Type *AllocTy, Value *AllocSize, Value *ArraySize, Function *MallocF, const Twine &Name) argument
834 AllocaInst(Type *Ty, Value *ArraySize, const Twine &Name, Instruction *InsertBefore) argument
843 AllocaInst(Type *Ty, Value *ArraySize, const Twine &Name, BasicBlock *InsertAtEnd) argument
870 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, const Twine &Name, Instruction *InsertBefore) argument
879 AllocaInst(Type *Ty, Value *ArraySize, unsigned Align, const Twine &Name, BasicBlock *InsertAtEnd) argument
[all...]
/external/clang/lib/Sema/
H A DSemaExprCXX.cpp1058 Expr *ArraySize = nullptr; local
1073 ArraySize = static_cast<Expr*>(Chunk.Arr.NumElts);
1078 if (ArraySize) {
1126 ArraySize,
1159 Expr *ArraySize,
1224 if (!ArraySize) {
1227 ArraySize = IntegerLiteral::Create(Context, Array->getSize(),
1254 if (ArraySize && ArraySize->getType()->isNonOverloadPlaceholderType()) {
1255 ExprResult result = CheckPlaceholderExpr(ArraySize);
1152 BuildCXXNew(SourceRange Range, bool UseGlobal, SourceLocation PlacementLParen, MultiExprArg PlacementArgs, SourceLocation PlacementRParen, SourceRange TypeIdParens, QualType AllocType, TypeSourceInfo *AllocTypeInfo, Expr *ArraySize, SourceRange DirectInitRange, Expr *Initializer, bool TypeMayContainAuto) argument
1282 Expr *ArraySize; member in class:SizeConvertDiagnoser
1285 SizeConvertDiagnoser(Expr *ArraySize) argument
[all...]
H A DSemaType.cpp1467 static bool isArraySizeVLA(Sema &S, Expr *ArraySize, llvm::APSInt &SizeVal) { argument
1482 return S.VerifyIntegerConstantExpression(ArraySize, &SizeVal, Diagnoser,
1493 /// \param ArraySize Expression describing the size of the array.
1503 Expr *ArraySize, unsigned Quals,
1566 if (ArraySize && ArraySize->hasPlaceholderType()) {
1567 ExprResult Result = CheckPlaceholderExpr(ArraySize);
1569 ArraySize = Result.get();
1573 if (ArraySize && !ArraySize
1502 BuildArrayType(QualType T, ArrayType::ArraySizeModifier ASM, Expr *ArraySize, unsigned Quals, SourceRange Brackets, DeclarationName Entity) argument
1700 BuildExtVectorType(QualType T, Expr *ArraySize, SourceLocation AttrLoc) argument
2610 Expr *ArraySize = static_cast<Expr*>(ATI.NumElts); local
[all...]
H A DTreeTransform.h2270 Expr *ArraySize,
2280 ArraySize,
7946 ExprResult ArraySize = getDerived().TransformExpr(E->getArraySize());
7947 if (ArraySize.isInvalid())
7987 ArraySize.get() == E->getArraySize() &&
8014 if (!ArraySize.get()) {
8025 ArraySize = IntegerLiteral::Create(SemaRef.Context, ConsArrayT->getSize(),
8032 ArraySize = DepArrayT->getSizeExpr();
8046 ArraySize.get(),
9827 IntegerLiteral *ArraySize local
2262 RebuildCXXNewExpr(SourceLocation StartLoc, bool UseGlobal, SourceLocation PlacementLParen, MultiExprArg PlacementArgs, SourceLocation PlacementRParen, SourceRange TypeIdParens, QualType AllocatedType, TypeSourceInfo *AllocatedTypeInfo, Expr *ArraySize, SourceRange DirectInitRange, Expr *Initializer) argument
[all...]
/external/sqlite/dist/orig/
H A Dshell.c509 #define ArraySize(X) (int)(sizeof(X)/sizeof(X[0])) macro
738 if( i<ArraySize(p->colWidth) ){
749 if( i<ArraySize(p->actualWidth) ){
763 if( i<ArraySize(p->actualWidth) ){
778 if( i<ArraySize(p->actualWidth) ){
1833 for(i=0; i<ArraySize(aMult); i++){
2254 while( zLine[i] && nArg<ArraySize(azArg) ){
2848 "%.*s", (int)ArraySize(p->nullvalue)-1, azArg[1]);
2929 strncpy(mainPrompt,azArg[1],(int)ArraySize(mainPrompt)-1);
2932 strncpy(continuePrompt,azArg[2],(int)ArraySize(continuePromp
[all...]
H A Dsqlite3.c8715 #define ArraySize(X) ((int)(sizeof(X)/sizeof(X[0]))) macro
13815 /* Since ArraySize(azCompileOpt) is normally in single digits, a
13817 for(i=0; i<ArraySize(azCompileOpt); i++){
13832 if( N>=0 && N<ArraySize(azCompileOpt) ){
14378 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
14388 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
14400 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
14416 if( op<0 || op>=ArraySize(wsdStat.nowValue) ){
15153 for(n=0; n<ArraySize(zBuf)-1 && zMod[n]; n++){
15728 for(i=0; i<ArraySize(aDateTimeFunc
[all...]
/external/sqlite/dist/
H A Dshell.c514 #define ArraySize(X) (int)(sizeof(X)/sizeof(X[0])) macro
743 if( i<ArraySize(p->colWidth) ){
754 if( i<ArraySize(p->actualWidth) ){
768 if( i<ArraySize(p->actualWidth) ){
783 if( i<ArraySize(p->actualWidth) ){
1853 for(i=0; i<ArraySize(aMult); i++){
2274 while( zLine[i] && nArg<ArraySize(azArg) ){
2868 "%.*s", (int)ArraySize(p->nullvalue)-1, azArg[1]);
2949 strncpy(mainPrompt,azArg[1],(int)ArraySize(mainPrompt)-1);
2952 strncpy(continuePrompt,azArg[2],(int)ArraySize(continuePromp
[all...]
H A Dsqlite3.c8715 #define ArraySize(X) ((int)(sizeof(X)/sizeof(X[0]))) macro
13815 /* Since ArraySize(azCompileOpt) is normally in single digits, a
13817 for(i=0; i<ArraySize(azCompileOpt); i++){
13832 if( N>=0 && N<ArraySize(azCompileOpt) ){
14378 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
14388 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
14400 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
14416 if( op<0 || op>=ArraySize(wsdStat.nowValue) ){
15153 for(n=0; n<ArraySize(zBuf)-1 && zMod[n]; n++){
15728 for(i=0; i<ArraySize(aDateTimeFunc
[all...]
/external/clang/include/clang/AST/
H A DType.h2320 const llvm::APInt &ArraySize, ArraySizeModifier SizeMod,
2323 ID.AddInteger(ArraySize.getZExtValue());
2319 Profile(llvm::FoldingSetNodeID &ID, QualType ET, const llvm::APInt &ArraySize, ArraySizeModifier SizeMod, unsigned TypeQuals) argument
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c7521 #define ArraySize(X) ((int)(sizeof(X)/sizeof(X[0]))) macro
12174 /* Since ArraySize(azCompileOpt) is normally in single digits, a
12176 for(i=0; i<ArraySize(azCompileOpt); i++){
12188 if( N>=0 && N<ArraySize(azCompileOpt) ){
12670 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
12680 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
12692 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
12708 if( op<0 || op>=ArraySize(wsdStat.nowValue) ){
13361 for(n=0; n<ArraySize(zBuf)-1 && zMod[n]; n++){
13939 for(i=0; i<ArraySize(aDateTimeFunc
[all...]

Completed in 3004 milliseconds