Home
last modified time | relevance | path

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

/external/lua/src/
Dlua.h171 LUA_API void (lua_rotate) (lua_State *L, int idx, int n); variable
389 #define lua_insert(L,idx) lua_rotate(L, (idx), 1)
391 #define lua_remove(L,idx) (lua_rotate(L, (idx), -1), lua_pop(L, 1))
Dldblib.c136 lua_rotate(L, -2, 1); /* exchange object and table */ in treatstackoption()
222 lua_rotate(L, -2, 1); /* re-order */ in db_getlocal()
Dloadlib.c664 lua_rotate(L, -2, 1); /* function <-> loader data */ in ll_require()
679 lua_rotate(L, -2, 1); /* loader data <-> module result */ in ll_require()
Dlbaselib.c471 lua_rotate(L, 3, 2); /* move them below function's arguments */ in luaB_xpcall()
Dliolib.c363 lua_rotate(L, 2, 3); /* move the three values to their positions */ in aux_lines()
Dlauxlib.c551 lua_rotate(L, boxidx - 1, 2); in prepbuffsize()
Dlapi.c217 LUA_API void lua_rotate (lua_State *L, int idx, int n) { in lua_rotate() function