Home
last modified time | relevance | path

Searched refs:luaV_equalobj (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/lua/src/
H A Dlvm.h75 #define luaV_rawequalobj(t1,t2) luaV_equalobj(NULL,t1,t2)
120 LUAI_FUNC int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2);
H A Dlvm.c569 int luaV_equalobj (lua_State *L, const TValue *t1, const TValue *t2) { in luaV_equalobj() function
1613 Protect(cond = luaV_equalobj(L, s2v(ra), rb)); in luaV_execute()
H A Dlapi.c360 case LUA_OPEQ: i = luaV_equalobj(L, o1, o2); break; in lua_compare()