Home
last modified time | relevance | path

Searched refs:nOp (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dvdbeaux.c78 i = p->nOp; in sqliteVdbeAddOp()
79 p->nOp++; in sqliteVdbeAddOp()
125 addr = p->nOp; in sqliteVdbeCode()
180 if( p->aLabel[-1-x]==p->nOp ) return; in sqliteVdbeResolveLabel()
182 p->aLabel[-1-x] = p->nOp; in sqliteVdbeResolveLabel()
183 for(j=0; j<p->nOp; j++){ in sqliteVdbeResolveLabel()
184 if( p->aOp[j].p2==x ) p->aOp[j].p2 = p->nOp; in sqliteVdbeResolveLabel()
194 return p->nOp; in sqliteVdbeCurrentAddr()
201 int sqliteVdbeAddOpList(Vdbe *p, int nOp, VdbeOpList const *aOp){ in sqliteVdbeAddOpList() argument
204 if( p->nOp + nOp >= p->nOpAlloc ){ in sqliteVdbeAddOpList()
[all …]
H A Dvdbe.h92 int sqliteVdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp);
H A DvdbeInt.h234 int nOp; /* Number of instructions in the program */ member
H A Dvdbe.c524 assert( pc>=0 && pc<p->nOp ); in sqliteVdbeExec()
860 assert( pOp->p1>=0 && pOp->p1<p->nOp ); in sqliteVdbeExec()
4819 if( pc<-1 || pc>=p->nOp ){ in sqliteVdbeExec()