Home
last modified time | relevance | path

Searched refs:lua_copy (Results 1 – 3 of 3) sorted by relevance

/external/lua/src/
Dlua.h163 LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx); variable
373 #define lua_replace(L,idx) (lua_copy(L, -1, (idx)), lua_pop(L, 1))
Dlauxlib.c83 lua_copy(L, -1, top + 1); /* move name to proper place */ in pushglobalfuncname()
Dlapi.c222 LUA_API void lua_copy (lua_State *L, int fromidx, int toidx) { in lua_copy() function