Home | History | Annotate | Download | only in dist

Lines Matching defs:regData

93765   int regData,          /* Address of array containing child table row */
93786 int iReg = aiCol[i] + regData + 1;
93802 sqlite3VdbeAddOp2(v, OP_SCopy, aiCol[0]+1+regData, regTemp);
93811 sqlite3VdbeAddOp3(v, OP_Eq, regData, iOk, regTemp); VdbeCoverage(v);
93829 sqlite3VdbeAddOp2(v, OP_Copy, aiCol[i]+1+regData
93845 int iChild = aiCol[i]+1+regData;
93846 int iParent = pIdx->aiColumn[i]+1+regData;
93850 iParent = regData;
93980 int regData, /* Parent row data starts here */
94017 pLeft = exprTableRegister(pParse, pTab, regData, iCol);
94042 pLeft = exprTableRegister(pParse, pTab, regData, -1);
94051 pLeft = exprTableRegister(pParse, pTab, regData, iCol);
95279 int regData; /* register holding first column to insert */
95391 regData = regRowid+1;
95448 dest.iSdst = bIdListInOrder ? regData : 0;
95742 if( regFromSelect!=regData ){
95782 pTab, regData-2-pTab->nCol, onError, endOfLoop);
96354 int regData; /* Content registers (after the rowid) */
96379 regData = regNewData + 1;
96381 sqlite3VdbeAddOp3(v, OP_MakeRecord, regData, pTab->nCol, regRec);
96383 sqlite3ExprCacheAffinityChange(pParse, regData, pTab->nCol);
96583 int regData, regRowid; /* Registers holding data and rowid */
96738 regData = sqlite3GetTempReg(pParse);
96780 sqlite3VdbeAddOp2(v, OP_RowData, iSrc, regData);
96781 sqlite3VdbeAddOp3(v, OP_Insert, iDest, regData, regRowid);
96804 sqlite3VdbeAddOp2(v, OP_RowKey, iSrc, regData);
96805 sqlite3VdbeAddOp3(v, OP_IdxInsert, iDest, regData, 1);
96813 sqlite3ReleaseTempReg(pParse, regData);
101927 ** Insert code into "v" that will push the record in register regData
101934 int regData /* Register holding data to be sorted */
101947 sqlite3ExprCodeMove(pParse, regData, regBase+nExpr+1, 1);