Lines Matching refs:iB
1739 i64 iB; /* Integer value of right operand */ in sqlite3VdbeExec() local
1751 iB = pIn2->u.i; in sqlite3VdbeExec()
1753 case OP_Add: if( sqlite3AddInt64(&iB,iA) ) goto fp_math; break; in sqlite3VdbeExec()
1754 case OP_Subtract: if( sqlite3SubInt64(&iB,iA) ) goto fp_math; break; in sqlite3VdbeExec()
1755 case OP_Multiply: if( sqlite3MulInt64(&iB,iA) ) goto fp_math; break; in sqlite3VdbeExec()
1758 if( iA==-1 && iB==SMALLEST_INT64 ) goto fp_math; in sqlite3VdbeExec()
1759 iB /= iA; in sqlite3VdbeExec()
1765 iB %= iA; in sqlite3VdbeExec()
1769 pOut->u.i = iB; in sqlite3VdbeExec()
1792 iB = sqlite3VdbeIntValue(pIn2); in sqlite3VdbeExec()
1795 rB = (double)(iB % iA); in sqlite3VdbeExec()
1876 i64 iB; in sqlite3VdbeExec() local
1887 iB = sqlite3VdbeIntValue(pIn1); in sqlite3VdbeExec()
1890 iA &= iB; in sqlite3VdbeExec()
1892 iA |= iB; in sqlite3VdbeExec()
1893 }else if( iB!=0 ){ in sqlite3VdbeExec()
1897 if( iB<0 ){ in sqlite3VdbeExec()
1900 iB = iB>(-64) ? -iB : 64; in sqlite3VdbeExec()
1903 if( iB>=64 ){ in sqlite3VdbeExec()
1908 uA <<= iB; in sqlite3VdbeExec()
1910 uA >>= iB; in sqlite3VdbeExec()
1912 if( iA<0 ) uA |= ((((u64)0xffffffff)<<32)|0xffffffff) << (64-iB); in sqlite3VdbeExec()