Home
last modified time | relevance | path

Searched refs:LUA_NUMTYPES (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/lua/src/
H A Dltests.h55 unsigned long objcount[LUA_NUMTYPES];
H A Dlobject.h22 #define LUA_TUPVAL LUA_NUMTYPES /* upvalues */
23 #define LUA_TPROTO (LUA_NUMTYPES+1) /* function prototypes */
24 #define LUA_TDEADKEY (LUA_NUMTYPES+2) /* removed keys in tables */
H A Dlua.h75 #define LUA_NUMTYPES 9 macro
427 #define LUA_NUMTAGS LUA_NUMTYPES
H A Dlstate.h299 struct Table *mt[LUA_NUMTYPES]; /* metatables for basic types */
H A Dlapi.c292 api_check(L, LUA_TNONE <= t && t < LUA_NUMTYPES, "invalid type"); in lua_typename()