Home
last modified time | relevance | path

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

/titanic_41/usr/src/lib/libsqlite/src/
H A Dvdbeaux.c81 i = p->nOp; in sqliteVdbeAddOp()
82 p->nOp++; in sqliteVdbeAddOp()
128 addr = p->nOp; in sqliteVdbeCode()
183 if( p->aLabel[-1-x]==p->nOp ) return; in sqliteVdbeResolveLabel()
185 p->aLabel[-1-x] = p->nOp; in sqliteVdbeResolveLabel()
186 for(j=0; j<p->nOp; j++){ in sqliteVdbeResolveLabel()
187 if( p->aOp[j].p2==x ) p->aOp[j].p2 = p->nOp; in sqliteVdbeResolveLabel()
197 return p->nOp; in sqliteVdbeCurrentAddr()
204 int sqliteVdbeAddOpList(Vdbe *p, int nOp, VdbeOpList const *aOp){ in sqliteVdbeAddOpList() argument
207 if( p->nOp + nOp >= p->nOpAlloc ){ in sqliteVdbeAddOpList()
[all …]
H A Dvdbe.h95 int sqliteVdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp);
H A DvdbeInt.h237 int nOp; /* Number of instructions in the program */ member
H A Dvdbe.c526 assert( pc>=0 && pc<p->nOp ); in sqliteVdbeExec()
862 assert( pOp->p1>=0 && pOp->p1<p->nOp ); in sqliteVdbeExec()
4821 if( pc<-1 || pc>=p->nOp ){ in sqliteVdbeExec()