Home
last modified time | relevance | path

Searched refs:LUA_VSHRSTR (Results 1 – 11 of 11) sorted by relevance

/external/lua/src/
Dlstring.h35 #define isreserved(s) ((s)->tt == LUA_VSHRSTR && (s)->extra > 0)
41 #define eqshrstr(a,b) check_exp((a)->tt == LUA_VSHRSTR, (a) == (b))
Dlobject.h336 #define LUA_VSHRSTR makevariant(LUA_TSTRING, 0) /* short strings */ macro
340 #define ttisshrstring(o) checktag((o), ctb(LUA_VSHRSTR))
386 #define tsslen(s) ((s)->tt == LUA_VSHRSTR ? (s)->shrlen : (s)->u.lnglen)
734 #define keyisshrstr(node) (keytt(node) == ctb(LUA_VSHRSTR))
Dltable.c142 case LUA_VSHRSTR: in mainposition()
713 lua_assert(key->tt == LUA_VSHRSTR); in luaH_getshortstr()
728 if (key->tt == LUA_VSHRSTR) in luaH_getstr()
743 case LUA_VSHRSTR: return luaH_getshortstr(t, tsvalue(key)); in luaH_get()
Dldump.c123 case LUA_VSHRSTR: in dumpConstants()
Dluac.c284 case LUA_VSHRSTR: in PrintType()
320 case LUA_VSHRSTR: in PrintConstant()
Dlstring.c220 ts = createstrobj(L, l, LUA_VSHRSTR, h); in internshrstr()
Dlundump.c181 case LUA_VSHRSTR: in loadConstants()
Dlgc.c294 case LUA_VSHRSTR: in reallymarkobject()
791 case LUA_VSHRSTR: in freeobj()
Dlvm.c585 case LUA_VSHRSTR: return eqshrstr(tsvalue(t1), tsvalue(t2)); in luaV_equalobj()
691 case LUA_VSHRSTR: { in luaV_objlen()
Dlapi.c405 case LUA_VSHRSTR: return tsvalue(o)->shrlen; in lua_rawlen()
Dlcode.c696 case LUA_VSHRSTR: case LUA_VLNGSTR: in const2exp()