Searched refs:LUA_TNONE (Results 1 – 9 of 9) sorted by relevance
/freebsd/sys/contrib/openzfs/include/sys/lua/ |
H A D | lua.h | 74 #define LUA_TNONE (-1) macro 336 #define lua_isnone(L,n) (lua_type(L, (n)) == LUA_TNONE)
|
/freebsd/contrib/lua/src/ |
H A D | lua.h | 63 #define LUA_TNONE (-1) macro 390 #define lua_isnone(L,n) (lua_type(L, (n)) == LUA_TNONE)
|
H A D | ldblib.c | 69 else if (lua_getiuservalue(L, 1, n) != LUA_TNONE) { in db_getuservalue()
|
H A D | lbaselib.c | 261 luaL_argcheck(L, t != LUA_TNONE, 1, "value expected"); in luaB_type()
|
H A D | lapi.c | 286 return (isvalid(L, o) ? ttype(o) : LUA_TNONE); in lua_type() 292 api_check(L, LUA_TNONE <= t && t < LUA_NUMTYPES, "invalid type"); in lua_typename() 810 t = LUA_TNONE; in lua_getiuservalue()
|
H A D | lauxlib.c | 397 if (l_unlikely(lua_type(L, arg) == LUA_TNONE)) in luaL_checkany()
|
/freebsd/sys/contrib/openzfs/module/lua/ |
H A D | lauxlib.c | 311 if (lua_type(L, narg) == LUA_TNONE) in luaL_checkany()
|
H A D | lapi.c | 247 return (isvalid(o) ? ttypenv(o) : LUA_TNONE); in lua_type()
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | zcp.c | 1395 if (type == LUA_TNONE) { in zcp_parse_pos_args()
|