Searched refs:LUA_TFUNCTION (Results 1 – 6 of 6) sorted by relevance
/illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
H A D | lobject.h | 49 #define LUA_TLCL (LUA_TFUNCTION | (0 << 4)) /* Lua closure */ 50 #define LUA_TLCF (LUA_TFUNCTION | (1 << 4)) /* light C function */ 51 #define LUA_TCCL (LUA_TFUNCTION | (2 << 4)) /* C closure */ 140 #define ttisfunction(o) checktype(o, LUA_TFUNCTION) 141 #define ttisclosure(o) ((rttype(o) & 0x1F) == LUA_TFUNCTION)
|
H A D | lcorolib.c | 83 luaL_checktype(L, 1, LUA_TFUNCTION); in luaB_cocreate()
|
H A D | lua.h | 82 #define LUA_TFUNCTION 6 macro 330 #define lua_isfunction(L,n) (lua_type(L, (n)) == LUA_TFUNCTION)
|
H A D | lstate.h | 208 check_exp(novariant((o)->gch.tt) == LUA_TFUNCTION, &((o)->cl))
|
H A D | lstrlib.c | 199 luaL_checktype(L, 1, LUA_TFUNCTION); in str_dump() 738 case LUA_TFUNCTION: { in add_value() 776 tr == LUA_TFUNCTION || tr == LUA_TTABLE, 3, in str_gsub()
|
H A D | ltablib.c | 252 luaL_checktype(L, 2, LUA_TFUNCTION); in sort()
|