Searched refs:luaV_shiftl (Results 1 – 3 of 3) sorted by relevance
/external/lua/src/ |
D | lvm.h | 131 LUAI_FUNC lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y);
|
D | lobject.c | 64 case LUA_OPSHL: return luaV_shiftl(v1, v2); in intarith() 65 case LUA_OPSHR: return luaV_shiftl(v1, -v2); in intarith()
|
D | lvm.c | 767 #define luaV_shiftr(x,y) luaV_shiftl(x,-(y)) 769 lua_Integer luaV_shiftl (lua_Integer x, lua_Integer y) { in luaV_shiftl() function 1399 pc++; setivalue(s2v(ra), luaV_shiftl(ib, -ic)); in luaV_execute() 1408 pc++; setivalue(s2v(ra), luaV_shiftl(ic, ib)); in luaV_execute() 1457 op_bitwise(L, luaV_shiftl); in luaV_execute()
|