Searched refs:nOpAlloc (Results 1 – 2 of 2) sorted by relevance
23324 int nOpAlloc; /* Slots allocated for aOp[] */ member83967 assert( p->nOpAlloc==0 );84100 sqlite3_int64 nNew = (v->nOpAlloc>=512 ? 2*(sqlite3_int64)v->nOpAlloc84101 : (sqlite3_int64)v->nOpAlloc+nOp);84103 sqlite3_int64 nNew = (v->nOpAlloc ? 2*(sqlite3_int64)v->nOpAlloc84115 assert( nNew>=(v->nOpAlloc+nOp) );84119 v->nOpAlloc = p->szOpAlloc/sizeof(Op);84151 assert( p->nOpAlloc<=p->nOp );84153 assert( p->nOpAlloc>p->nOp );84202 if( p->nOpAlloc<=i ){[all …]
12826 int nOpAlloc; /* Number of slots allocated for aOp[] */ member58418 int nNew = (p->nOpAlloc ? p->nOpAlloc*2 : (int)(1024/sizeof(Op)));58421 p->nOpAlloc = sqlite3DbMallocSize(p->db, pNew)/sizeof(Op);58450 if( p->nOpAlloc<=i ){58799 if( p->nOp + nOp > p->nOpAlloc && growOpArray(p) ){59807 zEnd = (u8*)&p->aOp[p->nOpAlloc]; /* First byte past end of zCsr[] */