Lines Matching refs:iA
25797 i64 iA = *pA;
25798 testcase( iA==0 ); testcase( iA==1 );
25801 testcase( iA>0 && LARGEST_INT64 - iA == iB );
25802 testcase( iA>0 && LARGEST_INT64 - iA == iB - 1 );
25803 if( iA>0 && LARGEST_INT64 - iA < iB ) return 1;
25805 testcase( iA<0 && -(iA + LARGEST_INT64) == iB + 1 );
25806 testcase( iA<0 && -(iA + LARGEST_INT64) == iB + 2 );
25807 if( iA<0 && -(iA + LARGEST_INT64) > iB + 1 ) return 1;
25826 i64 iA = *pA;
25829 iA1 = iA/TWOPOWER32;
25830 iA0 = iA % TWOPOWER32;
74345 i64 iA; /* Integer value of left operand */
74358 iA = pIn1->u.i;
74362 case OP_Add: if( sqlite3AddInt64(&iB,iA) ) goto fp_math; break;
74363 case OP_Subtract: if( sqlite3SubInt64(&iB,iA) ) goto fp_math; break;
74364 case OP_Multiply: if( sqlite3MulInt64(&iB,iA) ) goto fp_math; break;
74366 if( iA==0 ) goto arithmetic_result_is_null;
74367 if( iA==-1 && iB==SMALLEST_INT64 ) goto fp_math;
74368 iB /= iA;
74372 if( iA==0 ) goto arithmetic_result_is_null;
74373 if( iA==-1 ) iA = 1;
74374 iB %= iA;
74396 iA = (i64)rA;
74398 if( iA==0 ) goto arithmetic_result_is_null;
74399 if( iA==-1 ) iA = 1;
74400 rB = (double)(iB % iA);
74594 i64 iA;
74606 iA = sqlite3VdbeIntValue(pIn2);
74610 iA &= iB;
74612 iA |= iB;
74624 iA = (iA>=0 || op==OP_ShiftLeft) ? 0 : -1;
74626 memcpy(&uA, &iA, sizeof(uA));
74632 if( iA<0 ) uA |= ((((u64)0xffffffff)<<32)|0xffffffff) << (64-iB);
74634 memcpy(&iA, &uA, sizeof(iA));
74637 pOut->u.i = iA;