Home
last modified time | relevance | path

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

/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.c8247 int nOp; /* Elements in aOp[] */ member
8530 SQLITE_PRIVATE int sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp);
12661 int nOp; /* Size of aOp array */ member
12825 int nOp; /* Number of instructions in the program */ member
58447 i = p->nOp;
58455 p->nOp++;
58572 p->aLabel[j] = p->nOp;
58613 int nOp;
58619 nOp = v->nOp;
58622 nOp = p->apSub[p->iSub-1]->nOp;
[all …]
/NextBSD/contrib/sqlite3/
HDsqlite3.c9767 int nOp; /* Elements in aOp[] */ member
10059 SQLITE_PRIVATE int sqlite3VdbeAddOpList(Vdbe*, int nOp, VdbeOpList const *aOp, int iLineno);
14743 int nOp; /* Size of aOp array */ member
14934 int nOp; /* Number of instructions in the program */ member
66001 static int growOpArray(Vdbe *v, int nOp){
66013 int nNew = (p->nOpAlloc>=512 ? p->nOpAlloc*2 : p->nOpAlloc+nOp);
66016 UNUSED_PARAMETER(nOp);
66019 assert( nOp<=(1024/sizeof(Op)) );
66020 assert( nNew>=(p->nOpAlloc+nOp) );
66060 i = p->nOp;
[all …]