Home
last modified time | relevance | path

Searched defs:lua_remove (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/lua/
H A Dlua.h147 LUA_API void (lua_remove) (lua_State *L, int idx); variable
H A Dlapi.c181 LUA_API void lua_remove (lua_State *L, int idx) { in lua_remove() function
/freebsd-12.1/contrib/lua/src/
H A Dlua.h371 #define lua_remove(L,idx) (lua_rotate(L, (idx), -1), lua_pop(L, 1)) macro