Home
last modified time | relevance | path

Searched refs:ttisnil (Results 1 – 9 of 9) sorted by relevance

/external/lua/src/
Dlmem.c32 if (ttisnil(&g->nilvalue) && ns > os) in firsttry()
149 if (ttisnil(&g->nilvalue)) { /* is state fully build? */ in tryagain()
Dlobject.h169 #define ttisnil(v) checktype((v), LUA_TNIL) macro
185 #define isnonstrictnil(v) (ttisnil(v) && !ttisstrictnil(v))
193 #define isempty(v) ttisnil(v)
223 #define l_isfalse(o) (ttisfalse(o) || ttisnil(o))
Dlfunc.c116 if (ttisnil(tm)) /* no metamethod? */ in prepclosingmethod()
200 if (ttisnil(tm)) /* no metamethod? */ in luaF_newtbcupval()
Dltm.h61 #define notm(tm) ttisnil(tm)
Dltable.c290 if (ttisnil(key)) return 0; /* first iteration */ in findindex()
624 if (unlikely(ttisnil(key))) in luaH_newkey()
Dlstate.c312 if (ttisnil(&g->nilvalue)) /* closing a fully built state? */ in close_state()
Dlapi.c46 #define isvalid(L, o) (!ttisnil(o) || o != &G(L)->nilvalue)
907 if (ttisnil(s2v(L->top - 1))) in lua_setmetatable()
Dldo.c357 if (unlikely(ttisnil(tm))) in luaD_tryfuncTM()
Dlvm.c1753 if (!ttisnil(s2v(ra + 4))) { /* continue loop? */ in luaV_execute()