Home
last modified time | relevance | path

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

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