Lines Matching refs:intop
720 return intop(-, 0, m); /* n==-1; avoid overflow with 0x80000...//-1 */ in luaV_idiv()
772 else return intop(>>, x, -y); in luaV_shiftl()
776 else return intop(<<, x, y); in luaV_shiftl()
867 #define l_addi(L,a,b) intop(+, a, b)
868 #define l_subi(L,a,b) intop(-, a, b)
869 #define l_muli(L,a,b) intop(*, a, b)
870 #define l_band(a,b) intop(&, a, b)
871 #define l_bor(a,b) intop(|, a, b)
872 #define l_bxor(a,b) intop(^, a, b)
1492 setivalue(s2v(ra), intop(-, 0, ib)); in luaV_execute()
1505 setivalue(s2v(ra), intop(^, ~l_castS2U(0), ib)); in luaV_execute()
1710 idx = intop(+, idx, step); /* add step to index */ in luaV_execute()