Lines Matching refs:intop
722 return intop(-, 0, m); /* n==-1; avoid overflow with 0x80000...//-1 */ in luaV_idiv()
774 else return intop(>>, x, -y); in luaV_shiftl()
778 else return intop(<<, x, y); in luaV_shiftl()
873 #define l_addi(L,a,b) intop(+, a, b)
874 #define l_subi(L,a,b) intop(-, a, b)
875 #define l_muli(L,a,b) intop(*, a, b)
876 #define l_band(a,b) intop(&, a, b)
877 #define l_bor(a,b) intop(|, a, b)
878 #define l_bxor(a,b) intop(^, a, b)
1500 setivalue(s2v(ra), intop(-, 0, ib)); in luaV_execute()
1513 setivalue(s2v(ra), intop(^, ~l_castS2U(0), ib)); in luaV_execute()
1736 idx = intop(+, idx, step); /* add step to index */ in luaV_execute()