MCPcopy Create free account
hub / github.com/CppCXY/EmmyLuaCodeStyle / luaV_idiv

Function luaV_idiv

3rd/lua-5.4.3/src/lvm.c:718–730  ·  view source on GitHub ↗

** Integer division; return 'm // n', that is, floor(m/n). ** C division truncates its result (rounds towards zero). ** 'floor(q) == trunc(q)' when 'q >= 0' or when 'q' is integer, ** otherwise 'floor(q) == trunc(q) - 1'. */

Source from the content-addressed store, hash-verified

716** otherwise 'floor(q) == trunc(q) - 1'.
717*/
718lua_Integer luaV_idiv (lua_State *L, lua_Integer m, lua_Integer n) {
719 if (l_unlikely(l_castS2U(n) + 1u <= 1u)) { /* special cases: -1 or 0 */
720 if (n == 0)
721 luaG_runerror(L, "attempt to divide by zero");
722 return intop(-, 0, m); /* n==-1; avoid overflow with 0x80000...//-1 */
723 }
724 else {
725 lua_Integer q = m / n; /* perform C division */
726 if ((m ^ n) < 0 && m % n != 0) /* 'm/n' would be negative non-integer? */
727 q -= 1; /* correct result for different rounding */
728 return q;
729 }
730}
731
732
733/*

Callers 1

intarithFunction · 0.85

Calls 1

luaG_runerrorFunction · 0.85

Tested by

no test coverage detected