Searched refs:lua_gettop (Results 1 – 9 of 9) sorted by relevance
/illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
H A D | lcorolib.c | 25 if (lua_status(co) == LUA_OK && lua_gettop(co) == 0) { in auxresume() 32 int nres = lua_gettop(co); in auxresume() 52 r = auxresume(L, co, lua_gettop(L) - 1); in luaB_coresume() 68 int r = auxresume(L, co, lua_gettop(L)); in luaB_auxwrap() 99 return lua_yield(L, lua_gettop(L)); in luaB_yield() 116 else if (lua_gettop(co) == 0) in luaB_costatus()
|
H A D | lbitlib.c | 37 int i, n = lua_gettop(L); in andaux() 60 int i, n = lua_gettop(L); in b_or() 70 int i, n = lua_gettop(L); in b_xor()
|
H A D | lbaselib.c | 232 return lua_gettop(L); in luaB_assert() 237 int n = lua_gettop(L); in luaB_select()
|
H A D | ltablib.c | 44 switch (lua_gettop(L)) { in tinsert() 120 int n = lua_gettop(L); /* number of elements to pack */ in pack()
|
H A D | lauxlib.c | 63 int top = lua_gettop(L); in pushglobalfuncname() 114 int top = lua_gettop(L); in luaL_traceback() 133 lua_concat(L, lua_gettop(L) - top); in luaL_traceback() 136 lua_concat(L, lua_gettop(L) - top); in luaL_traceback()
|
H A D | lstrlib.c | 176 int n = lua_gettop(L); /* number of arguments */ in str_char() 923 int top = lua_gettop(L); in str_format()
|
H A D | lua.h | 144 LUA_API int (lua_gettop) (lua_State *L); variable
|
H A D | lapi.c | 159 LUA_API int lua_gettop (lua_State *L) { in lua_gettop() function
|
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | zcp.c | 136 VERIFY3U(1, ==, lua_gettop(state)); in zcp_error_handler() 440 VERIFY3U(1, ==, lua_gettop(state)); in zcp_convert_return_values() 816 VERIFY3U(3, ==, lua_gettop(state)); in zcp_eval_impl() 831 VERIFY3U(3, ==, lua_gettop(state)); in zcp_eval_impl() 882 int return_count = lua_gettop(state); in zcp_eval_impl() 907 VERIFY3U(1, ==, lua_gettop(state)); in zcp_eval_impl() 927 VERIFY3U(1, ==, lua_gettop(state)); in zcp_eval_impl() 989 VERIFY3U(3, ==, lua_gettop(ri->zri_state)); in zcp_eval_sync() 1004 VERIFY3U(3, ==, lua_gettop(ri->zri_state)); in zcp_eval_open() 1064 VERIFY0(lua_gettop(state)); in zcp_eval() [all …]
|