Searched refs:OP_Add (Results 1 – 1 of 1) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | sqlite3.c | 17791 #define OP_Add 107 /* same as TK_PLUS, synopsis: r[P3]=r[P1]+r[P2] */ macro 98497 case OP_Add: /* same as TK_PLUS, in1, in2, out3 */ 98519 case OP_Add: if( sqlite3AddInt64(&iB,iA) ) goto fp_math; break; 98547 case OP_Add: rB += rA; break; 118068 assert( TK_PLUS==OP_Add ); testcase( op==TK_PLUS ); 178679 sqlite3VdbeAddOp3(v, OP_Add, tmpReg, pWin->regApp, tmpReg); 178705 int op = (pFunc->zName==leadName ? OP_Add : OP_Subtract); 178847 int arith = OP_Add; /* OP_Add or OP_Subtract */ 178868 reg1, (arith==OP_Add ? "+" : "-"), regVal, 178933 if( (op==OP_Ge && arith==OP_Add) || (op==OP_Le && arith==OP_Subtract) ){
|