Home
last modified time | relevance | path

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

/external/lua/src/
Dlua.h162 LUA_API void (lua_rotate) (lua_State *L, int idx, int n); variable
369 #define lua_insert(L,idx) lua_rotate(L, (idx), 1)
371 #define lua_remove(L,idx) (lua_rotate(L, (idx), -1), lua_pop(L, 1))
Dldblib.c132 lua_rotate(L, -2, 1); /* exchange object and table */ in treatstackoption()
213 lua_rotate(L, -2, 1); /* re-order */ in db_getlocal()
Dlbaselib.c440 lua_rotate(L, 3, 2); /* move them below function's arguments */ in luaB_xpcall()
Dliolib.c344 lua_rotate(L, 2, 2); /* move 'n' and 'toclose' to their positions */ in aux_lines()
Dlapi.c207 LUA_API void lua_rotate (lua_State *L, int idx, int n) { in lua_rotate() function