Home
last modified time | relevance | path

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

/netbsd/src/external/public-domain/sqlite/dist/
Dsqlite3.c16485 int nOp; /* Elements in aOp[] */ member
16846 SQLITE_PRIVATE VdbeOp *sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp,int iLineno);
23216 int nOp; /* Size of aOp array */ member
23485 int nOp; /* Number of instructions in the program */ member
84534 static int growOpArray(Vdbe *v, int nOp){
84547 : (sqlite3_int64)v->nOpAlloc+nOp);
84551 UNUSED_PARAMETER(nOp);
84560 assert( nOp<=(int)(1024/sizeof(Op)) );
84561 assert( nNew>=(v->nOpAlloc+nOp) );
84598 assert( p->nOpAlloc<=p->nOp );
[all …]