• Home
  • Raw
  • Download

Lines Matching refs:TValue

54 #define MAXASIZE	luaM_limitN(1u << MAXABITS, TValue)
96 static const TValue absentkey = {ABSTKEYCONSTANT};
163 static Node *mainpositionTV (const Table *t, const TValue *key) { in mainpositionTV()
176 static int equalkey (const TValue *k1, const Node *n2) { in equalkey()
255 static const TValue *getgeneric (Table *t, const TValue *key) { in getgeneric()
287 static unsigned int findindex (lua_State *L, Table *t, TValue *key, in findindex()
295 const TValue *n = getgeneric(t, key); in findindex()
472 TValue k; in reinsert()
514 TValue *newarray; in luaH_resize()
529 newarray = luaM_reallocvector(L, t->array, oldasize, newasize, TValue); in luaH_resize()
554 static void rehash (lua_State *L, Table *t, const TValue *ek) { in rehash()
621 TValue *luaH_newkey (lua_State *L, Table *t, const TValue *key) { in luaH_newkey()
623 TValue aux; in luaH_newkey()
683 const TValue *luaH_getint (Table *t, lua_Integer key) { in luaH_getint()
711 const TValue *luaH_getshortstr (Table *t, TString *key) { in luaH_getshortstr()
727 const TValue *luaH_getstr (Table *t, TString *key) { in luaH_getstr()
731 TValue ko; in luaH_getstr()
741 const TValue *luaH_get (Table *t, const TValue *key) { in luaH_get()
762 TValue *luaH_set (lua_State *L, Table *t, const TValue *key) { in luaH_set()
763 const TValue *p = luaH_get(t, key); in luaH_set()
765 return cast(TValue *, p); in luaH_set()
770 void luaH_setint (lua_State *L, Table *t, lua_Integer key, TValue *value) { in luaH_setint()
771 const TValue *p = luaH_getint(t, key); in luaH_setint()
772 TValue *cell; in luaH_setint()
774 cell = cast(TValue *, p); in luaH_setint()
776 TValue k; in luaH_setint()
822 static unsigned int binsearch (const TValue *array, unsigned int i, in binsearch()
918 Node *luaH_mainposition (const Table *t, const TValue *key) { in luaH_mainposition()