Home
last modified time | relevance | path

Searched refs:luaV_shiftl (Results 1 – 3 of 3) sorted by relevance

/freebsd-13.1/contrib/lua/src/
H A Dlvm.h131 LUAI_FUNC lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y);
H A Dlobject.c64 case LUA_OPSHL: return luaV_shiftl(v1, v2); in intarith()
65 case LUA_OPSHR: return luaV_shiftl(v1, -v2); in intarith()
H A Dlvm.c774 #define luaV_shiftr(x,y) luaV_shiftl(x,-(y))
776 lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y) { in luaV_shiftl() function
1405 pc++; setivalue(s2v(ra), luaV_shiftl(ib, -ic)); in luaV_execute()
1414 pc++; setivalue(s2v(ra), luaV_shiftl(ic, ib)); in luaV_execute()
1463 op_bitwise(L, luaV_shiftl); in luaV_execute()