Home
last modified time | relevance | path

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

/external/lua/src/
Dlua.h172 LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx); variable
393 #define lua_replace(L,idx) (lua_copy(L, -1, (idx)), lua_pop(L, 1))
Dlauxlib.c89 lua_copy(L, -1, top + 1); /* copy name to proper place */ in pushglobalfuncname()
588 lua_copy(L, -1, -3); /* move string to reserved slot */ in luaL_pushresult()
Dloadlib.c676 lua_copy(L, -1, -2); /* replace loader result */ in ll_require()
Dlapi.c231 LUA_API void lua_copy (lua_State *L, int fromidx, int toidx) { in lua_copy() function