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