Lines Matching refs:regOut

104166 /* Generate code that will load into register regOut a value that is
104174 int regOut /* Store the index column value in this register */
104181 sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[iIdxCol].pExpr, regOut);
104185 iTabCol, regOut);
104192 ** and store the result in register regOut
104197 int regOut
104204 iAddr = sqlite3VdbeAddOp3(v, OP_IfNullRow, pParse->iSelfTab-1, 0, regOut);
104208 sqlite3ExprCodeCopy(pParse, pCol->pDflt, regOut);
104210 sqlite3VdbeAddOp4(v, OP_Affinity, regOut, 1, 0, &pCol->affinity, 1);
104224 int regOut /* Extract the value into this register */
104229 sqlite3VdbeAddOp3(v, OP_Column, iTabCur, iCol, regOut);
104233 sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut);
104249 sqlite3ExprCodeGeneratedColumn(pParse, pCol, regOut);
104264 sqlite3VdbeAddOp3(v, op, iTabCur, x, regOut);
104265 sqlite3ColumnDefault(v, pTab, iCol, regOut);
108718 int regOut;
108723 regOut = reg+1+iPos-(iPos>iColPos);
108725 regOut = reg+1+nField;
108728 sqlite3VdbeAddOp2(v, OP_Null, 0, regOut);
108730 sqlite3ExprCodeGetColumnOfTable(v, pTab, iCur, i, regOut);
109708 static void callStatGet(Parse *pParse, int regStat, int iParam, int regOut){
109716 assert( regOut!=regStat && regOut!=regStat+1 );
109717 sqlite3VdbeAddFunctionCall(pParse, 0, regStat, regOut, 1+IsStat4,
118327 ** regOut. The key with be for index pIdx which is an index on pTab.
118360 int regOut, /* Put the new key into this register if not 0 */
118404 if( regOut ){
118405 sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase, nCol, regOut);
131736 int regOut = ++pParse->nMem;
131740 sqlite3VdbeAddOp3(v, OP_MakeRecord, regBase+nOBSat, nBase-nOBSat, regOut);
131741 return regOut;