Searched refs:lua_rotate (Results 1 – 5 of 5) sorted by relevance
/external/lua/src/ |
D | lua.h | 162 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))
|
D | ldblib.c | 132 lua_rotate(L, -2, 1); /* exchange object and table */ in treatstackoption() 213 lua_rotate(L, -2, 1); /* re-order */ in db_getlocal()
|
D | lbaselib.c | 440 lua_rotate(L, 3, 2); /* move them below function's arguments */ in luaB_xpcall()
|
D | liolib.c | 344 lua_rotate(L, 2, 2); /* move 'n' and 'toclose' to their positions */ in aux_lines()
|
D | lapi.c | 207 LUA_API void lua_rotate (lua_State *L, int idx, int n) { in lua_rotate() function
|