Lines Matching refs:nOpAlloc
43 assert( p->nOpAlloc==0 ); in sqlite3VdbeCreate()
176 sqlite3_int64 nNew = (v->nOpAlloc>=512 ? 2*(sqlite3_int64)v->nOpAlloc in growOpArray()
177 : (sqlite3_int64)v->nOpAlloc+nOp); in growOpArray()
179 sqlite3_int64 nNew = (v->nOpAlloc ? 2*(sqlite3_int64)v->nOpAlloc in growOpArray()
191 assert( nNew>=(v->nOpAlloc+nOp) ); in growOpArray()
195 v->nOpAlloc = p->szOpAlloc/sizeof(Op); in growOpArray()
236 assert( p->nOpAlloc<=p->nOp ); in growOp3()
238 assert( p->nOpAlloc>p->nOp ); in growOp3()
248 if( p->nOpAlloc<=i ){ in sqlite3VdbeAddOp3()
999 assert( p->nOp + N <= p->nOpAlloc ); in sqlite3VdbeVerifyNoMallocRequired()
1071 if( p->nOp + nOp > p->nOpAlloc && growOpArray(p, nOp) ){ in sqlite3VdbeAddOpList()