Home
last modified time | relevance | path

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

/netbsd-src/external/mit/lua/dist/src/
H A Dlvm.h122 #define luaV_shiftr(x,y) luaV_shiftl(x,intop(-, 0, y))
144 LUAI_FUNC lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y);
H A Dlvm.c820 lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y) { function
1536 pc++; setivalue(s2v(ra), luaV_shiftl(ib, -ic));
1546 pc++; setivalue(s2v(ra), luaV_shiftl(ic, ib));
1599 op_bitwise(L, luaV_shiftl);
H A Dlobject.c68 case LUA_OPSHL: return luaV_shiftl(v1, v2); in intarith()