Searched refs:regOut (Results 1 – 5 of 5) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | delete.c | 954 int regOut, /* Put the new key into this register if not 0 */ in sqlite3GenerateIndexKey() argument 1000 if( regOut ){ in sqlite3GenerateIndexKey() 1001 sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nCol, regOut); in sqlite3GenerateIndexKey()
|
| H A D | alter.c | 2224 int regOut; in sqlite3AlterDropColumn() local 2229 regOut = reg+1+iPos-(iPos>iColPos); in sqlite3AlterDropColumn() 2231 regOut = reg+1+nField; in sqlite3AlterDropColumn() 2234 sqlite3VdbeAddOp2(v, OP_Null, 0, regOut); in sqlite3AlterDropColumn() 2236 sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, i, regOut); in sqlite3AlterDropColumn()
|
| H A D | expr.c | 3734 int regOut /* Store the index column value in this register */ in sqlite3ExprCodeLoadIndexColumn() argument 3741 sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[iIdxCol].pExpr, regOut); in sqlite3ExprCodeLoadIndexColumn() 3745 iTabCol, regOut); in sqlite3ExprCodeLoadIndexColumn() 3758 int regOut /* Put the result in this register */ in sqlite3ExprCodeGeneratedColumn() argument 3769 sqlite3ExprCodeCopy(pParse, sqlite3ColumnExpr(pTab,pCol), regOut); in sqlite3ExprCodeGeneratedColumn() 3771 sqlite3VdbeAddOp4(v, OP_Affinity, regOut, 1, 0, &pCol->affinity, 1); in sqlite3ExprCodeGeneratedColumn() 3785 int regOut /* Extract the value into this register */ in sqlite3ExprCodeGetColumnOfTable() argument 3791 sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut); in sqlite3ExprCodeGetColumnOfTable() 3809 sqlite3ExprCodeGeneratedColumn(pParse, pTab, pCol, regOut); in sqlite3ExprCodeGetColumnOfTable() 3824 sqlite3VdbeAddOp3(v, op, iTabCur, x, regOut); in sqlite3ExprCodeGetColumnOfTable() [all …]
|
| H A D | analyze.c | 928 static void callStatGet(Parse *pParse, int regStat, int iParam, int regOut){ in callStatGet() argument 936 assert( regOut!=regStat && regOut!=regStat+1 ); in callStatGet() 937 sqlite3VdbeAddFunctionCall(pParse, 0, regStat, regOut, 1+IsStat4, in callStatGet()
|
| H A D | select.c | 675 int regOut = ++pParse->nMem; in makeSorterRecord() local 679 sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase+nOBSat, nBase-nOBSat, regOut); in makeSorterRecord() 680 return regOut; in makeSorterRecord()
|