Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbeaux.c81 if( i>=p->nOpAlloc ){ in sqliteVdbeAddOp()
82 int oldSize = p->nOpAlloc; in sqliteVdbeAddOp()
84 p->nOpAlloc = p->nOpAlloc*2 + 100; in sqliteVdbeAddOp()
85 aNew = sqliteRealloc(p->aOp, p->nOpAlloc*sizeof(Op)); in sqliteVdbeAddOp()
87 p->nOpAlloc = oldSize; in sqliteVdbeAddOp()
204 if( p->nOp + nOp >= p->nOpAlloc ){ in sqliteVdbeAddOpList()
205 int oldSize = p->nOpAlloc; in sqliteVdbeAddOpList()
207 p->nOpAlloc = p->nOpAlloc*2 + nOp + 10; in sqliteVdbeAddOpList()
208 aNew = sqliteRealloc(p->aOp, p->nOpAlloc*sizeof(Op)); in sqliteVdbeAddOpList()
210 p->nOpAlloc = oldSize; in sqliteVdbeAddOpList()
[all …]
H A DvdbeInt.h235 int nOpAlloc; /* Number of slots allocated for aOp[] */ member