Home
last modified time | relevance | path

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

/freebsd-12-stable/contrib/sqlite3/
Dsqlite3.c111860 int iTabCur, /* Cursor pointing to a table row */
111868 pParse->iSelfTab = iTabCur + 1;
111872 sqlite3ExprCodeGetColumnOfTable(pParse->pVdbe, pIdx->pTable, iTabCur,
111913 int iTabCur, /* The table cursor. Or the PK cursor for WITHOUT ROWID */
111922 sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut);
111939 pParse->iSelfTab = iTabCur+1;
111955 sqlite3VdbeAddOp3(v, op, iTabCur, x, regOut);
118175 int iTabCur; /* Table cursor */
118240 iTabCur = iTab++;
118243 sqlite3OpenTable(pParse, iTabCur, iDb, pTab, OP_OpenRead);
[all …]
/freebsd-12-stable/crypto/heimdal/lib/sqlite/
Dsqlite3.c10565 int iTabCur; /* The VDBE cursor used to access the table */ member
75148 int iTabCur, /* The cursor for this table */
75153 sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut);
75156 sqlite3VdbeAddOp3(v, op, iTabCur, iCol, regOut);
102451 addrTop = sqlite3VdbeAddOp1(v, OP_Rewind, pLevel->iTabCur);
102453 sqlite3GenerateIndexKey(pParse, pIdx, pLevel->iTabCur, regRecord, 1);
102456 sqlite3VdbeAddOp2(v, OP_Next, pLevel->iTabCur, addrTop+1);
103899 int iCur = pLevel->iTabCur; /* The cursor of the table */
105285 pLevel->iTabCur = pTabItem->iCursor;
105512 if( pOp->p1!=pLevel->iTabCur ) continue;