Home
last modified time | relevance | path

Searched refs:nOpAlloc (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/src/
H A Dvdbeaux.c43 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()
[all …]
H A DvdbeInt.h447 int nOpAlloc; /* Slots allocated for aOp[] */ member