Searched refs:rB (Results 1 – 1 of 1) sorted by relevance
1741 double rB; /* Real value of right operand */ in sqlite3VdbeExec() local1779 rB = sqlite3VdbeRealValue(pIn2); in sqlite3VdbeExec()1781 case OP_Add: rB += rA; break; in sqlite3VdbeExec()1782 case OP_Subtract: rB -= rA; break; in sqlite3VdbeExec()1783 case OP_Multiply: rB *= rA; break; in sqlite3VdbeExec()1787 rB /= rA; in sqlite3VdbeExec()1795 rB = (double)(iB % iA); in sqlite3VdbeExec()1800 pOut->u.i = rB; in sqlite3VdbeExec()1803 if( sqlite3IsNaN(rB) ){ in sqlite3VdbeExec()1806 pOut->u.r = rB; in sqlite3VdbeExec()