Home | History | Annotate | Download | only in amalgamation

Lines Matching defs:OP_SCopy

8051 #define OP_SCopy                               15
63358 ** is made of any string or blob constant. See also OP_SCopy.
63382 case OP_SCopy: { /* in1, out2 */
73116 sqlite3VdbeAddOp2(v, OP_SCopy, inReg, target);
73630 sqlite3VdbeAddOp2(pParse->pVdbe, OP_SCopy, inReg, target);
73683 ** OP_SCopy instruction to move the value into the correct register
73685 ** avoid the OP_SCopy.
73712 ** up generating an OP_SCopy to move the value to the destination
73746 ** Mark them this way to avoid generated unneeded OP_SCopy
73823 sqlite3VdbeAddOp2(pParse->pVdbe, doHardCopy ? OP_Copy : OP_SCopy,
75649 sqlite3VdbeAddOp2(v, OP_SCopy, iMem, regSampleno);
81688 sqlite3VdbeAddOp2(v, OP_SCopy, regBase+nCol, regBase+j);
83649 sqlite3VdbeAddOp2(v, OP_SCopy, aiCol[0]+1+regData, regTemp);
85373 sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+keyColumn, regRowid);
85441 sqlite3VdbeAddOp2(v, OP_SCopy, regFromSelect+j, iRegStore);
85807 sqlite3VdbeAddOp2(v, OP_SCopy, regRowid, regIdx+i);
85809 sqlite3VdbeAddOp2(v, OP_SCopy, regData+idx, regIdx+i);
85812 sqlite3VdbeAddOp2(v, OP_SCopy, regRowid, regIdx+i);
85835 sqlite3VdbeAddOp2(v, OP_SCopy, regOldRowid, regR);
93531 ** in registers, sqlite3ExprCode() may use OP_SCopy to copy the value
93536 ** Another solution would be to change the OP_SCopy used to copy cached
94017 sqlite3VdbeAddOp2(v, OP_SCopy, r2, r1);
101062 sqlite3VdbeAddOp2(v, OP_SCopy, r1, regBase+j);