Searched refs:lua_rotate (Results 1 – 7 of 7) sorted by relevance
/external/lua/src/ |
D | lua.h | 171 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))
|
D | ldblib.c | 136 lua_rotate(L, -2, 1); /* exchange object and table */ in treatstackoption() 222 lua_rotate(L, -2, 1); /* re-order */ in db_getlocal()
|
D | loadlib.c | 664 lua_rotate(L, -2, 1); /* function <-> loader data */ in ll_require() 679 lua_rotate(L, -2, 1); /* loader data <-> module result */ in ll_require()
|
D | lbaselib.c | 471 lua_rotate(L, 3, 2); /* move them below function's arguments */ in luaB_xpcall()
|
D | liolib.c | 363 lua_rotate(L, 2, 3); /* move the three values to their positions */ in aux_lines()
|
D | lauxlib.c | 551 lua_rotate(L, boxidx - 1, 2); in prepbuffsize()
|
D | lapi.c | 217 LUA_API void lua_rotate (lua_State *L, int idx, int n) { in lua_rotate() function
|