Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c117196 int regOut /* Store the index column value in this register */ argument
117203 sqlite3ExprCodeCopy(pParse, pIdx->aColExpr->a[iIdxCol].pExpr, regOut);
117207 iTabCol, regOut);
117220 int regOut /* Put the result in this register */ argument
117228 iAddr = sqlite3VdbeAddOp3(v, OP_IfNullRow, pParse->iSelfTab-1, 0, regOut);
117232 sqlite3ExprCodeCopy(pParse, sqlite3ColumnExpr(pTab,pCol), regOut);
117237 sqlite3VdbeAddOp4(v, OP_TypeCheck, regOut, 1, p3, (char*)pTab, P4_TABLE);
117239 sqlite3VdbeAddOp4(v, OP_Affinity, regOut, 1, 0, &pCol->affinity, 1);
117254 int regOut /* Extract the value into this register */ argument
117261 sqlite3VdbeAddOp2(v, OP_Rowid, iTabCur, regOut);
[all …]