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

/osnet-11/usr/src/lib/libsqlite/src/
H A Dvdbeaux.c84 if( i>=p->nOpAlloc ){
85 int oldSize = p->nOpAlloc;
87 p->nOpAlloc = p->nOpAlloc*2 + 100;
88 aNew = sqliteRealloc(p->aOp, p->nOpAlloc*sizeof(Op));
90 p->nOpAlloc = oldSize;
94 memset(&p->aOp[oldSize], 0, (p->nOpAlloc-oldSize)*sizeof(Op));
207 if( p->nOp + nOp >= p->nOpAlloc ){
208 int oldSize = p->nOpAlloc;
210 p->nOpAlloc
[all...]
H A DvdbeInt.h238 int nOpAlloc; /* Number of slots allocated for aOp[] */ member in struct:Vdbe

Completed in 17 milliseconds