Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dvdbevtab.c36 int iAddr; /* Address */ member
171 &pCur->iAddr, in bytecodevtabNext()
200 Op *pOp = pCur->aOp + pCur->iAddr; in bytecodevtabColumn()
236 sqlite3_result_int(ctx, pCur->iAddr); in bytecodevtabColumn()
272 if( pCur->iRowid==pCur->iAddr+1 ){ in bytecodevtabColumn()
324 pCur->iAddr = 0; in bytecodevtabFilter()
H A Dexpr.c2805 sqlite3VdbeJumpHere(v, iAddr); in sqlite3FindInIndex()
2903 sqlite3VdbeJumpHere(v, iAddr); in sqlite3FindInIndex()
3089 pExpr->y.sub.iAddr); in sqlite3CodeRhsOfIN()
3101 pExpr->y.sub.iAddr = in sqlite3CodeRhsOfIN()
3229 pExpr->y.sub.iAddr, 1); in sqlite3CodeRhsOfIN()
3274 pExpr->y.sub.iAddr); in sqlite3CodeSubselect()
3283 pExpr->y.sub.iAddr = in sqlite3CodeSubselect()
3360 pExpr->y.sub.iAddr, 1); in sqlite3CodeSubselect()
3760 int iAddr; in sqlite3ExprCodeGeneratedColumn() local
3767 iAddr = 0; in sqlite3ExprCodeGeneratedColumn()
[all …]
H A Dvdbe.c2267 int iAddr; in sqlite3VdbeExec() local
2268 for(iAddr = (int)(pOp - aOp) - 1; ALWAYS(iAddr>=0); iAddr--){ in sqlite3VdbeExec()
2269 if( aOp[iAddr].opcode==OP_ReleaseReg ) continue; in sqlite3VdbeExec()
2270 assert( aOp[iAddr].opcode==OP_Lt || aOp[iAddr].opcode==OP_Gt ); in sqlite3VdbeExec()
2529 u32 iAddr; /* Address of this instruction */ in sqlite3VdbeExec() local
2532 iAddr = (int)(pOp - p->aOp); in sqlite3VdbeExec()
2533 if( (p->pFrame->aOnce[iAddr/8] & (1<<(iAddr & 7)))!=0 ){ in sqlite3VdbeExec()
2537 p->pFrame->aOnce[iAddr/8] |= 1<<(iAddr & 7); in sqlite3VdbeExec()
H A Dvdbeaux.c638 int iAddr; /* Address of next instruction to return */ member
656 assert( p->iAddr<nOp ); in opIterNext()
658 pRet = &aOp[p->iAddr]; in opIterNext()
659 p->iAddr++; in opIterNext()
660 if( p->iAddr==nOp ){ in opIterNext()
662 p->iAddr = 0; in opIterNext()
H A Dpragma.c788 int iAddr = sqlite3VdbeCurrentAddr(v); in sqlite3Pragma() local
794 aOp[2].p2 = iAddr+4; in sqlite3Pragma()
H A Dtreeview.c729 pExpr->y.sub.regReturn, pExpr->y.sub.iAddr); in sqlite3TreeViewExpr()
H A Dbtree.c1632 int iAddr = hdr + 1; /* Address of ptr to pc */ in pageFindSlot() local
1633 u8 *pTmp = &aData[iAddr]; /* Temporary ptr into aData[] */ in pageFindSlot()
1656 memcpy(&aData[iAddr], &aData[pc], 2); in pageFindSlot()
1670 iAddr = pc; in pageFindSlot()
1673 if( pc<=iAddr ){ in pageFindSlot()
H A DsqliteInt.h2883 int iAddr; /* Subroutine entry address */ member
H A Dshell.c.in3080 int iAddr = sqlite3_column_int(pSql, 0); local
3089 int p2op = (p2 + (iOp-iAddr));