Home
last modified time | relevance | path

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

/freebsd-src/contrib/lua/src/
H A Dlvm.h116 #define luaV_shiftr(x,y) luaV_shiftl(x,intop(-, 0, y))
138 LUAI_FUNC lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y);
H A Dlvm.c776 lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y) { in luaV_shiftl() function
1452 pc++; setivalue(s2v(ra), luaV_shiftl(ib, -ic)); in luaV_execute()
1462 pc++; setivalue(s2v(ra), luaV_shiftl(ic, ib)); in luaV_execute()
1513 op_bitwise(L, luaV_shiftl); in luaV_execute()
H A Dlobject.c64 case LUA_OPSHL: return luaV_shiftl(v1, v2); in intarith()