Home
last modified time | relevance | path

Searched refs:l_castS2U (Results 1 – 5 of 5) sorted by relevance

/civetweb-2.7.6/src/third_party/lua-5.3.5/src/
Dlvm.h46 #define intop(op,v1,v2) l_castU2S(l_castS2U(v1) op l_castS2U(v2))
Dllimits.h121 #if !defined(l_castS2U)
122 #define l_castS2U(i) ((lua_Unsigned)(i)) macro
Dltable.c518 if (l_castS2U(key) - 1 < t->sizearray) in luaH_getint()
638 if (j > l_castS2U(LUA_MAXINTEGER) / 2) { /* overflow? */ in unbound_search()
Dlvm.c553 if (l_castS2U(n) + 1u <= 1u) { /* special cases: -1 or 0 */ in luaV_div()
573 if (l_castS2U(n) + 1u <= 1u) { /* special cases: -1 or 0 */ in luaV_mod()
1050 setivalue(ra, intop(^, ~l_castS2U(0), ib)); in luaV_execute()
Dlobject.c97 case LUA_OPBNOT: return intop(^, ~l_castS2U(0), v1); in intarith()